Skip to content

Instantly share code, notes, and snippets.

View lwe's full-sized avatar
💭
I may be slow to respond.

Lukas Westermann lwe

💭
I may be slow to respond.
View GitHub Profile
LINK_ONLY = {
:elements => %w{a},
:attributes => {
'a' => %w{href}
},
:add_attributes => {
'a' => { 'rel' => 'external nofollow' }
},
HANDLE hClient = NULL;
PWLAN_INTERFACE_INFO_LIST pIntfList = NULL;
DWORD negotiatedVersion = 0;
DWORD res = 0;
int i = 0;
// get handle
res = WlanOpenHandle(WLAN_API_VERSION, NULL, &negotiatedVersion, &hClient);
if (res != ERROR_SUCCESS) {
if (hClient != NULL) WlanCloseHandle(hClient, NULL);
@lwe
lwe / brew-services.rb
Created January 5, 2011 13:13
External script for homebrew to simplify starting services via launchctl, out of the box support for any formula which implements #startup_plist.
#!/usr/bin/env ruby -w
# brew-services(1) - Easily start and stop formulas via launchctl
# ===============================================================
#
# ## SYNOPSIS
#
# [<sudo>] `brew services` `list`<br>
# [<sudo>] `brew services` `restart` <formula><br>
# [<sudo>] `brew services` `start` <formula> [<plist>]<br>
@lwe
lwe / vector.js
Created December 2, 2010 15:59
Winkel zwischen zwei Geraden (AB und CD)
// A(x1|y1) und B(x2|y2) = Touch start
// C(x3|y3) und D(x4|y3) = Current touch point
// Vektor AB
var AB_x = x2 - x1;
var AB_y = y2 - y1;
// Vektor CD
var CD_x = x4 - x3;
var CD_y = y4 - y3;
@lwe
lwe / brew-rebase.sh
Created July 28, 2010 07:15
Replacement for `brew update` which uses rebase.
#!/bin/sh
# DISCLAIMER:
#
# brew update now has a --rebase switch, thus this script is certainly obsolet.
#
# USAGE: brew-rebase [--verbose|-v] [remote] [branch]
#
# Fetches upstream and rebases HOMEBREW_REPOSITORY ($_git_repo)
@lwe
lwe / brew-more.rb
Created July 14, 2010 08:53
Try to scrape formula information from @formula.homepage.
# Small utility which uses the homepage and nokogori to get a description from the formula's homepage.
#
# As written in the homebrew wiki:
# > Homebrew doesn’t have a description field because the homepage is always up to date,
# > and Homebrew is not. Thus it’s less maintenance for us. To satisfy the description
# > we’re going to invent a new packaging microformat and persuade everyone to publish
# > it on their homepage.
#
# Too bad no packaging microformat has yet been invented, but brew-more just first looks for a
# `<meta name="description">` tag, then for an `a#project_summary_link` tag (which is used in
@lwe
lwe / rails_wrapper.sh
Created July 6, 2010 12:58
Simple rails wrapper, which transparently handles Rails 2.x vs. Rails 3 projects.
## rails wrapper
function rails() {
if [ -x `pwd`/script/rails ]; then
echo "[run] ./script/rails"
`pwd`/script/rails $*
elif [ -f `pwd`/Gemfile ]; then
echo "[run] bundle exec rails"
bundle exec rails $*
else
_rails_bin=$(\which rails | tail -1)

Meine Vorstellung ist, dass ihr grundsätzlich eine API-Methode zur Verfügung stellt um die Spieler + ihre Stats abzuholen, vom iPhone aus rufen wir danach z.B. folgende URL auf:

GET http://www.scb.ch/api/players.json?token=${SHARED_TOKEN}

Dadurch bekommen wir ein JSON Resultat wie bei resp_spieler.js, wichtig ist, dass der Content-Type application/json ist. Das oben erwähnt ${SHARED_TOKEN} ist ein kleiner Hash, denn wir jedes Mal mitsenden, somit können wir grundsätzlich sicherstellen, dass nur unsere iPhone App darauf zugriff hat (und ihr müsst überprüfen ob das Token übereinstimmt). Gut, zugegeben, wenn man will findet man das Token relativ schnell heraus, aber joa, besser als nichts. Ausser, man könnte die Daten via HTTPS abrufen...

Anyway, denke für die Kader-Liste + Spieler-Statistiken sollte dies erst einmal reichen. Wichtig ist einfach, dass ihr einen kleines Script erstellt, welches diese Daten in diesem Format ausgibt...

@lwe
lwe / savon_nokogiri_response_hack.rb
Created December 16, 2009 16:18
Handle SOAP multi-ref entries a bit more gracefully...
# Basically replaces just all `<arg href="#xyz"/>`-entries with the "real" value.
module NokogiriResponse
def xml_body
@xml_body ||= NokogiriResponse.create_doc_and_process_multirefs(@response.body)
end
def to_hash_from_xml_body
@hash_body ||= Crack::XML.parse(xml_body.to_s).find_regexp([/.+:Envelope/, /.+:Body/, /.+/]).map_soap_response
end
@lwe
lwe / README.txt
Created November 5, 2009 07:43 — forked from rmm5t/README.md
Added german translations
You can represent time statements in most western languages where
a prefix and/or suffix is used.
The default case is to use suffix only (as in English), which you
do by providing the `suffixAgo` and `suffixFromNow` settings in
the strings hash (earlier versions of timeago used the deprecated
`ago` and `fromNow` options). If present, they are used.
2 minutes [suffixAgo]
2 minutes [suffixFromNow]