Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
#!/bin/bash | |
function getpublickey() | |
{ | |
x=$(curl -fs http://169.254.169.254/latest/meta-data/public-keys/) | |
if [ $? -eq 0 ]; then | |
for i in $x; do | |
index=$(echo $i|cut -d = -f 1) | |
format=$(curl -s http://169.254.169.254/latest/meta-data/public-keys/$index/) | |
echo $(curl -s http://169.254.169.254/latest/meta-data/public-keys/$index/$format) |
__ __ _ _ | |
| \/ | __ _ _ ____ _____| | | | |
| |\/| |/ _` | '__\ \ / / _ \ | | | |
| | | | (_| | | \ V / __/ | | | |
|_| |_|\__,_|_| \_/ \___|_|_| | |
_ _ ____ _ | |
| | | | | __ ) ___ ___ | |_ | |
| | | |___| _ \ / _ \ / _ \| __| | |
| |_| |___| |_) | (_) | (_) | |_ | |
\___/ |____/ \___/ \___/ \__| ** LOADER ** |
/* vi: set sw=4 ts=4: */ | |
/* | |
* Copyright 1989 - 1991, Julianne Frances Haugh <[email protected]> | |
* All rights reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions | |
* are met: | |
* 1. Redistributions of source code must retain the above copyright | |
* notice, this list of conditions and the following disclaimer. |
$ ssh -vv joeuser@localhost | |
OpenSSH_5.8p1-hpn13v11, OpenSSL 1.0.1c-fips 10 May 2012 | |
debug2: ssh_connect: needpriv 0 | |
debug1: Connecting to localhost [127.0.0.1] port 22. | |
debug1: Connection established. | |
debug1: permanently_set_uid: 0/0 | |
debug1: identity file /root/.ssh/id_rsa type -1 | |
debug1: identity file /root/.ssh/id_rsa-cert type -1 | |
debug1: identity file /root/.ssh/id_dsa type -1 | |
debug1: identity file /root/.ssh/id_dsa-cert type -1 |
# $Id: Makefile.in,v 1.1 2011-04-06 00:47:31 jimlin Exp $ | |
# uncomment if you run a non bourne compatable shell. Ie. csh | |
#SHELL = /bin/sh | |
# Modified Makefile for Synology's openssh-5.8p1 | |
# | |
# source code: http://sourceforge.net/projects/dsgpl/ | |
# v2636 branch: http://sourceforge.net/projects/dsgpl/files/Synology%20NAS%20GPL%20Source/2636branch/ |
<!-- copy this to YOUR_THEME.tmTheme--> | |
<dict> | |
<key>name</key> | |
<string>diff: deleted</string> | |
<key>scope</key> | |
<string>markup.deleted</string> | |
<key>settings</key> | |
<dict> | |
<key>background</key> | |
<string>#EAE3CA</string> |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
In August 2007 a hacker found a way to expose the PHP source code on facebook.com. He retrieved two files and then emailed them to me, and I wrote about the issue:
http://techcrunch.com/2007/08/11/facebook-source-code-leaked/
It became a big deal:
http://www.techmeme.com/070812/p1#a070812p1
The two files are index.php (the homepage) and search.php (the search page)
I hereby claim:
To claim this, I am signing this object:
#-#-#-#-#-#-#-# | |
# ~/.XCompose | |
# To change the US International keyboard layout to behave like the | |
# Microsoft Windows (TM) version of the layout | |
# version: 0.2 edit 6 (20110403-6) | |
# by @tamh [48bytes at gmail com] | |
# | |
# Released under LGPL v2.1. Please refer to it by going to: | |
# <http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html> |