Skip to content

Instantly share code, notes, and snippets.

View hj91's full-sized avatar
:octocat:

Harshad Joshi hj91

:octocat:
View GitHub Profile
[
{
"id": "5e47003a.bd96b",
"type": "tab",
"label": "Flow 2"
},
{
"id": "265fd756.cc0488",
"type": "tab",
"label": "Flow 1"
/*
LinConnect: Mirror Android notifications on Linux Desktop
Copyright (C) 2013 Will Hauck
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
@hj91
hj91 / Tweepy_CLI_example.py
Created June 25, 2011 10:49
Example of using Twitter api with Tweepy library
#!/usr/bin/env python
#(c) Harshad Joshi, 2011
#firewalrus [AT] gmail DOT com
import sys
import tweepy
CONSUMER_KEY = ''
CONSUMER_SECRET = ''
@hj91
hj91 / cellinfo2
Created July 25, 2013 13:44
Code for printing Cell Tower information for non GPS phones.
/* @author=harshad joshi */
package com.harshad.cellinfo2;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
@hj91
hj91 / exampleinstance.py
Created June 2, 2013 11:07
a simple example of using isinstance in Python
class A:
def __init__(self,a):
self.a=a
print self.a
def show(self):
print self.a
a=A(1)
a.show()
@hj91
hj91 / text1.py
Last active December 17, 2015 16:18
This gist is an example of opening a file in read only mode, reading its contents and manipulating some standard string functions.
a=open("text1.txt","r")
b=[]
for i in a.readlines():
b.append(i)
if b.__contains__("hello"):
print "Yes"
else:
print "No"
@hj91
hj91 / lockcap.c
Created February 23, 2013 15:31
generating segfault and logging it in kern.log
/* this code is meant to run on MS DOS machines and uses bios bit setting to turn CAPS LOCK on or off */
/* it contains far keyword, which is not used in gcc */
#include <stdio.h>
void main()
{
char *kb;
kb = (char *)0x417;
*kb = 64;
@hj91
hj91 / gist:4202475
Created December 4, 2012 10:27
How to send mail using exim and command line prompt
user@localhost:~$ telnet localhost 25
Trying ::1...
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 localhost ESMTP Postfix (Ubuntu)
mail from:root@localhost
250 2.1.0 Ok
rcpt to:harshad@localhost
250 2.1.5 Ok
@hj91
hj91 / myrr1.c
Created June 25, 2012 05:18
I found this code on my old computer. It probably logs udp packets. This verion detects a traceroute done from/on your computer
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <sys/param.h>
#include <sys/ioctl.h>
#ifndef __USE_BSD
#define __USE_BSD
@hj91
hj91 / speaker.bas
Created June 25, 2011 17:00
QBasic code to generate sounds through computer speaker.
10 REM
20 PLAY "CDGFABC"
30 END