Skip to content

Instantly share code, notes, and snippets.

View AfvanMoopen's full-sized avatar
😃
Focusing

Afvan AfvanMoopen

😃
Focusing
View GitHub Profile
#!/usr/bin/env python3
"""
# NOTE, you must change the string below for data you want.
# This script does not take arguments in its current form. Sorry!
"""
from pwn import *
string = b"foobar"
@vipul43
vipul43 / williamlin_cpp_template.cpp
Created July 18, 2020 16:36
william lin cpp template for competitive programming
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define ar array
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
@louisdorard
louisdorard / Vagrantfile
Created July 27, 2013 17:35
An example Vagrant file with port forwarding, shared folder between host and guest, and shell script provisioning.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
# please see the online documentation at vagrantup.com.
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "lucid32"