Skip to content

Instantly share code, notes, and snippets.

View dommmel's full-sized avatar
💭
That worked!

Dominik dommmel

💭
That worked!
View GitHub Profile
@dommmel
dommmel / Vagrantfile
Last active March 6, 2023 04:19
Vagrantfile for Ruby on Rails application development (rbenv, postgres, node.js)
# -*- mode: ruby -*-
# vi: set ft=ruby :
$script = <<SCRIPT
set -e
set -x
cd
sudo apt-get update -y
sudo apt-get install \
@dommmel
dommmel / delicious_to_pinboard.rb
Last active August 29, 2015 14:01
import any delicious user's bookmarks into pinboard (limited to the last 100 bookmarks)
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)
@dommmel
dommmel / miner.rb
Created January 24, 2014 14:55
Stripe-CTF Level-1
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
@dommmel
dommmel / gravatar.coffee
Created October 17, 2013 13:11
Retrieve Gravatar indenticon for a given email address via javascript. You need to include a md5 library (like http://www.myersdaily.org/joseph/javascript/md5-text.html)
# 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("example@example.com", 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)
-- 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
@dommmel
dommmel / Info.plist
Created October 10, 2013 10:44
Dial tel:// and sip:// links on your snom phone
<!-- 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>
@dommmel
dommmel / hide_adress_bar.js
Created September 13, 2013 11:14
Hide adress bar on iphone/android
// 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);
@dommmel
dommmel / jquery.smoothscroll.js
Created July 4, 2013 09:35
jQuery smooth scroll to anchor
// 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{
@dommmel
dommmel / anno-parse-plugin.js
Last active December 16, 2023 20:30
Annotorious Plugin for Parse.com. A simple storage connector plugin to the Parse REST interface.
/**
* 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.
*/
@dommmel
dommmel / random_refresh.js
Created June 4, 2013 10:11
refresh page on random intervals
function doSomething() {
open(location.href, 'refreshingWindow');
}
(function loop() {
var rand = Math.round(Math.random() * (10000)) + 1000;
setTimeout(function() {
doSomething();
loop();
}, rand);