Posts

Showing posts with the label Programming Tweaks

Installing Bash Emulator on a computer

Image
 Installing Bash Emulator on Windows     The installation of win-bash is pretty simply as follows Just download shell.w32-ix86.zip from https://downloads.sourceforge.net/project/win-bash/shell-complete/latest/shell.w32-ix86.zip?r=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fwin-bash%2Ffiles%2Fshell-complete%2Flatest%2F&ts=1509629058&use_mirror=excellmedia unpack it and copy the bash.exe file to a path which is listed in your PATH environment variable.  When using win-bash as the default shell for un*x shell scripts, you may which to copy bash.exe to sh.exe to make scripts starting with #!/bin/sh work.  Remember: This is only the shell binary - it has same builtin commands, but for must purposes you would need additional un*x tools like ls, sed etc. The unxutils project provides Windows ports of often used un*x tools.  Installing Bash Emulator on Ubuntu ...

Installing 8086 Assembler on a Computer

Image
Installing 8086 Assembler In Windows     Step1:Download emu8086 software from http://www.emu8086.com/files/emu8086v408r11.zip Step2:open it after installation and start writing your codes Step3:Click Compile to assemble it -------------------------------------------------------------------- Installing 8086 Assembler In Ubuntu     for the Linux Ubuntu users you type the following code in the terminal and hit enter to download the Dos Box for the Ubuntu:   sudo apt-get update  sudo apt-get install dosbox Download the Tasm folder from https://drive.google.com/file/d/0BxFfQqBvZCltMHdNbFFCZVJkUlE/view?usp=sharing After downloading the TASM Folder for the linux extract the file to any destination folder and open it. You can mount as:   mount c /home/your extracted location for assembling a program file within the Tasm folder type tasm filename.asm for linking the program file to generate object tlink filen...

Installing Java on a Computer

Image
Installing Java in Windows This process requires you to download an executable file that includes all the files needed for the complete installation. You do not need to remain connected to the Internet during the installation. The file can also be copied to a computer that is not connected to the Internet. Go to the Manual download page Click on Windows Offline . The File Download dialog box appears prompting you to run or save the download file Click Save to download the file to your local system. Tip: Save the file to a known location on your computer, for example, to your desktop. Close all applications including the browser. Double-click on the saved file to start the installation process. ...

Installing Python Interpreter on a computer

Image
Installing Python Interpreter Installing Python in Windows Method 1 From  https://www.python.org/download/releases/2.7.6 download appropriate Python 2.7.6 Windows Installer. (If that link doesn't work, check https://www.python.org/downloads/ )     1. Run the file     2.Select install for all users or install just for me, click Next        You'll see it installs under the C:\Python27 folder, click Next        Click Next again for the 'Customize Python' step        Click Finish     3.Open Control Panel, then System     4.Click 'Advanced system settings' on the left     5.Click the 'Environment Variables' button  Under 'System variables' click the variable called 'Path' then the 'Edit...' button. (This will set it for all users, you could instead choose to edit the User variables to just set pyth...

Installing C++ Compiler on a computer

Image
Installing C++ Compiler Installing C++ in Windows Method 1 Step1:Download jcppedit From this link  http://www.softpedia.com/dyn-postdownload.php/a6a9405cf85c5f3c47483192314ca1fd/59fac64c/3d441/0/1 Step2:Open jcppedit after installing,then click new->Cpp File Step3:Write some c examples and save it [For Examples Click Here ] Step4:Press f9 to compile it Step5:Happy Coding Method 2   Step1:Download dosbox from here  https://sourceforge.net/projects/dosbox/files/dosbox/0.74/DOSBox0.74-win32-installer.exe/download   Step2:Open dosbox after installing,then click new Step3:Write some c examples and save it with .cpp extension [For Examples Click Here ] Step4:select compile option to compile it Step5:select run option to execute it Step6:Happy Coding ------------------------------------------------------------------------------- Installing C inUbuntu Hi  friends! iam gonna install the same Turbo C o...

Installing C Compiler on a computer

Image
Installing C Compiler Installing C in Windows Method 1 Step1:Download jcppedit From this link  http://www.softpedia.com/dyn-postdownload.php/a6a9405cf85c5f3c47483192314ca1fd/59fac64c/3d441/0/1 Step2:Open jcppedit after installing,then click new->C File Step3:Write some c examples and save it [For Examples Click Here ] Step4:Press f9 to compile it Step5:Happy Coding Method 2   Step1:Download dosbox from here  https://sourceforge.net/projects/dosbox/files/dosbox/0.74/DOSBox0.74-win32-installer.exe/download   Step2:Open dosbox after installing,then click new Step3:Write some c examples and save it with .c extension [For Examples Click Here ] Step4:select compile option to compile it Step5:select run option to execute it Step6:Happy Coding ------------------------------------------------------------------------------- Installing C inUbuntu Hi  friends! iam gonna install the same Turbo C on Ubuntu...