This file contains 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
function authenticate(req, res, next) { | |
var auth = require('basic-auth'); | |
var user = auth(req); | |
if (user === undefined || user['name'] !== 'user' || user['pass'] !== 'pass') { | |
res.statusCode = 401; | |
res.setHeader('WWW-Authenticate', 'Basic realm="Bitte anmelden!"'); | |
res.end('Unauthorized'); | |
} else { | |
next(); | |
} |
This file contains 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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
$script = <<SCRIPT | |
set -e | |
set -x | |
cd | |
sudo apt-get update -y | |
sudo apt-get install \ |
This file contains 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
require "pinboard" | |
require 'net/https' | |
require "uri" | |
require "json" | |
username = "pinboard_username" | |
password = "pinboard_password" | |
delicious_user = "delicious_username" | |
pinboard = Pinboard::Client.new(:username => username, :password => password) |
This file contains 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
require 'digest/sha1' | |
@ctf_username = "user-8lmmcgvw" | |
def addToLedger | |
user_in_ledger = false | |
File.open("LEDGER.txt").each_line do |line| | |
if line.match(/^#{@ctf_username}:/) | |
user_in_ledger = true | |
end |
This file contains 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
# get the url of an emails gravatar image | |
# | |
# default_image can either be an image url or one of the following: mm, identicon, monsterid, wavatar, retro, blank | |
# (See https://de.gravatar.com/site/implement/images/ for all options) | |
# | |
# Example usage: | |
# get_gravatar_image_url("[email protected]", 80, "retro") | |
get_gravatar_image_url = (hashed_email, size=80, default_image="mm", force_default=false) -> | |
size = (if (size >= 1 and size <= 2048) then size else 80) |
This file contains 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
-- Addressbook to SNOM export | |
-- Be sure to open Contacts app before running this script | |
set resultText to "" | |
set currentLine to "" | |
set numPhones to 0 | |
tell application id "com.apple.AddressBook" | |
set the clipboard to people's vcard | |
-- Find the maximum number of phone numbers | |
repeat with x from 1 to the count of people |
This file contains 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
<!-- add this to the dict node --> | |
<key>CFBundleIdentifier</key> | |
<string>com.apple.AppleScript.SnomDialer</string> | |
<key>CFBundleURLTypes</key> | |
<array> | |
<dict> | |
<key>CFBundleURLName</key> | |
<string>SnomDialer</string> | |
<key>CFBundleURLSchemes</key> |
This file contains 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
// Hide adress bar on iphone/android | |
$(function() { | |
function hideURLbar() { | |
if (window.location.hash.indexOf('#') == -1) { | |
window.scrollTo(0, 1); | |
} | |
}; | |
if (navigator.userAgent.indexOf('iPhone') != -1 || navigator.userAgent.indexOf('Android') != -1) { | |
addEventListener("load", function() { | |
setTimeout(hideURLbar, 0); |
This file contains 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
// use it like this: <a class="scroll" href="#destination1">Destination 1</a> | |
// <section id="destination1">Lore ipsum</section> | |
$(".scroll").click(function(event){ | |
event.preventDefault(); | |
//calculate destination place | |
var dest=0; | |
if($(this.hash).offset().top > $(document).height()-$(window).height()){ | |
dest=$(document).height()-$(window).height(); | |
}else{ |
This file contains 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
/** | |
* A simple storage connector plugin to the Parse REST interface. | |
* | |
* Note: the plugin requires jQuery to be linked into the host page. | |
* | |
* THIS PLUGIN IS FOR DEMO PURPOSES ONLY - DON'T USE IN A PRODUCTION | |
* ENVIRONMENT. | |
*/ | |