I hereby claim:
- I am zeroby0 on github.
- I am zeroby0 (https://keybase.io/zeroby0) on keybase.
- I have a public key ASAklNYDeSS4cUYOiMY1gZ35FJviybOqOd6Gpvv4Hv_fjgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| /** | |
| * | |
| * An over engineered way to print multiplication tables in C | |
| * Supports command line arguments. | |
| * | |
| * License: Public Domain | |
| * https://gist.github.com/zeroby0/5de2005674d234b48f41ff75181f07a3 | |
| * | |
| * -n, --number for the number for table | |
| * example: -n 3 |
| '@author: Aravind Reddy V <aravind.reddy@iiitb.org> (https://aravindvoggu.in)'; | |
| % References | |
| % | |
| % http://michael.dipperstein.com/hamming/index.html | |
| % https://en.wikipedia.org/wiki/Hamming(7,4) | |
| %% createDataSet: Creates random binary dataset |
| { | |
| "global": { | |
| "check_for_updates_on_startup": true, | |
| "show_in_menu_bar": false, | |
| "show_profile_name_in_menu_bar": false | |
| }, | |
| "profiles": [ | |
| { | |
| "complex_modifications": { | |
| "parameters": { |
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com, example2.com, and example1.com/images on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
| # I use this to manage my Ghost blog. | |
| # So I can manage it without manually | |
| # logging into my server and running commands | |
| # | |
| # See the short codes at the end to see what | |
| # this does | |
| # | |
| # | |
| # This makefile is released into the public domain. | |
| # Read https://gist.github.com/zeroby0/5de2005674d234b48f41ff75181f07a3 |
| #!/usr/bin/expect | |
| # Enter passwords in terminal without human intervention. Update values | |
| # to be your server password and local password | |
| # or uncomment commented lines and comment out | |
| # current lines to use with arguments | |
| # | |
| # License: Public Domain | |
| # Read https://gist.github.com/zeroby0/5de2005674d234b48f41ff75181f07a3 | |
| # for full license text. |
| # Make file to compile java files | |
| # Use an IDE instead. | |
| # Released into the public domain. | |
| # https://gist.github.com/zeroby0/5de2005674d234b48f41ff75181f07a3 | |
| # | |
| run: all | |
| java Test | |
| all: Demo.class Test.class | |
| %.class: %.java | |
| javac -d . -classpath . $< |
| # My makefile for compiling and running | |
| # cpp files. | |
| # | |
| # License: Public domain | |
| # https://gist.github.com/zeroby0/5de2005674d234b48f41ff75181f07a3 | |
| CC=g++ | |
| CFLAGS=-c -Wall | |
| LDFLAGS= | |
| EFLAGS= |