Tagged: development

0

Starting AMPPS without password on MAC

The below method will not start AMMPS without password, but instead does start mysql and apache web server if you have AMPPS installed already. There are 2 steps involved, 1. Modifying sudoers file, and 2. Creating a startup applescript application....

0

Local DNS for development environment on Mac

At times we need to setup local development domains for our test environment. I use it to maintain a local copy of my hosted website. It is very convenient to make changes to local and then export to hosted website...

0

Ondemand local webserver

Ever wanted a local directory to host contents over http? Here is how you do it, $ python -mSimpleHTTPServer Above command will host the contents of the current directory over http port 8000. If you want to use a custom...

0

MAC terminal shortcut keys

Following are some of the mac terminal shortcut keys Ctrl+a Move to the start of the line. Ctrl+e Move to the end of the line. Esc+f Move forward a word. Esc+b Move backward a word. Ctrl+l Clear the screen, reprinting...

0

How to install Eclipse on Ubuntu for all users

Source: http://askubuntu.com/questions/26632/how-to-install-eclipse/219974#219974   How to install Eclipse 4.2 on Ubuntu 12.04 for all users Since the Eclipse packages in the Ubuntu repositories are out of date, if we want to install latest releases, we are going to have to do...

0

Memory layout of C program

A typical memory representation of C program consists of following sections. 1. Text segment2. Initialized data segment3. Uninitialized data segment4. Stack5. Heap A typical memory layout of a running process 1. Text Segment:A text segment , also known as a...

0

Memory Limits for Windows Releases

Source: http://msdn.microsoft.com/en-us/library/windows/desktop/aa366778(v=vs.85).aspx   This topic describes memory limits for supported Windows releases:   Memory and Address Space Limits Physical Memory Limits: Windows 8 Physical Memory Limits: Windows Server 2012 Physical Memory Limits: Windows 7 Physical Memory Limits: Windows Server 2008 R2 Physical Memory Limits: Windows Server 2008...

0

Android emulator taking too much of screen size?

Using AVD Manager Open AVD Manager If using eclipse then Go to Window -> Android SDK and AVD Manager -> Virtual Devices Select the AVD you want to launch and click Start Check the “Scale display to real size” button Enter...