Skip to content

Instantly share code, notes, and snippets.

View Spockuto's full-sized avatar

Venkkatesh Sekar Spockuto

View GitHub Profile
@lolzballs
lolzballs / HelloWorld.java
Created March 22, 2015 00:21
Hello World Enterprise Edition
import java.io.FileDescriptor;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;
public class HelloWorld{
private static HelloWorld instance;
public static void main(String[] args){
instantiateHelloWorldMainClassAndRun();
@suhithr
suhithr / python-basics.md
Last active October 20, 2016 14:28
List of simple resources to get up and running with the syntax of Python

Python Basics for Delta's Linux-Python Workshop 2016

We'd like you all to get acquainted with the basic syntax of Python so that you feel more comfortable in the workshop and we're able to build more cool stuff!!

Ideally you'd take a look at:

  • Variables and Types
  • Strings
  • Loops
  • Conditions
  • Functions