Skip to content

Instantly share code, notes, and snippets.

View fukionline's full-sized avatar
🫥

Fuki fukionline

🫥
  • 17:23 (UTC -04:00)
View GitHub Profile
@ticky
ticky / hypercam.css
Created February 8, 2012 05:16
Unregistered HyperCam 2
/* Unregistered HyperCam 2 */
/* Simulates web pages being recorded through the shareware version of HyperCam 2 */
/* Paste this into your User CSS, with whatever site(s) you want to deface in this manner selected. */
/* There seems to be a bug in Safari 5/OS X where if you apply -webkit-font-smoothing to a body:before element, it will sometimes freak out all over the page. This fixes that (somehow) and looks nicer to boot. */
html { -webkit-font-smoothing: antialiased; }
body:before {content: "Unregistered HyperCam 2"; position: fixed; top: 0; left: 0; color: #000; background-color: #fff; font-family: "MS Sans Serif", "Microsoft Sans Serif", Verdana; -webkit-font-smoothing: none; font-weight: bold; font-size: 14px; z-index: 9999; }
@nikcub
nikcub / README.md
Created October 4, 2012 13:06
Facebook PHP Source Code from August 2007
@theamith
theamith / facebook-leaked-code.md
Last active July 7, 2023 08:29
face book leaked code.
@philfreo
philfreo / gist:7257723
Created October 31, 2013 21:44
Facebook Perl source code from 2005. When browsing around thefacebook.com in 2005 the server spit out some server-side source code rather than running it. I believe this was for their old graph feature that let you visualize the graph between all your friends. The filename is `mygraph.svgz` and contains some gems such as a commented out "zuck" d…
#!/usr/bin/perl
use Mysql;
use strict;
use vars qw($school_name);
use vars qw($pass);
require "./cgi-lib.pl";
@zdk
zdk / fb2005.pl
Created November 1, 2013 06:56
Facebook Perl source code from 2005
#!/usr/bin/perl
use Mysql;
use strict;
use vars qw($school_name);
use vars qw($pass);
require "./cgi-lib.pl";
@prayagupa
prayagupa / facebook source code.md
Last active March 9, 2024 21:28
some of fb source code leaked
@ryanburgess
ryanburgess / IE7.js
Created January 1, 2014 22:15
IE7.js is a JavaScript library to make Microsoft Internet Explorer behave like a standards-compliant browser. It fixes many HTML and CSS issues and makes transparent PNG work correctly under IE5 and IE6.
<!--[if lt IE 7]><script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE7.js"></script><![endif]-->
@peterc
peterc / plain.md
Last active October 9, 2023 17:22
The first e-mail in my original Gmail account on April 25, 2004

First off, welcome. And thanks for agreeing to help us test Gmail. By now you probably know the key ways in which Gmail differs from traditional webmail services. Searching instead of filing. A free gigabyte of storage. Messages displayed in context as conversations.

So what else is new?

Gmail has many other special features that will become apparent as you use your account. You’ll find answers to most of your questions in our searchable help section, which includes a Getting Started guide. You'll find information there on such topics as:

  • How to use address auto-complete
  • Setting up filters for incoming mail
  • Using advanced search options
@kyledrake
kyledrake / ferengi-plan.txt
Last active July 10, 2024 18:51
How to throttle the FCC to dial up modem speeds on your website using Nginx
# The blog post that started it all: https://neocities.org/blog/the-fcc-is-now-rate-limited
#
# Current known FCC address ranges:
# https://news.ycombinator.com/item?id=7716915
#
# Confirm/locate FCC IP ranges with this: http://whois.arin.net/rest/net/NET-165-135-0-0-1/pft
#
# In your nginx.conf:
location / {
@turret-io
turret-io / aes_enc_dec.php
Last active June 5, 2024 21:34
AES encryption/decryption in PHP
<?php
// DEFINE our cipher
define('AES_256_CBC', 'aes-256-cbc');
// Generate a 256-bit encryption key
// This should be stored somewhere instead of recreating it each time
$encryption_key = openssl_random_pseudo_bytes(32);
// Generate an initialization vector
// This *MUST* be available for decryption as well