Jared Burrows Blog
Software Development and Course Notes
Pages
(Move to ...)
Home
Burrows Apps
Course Notes
▼
Sunday, June 26, 2011
HelloWorld in Bash Scripting
›
HelloWorld.sh #!/bin/sh echo Hello World! Create a Document > Empty File > Copy and Paste > File > Save As or rename > (f...
HelloWorld with Batch Scripting
›
HelloWorld.bat @echo off echo HelloWorld! pause exit Create a Text Document > Copy and Paste > File > Save As > (name).bat D...
Friday, June 17, 2011
How to use Old Addons in Mozilla FireFox
›
DISCLAIMER: This does not work for all addons! When going to a Mozilla FireFox add-on download page (eg. https://addons.mozilla.org/en-US...
Thursday, June 16, 2011
How to add the Force Quit Button in Ubuntu 11.04+
›
If you use Ubuntu 11.04+ Unity(app panel to the left), you cannot add application shortcuts to the top panel any more. In order to add a Fo...
5 comments:
Saturday, June 4, 2011
How to Hack WebAssign's Watch It
›
If you use WebAssign, sometimes they give you the button to the "Watch It" which are very helpful. However, you might be able to f...
4 comments:
Monday, May 30, 2011
How to write HelloWorld in C?
›
HelloWorld.c #include <stdio.h> int main() { printf("Hello world!\n"); }
HelloWorld in C++
›
HelloWorld.cpp #include <iostream> using namespace std; int main() { cout << "HelloWorld" << endl; ret...
HelloWorld in Java
›
For a pure Java HelloWorld: HelloWorld.java public class HelloWorld { public static void main(String[] args) { System.out.println(...
‹
›
Home
View web version