One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| set vorwahl to "+49" | |
| tell application "Contacts" | |
| repeat with aPerson in people | |
| set thePhones to phones of aPerson | |
| if thePhones is not {} then | |
| set errorList to {} | |
| repeat with aPhoneNumber in thePhones | |
| set theNumber to value of aPhoneNumber | |
| if (characters 1 thru 1 of theNumber) as string is "0" then |
| <small> | |
| <time datetime="{{ post.date }}" class="blogpost-time"><!-- Whitespace added for readability --> | |
| {% assign m = post.date | date: "%-m" %} | |
| {{ post.date | date: "%-d" }}. | |
| {% case m %} | |
| {% when '1' %}Januar | |
| {% when '2' %}Februar | |
| {% when '3' %}März | |
| {% when '4' %}April | |
| {% when '5' %}Mai |
| # Open Terminal and copy a blank space to your clipboard | |
| # https://superuser.com/a/1152506 | |
| echo '\u200b' | pbcopy | |
| # Go to Chrome -> Click on the avatar menu, edit the name, paste from the clipboard |
| !/bin/sh | |
| # | |
| # Creates a random string with characters from [A-Za-z0-9] | |
| # | |
| # Usage: ./random.sh length | |
| # | |
| LC_ALL=C tr -dc 'A-Za-z0-9' </dev/urandom | dd bs="${1?}" count=1 2>/dev/null | |
| echo |
| #!/bin/bash | |
| SECONDS=0 | |
| #Check if running as root and if not elevate | |
| amiroot=$(sudo -n uptime 2>&1| grep -c "load") | |
| if [ "$amiroot" -eq 0 ] | |
| then | |
| printf "Maid Service Require Root Access. Please Enter Your Password.\n" | |
| sudo -v | |
| printf "\n" |
| # App side: | |
| defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' | |
| # On the document side: | |
| defaults write com.apple.dock persistent-others -array-add '{tile-data={}; tile-type="spacer-tile";}' |
| /* site.css */ | |
| /* navbar is draggable... */ | |
| nav-bar { | |
| -webkit-app-region: drag; | |
| } | |
| /* but any buttons inside the header shouldn't be draggable */ | |
| nav-bar button { | |
| -webkit-app-region: no-drag; |
| #!/usr/bin/env python | |
| # encoding: utf-8 | |
| # | |
| # Copyright (c) 2013 deanishe@deanishe.net. | |
| # | |
| # MIT Licence. See http://opensource.org/licenses/MIT | |
| # | |
| # Created on 2013-11-01 | |
| # |