This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'Few years ago, I remember fucking around with this so called "Hacked By Godzilla" virus. | |
'It was a Visual Basic Script with a filename MS32DLL.dll.vbs that fucks up Internet | |
'Explorer title bar. | |
'I have been into writing simple Windows OS viruses before the time I learned about | |
'this fucking VBS virus. | |
'We all know that the famous "I LOVE YOU" virus was a Visual Basic Script (VBS) too | |
'and it gave me an idea to test | |
'if that scripting language can still be reliable to fuck up peoples computer that time. | |
'What I did was, I only replaced "MS32DLL" with "FS6519", pressing Ctrl + H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** | |
* By: Ferdinand E. Silva | |
* Tested From: Galaxy Tab 3 10.1 (jelly bean)" | |
* Tested To: Old Panasonic TV | |
****/ | |
package com.example.irtest; | |
import android.os.Bundle; | |
import android.app.Activity; | |
import android.view.Menu; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* View Code at: https://github.com/six519/pydecodeqr | |
* | |
*/ | |
#include <python2.7/Python.h> | |
#include <opencv/cv.h> | |
#include <opencv/highgui.h> | |
#include <decodeqr.h> | |
static PyObject *PyDecodeQRError; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import requests | |
GMAP_API_URL = "https://maps.googleapis.com/maps/api/place/textsearch/json" | |
GMAP_ACCESS_TOKEN = "{YOUR_KEY_HERE}" | |
def capture_coordinates(*args): | |
coor = "0,0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Example From: http://github.com/seb-m/pyinotify/wiki/Tutorial | |
------------------------------------------------------------- | |
===================== | |
TO INSTALL DEPENDENCY | |
===================== | |
pip install pyinotify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
VIEW COMPLETE CODE AT | |
===================== | |
* https://github.com/six519/libreoffice_convert | |
THANKS | |
====== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Quick script to resize multiple images | |
""" | |
from PIL import Image | |
import glob | |
IMG_EXT = "png" #file extension of images that you want to resize | |
IMG_RESIZED_DIMENSION = (100,100,) #width and height of the resized images |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.ferdinandsilva.test; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import org.apache.http.HttpEntity; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.StatusLine; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.ferdinandsilva.test; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.util.HashMap; | |
import org.apache.http.HttpEntity; | |
import org.apache.http.HttpResponse; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Description: | |
Nothing fancy. Just forwards HTTP requests from an IP whitelisted server to a real web service server back to an HTTP client. | |
Requirements: | |
falcon==0.1.10 | |
requests==2.4.1 |