thanks 4 putting source for a noob to learn a little
-
DocSets-for-iOS and paid 4 it too https://github.com/omz/DocSets-for-iOS/
-
Real Time Congress
// Swift Standard Librray - String | |
// ==== | |
// Initializing a String | |
// ==== | |
var emptyString = "" // Empty String | |
var stillEmpty = String() // Another empty String | |
let helloWorld = "Hello World!" // String inferred |
# This config file was created for myself (@janlay). You may want to add or remove some rules to make efficient use of the Internet. | |
[General] | |
# warning, notify, info, verbose | |
loglevel = notify | |
[Proxy] | |
# http, https, socks5 | |
Proxy = custom, 1.2.3.4, 443, rc4-md5, password, http://server/custom.module |
thanks 4 putting source for a noob to learn a little
DocSets-for-iOS and paid 4 it too https://github.com/omz/DocSets-for-iOS/
Real Time Congress
[{ | |
"trigger": { | |
"url-filter": "sitecatalyst.js" | |
}, | |
"action": { | |
"type": "block" | |
} | |
}, { | |
"trigger": { | |
"url-filter": "twitter.com/widgets.js" |
#Get the current configuration and save it locally | |
curl -X GET http://user:[email protected]/job/myjobname/config.xml -o mylocalconfig.xml | |
#Update the configuration via posting a local configuration file | |
curl -X POST http://user:[email protected]/job/myjobname/config.xml --data-binary "@mymodifiedlocalconfig.xml" | |
#Creating a new job via posting a local configuration file | |
curl -X POST "http://user:[email protected]/createItem?name=newjobname" --data-binary "@newconfig.xml" -H "Content-Type: text/xml" |
#!/usr/bin/env python | |
# Taken from http://zulko.github.io/blog/2015/02/01/extracting-perfectly-looping-gifs-from-videos-with-python-and-moviepy/ | |
import os | |
import sys | |
import moviepy.editor as mp | |
from moviepy.video.tools.cuts import FramesMatches | |
if len(sys.argv) != 2: |
#!/usr/bin/env bash | |
# Derived from: https://gist.github.com/RichardBronosky/2878446 | |
realpath(){ | |
echo "$(cd "$(dirname "$1")"; echo -n "$(pwd)/$(basename "$1")")"; | |
} | |
IPA_SRC="$(realpath $1)" | |
PROVISIONING_PROFILE="$(realpath $2)" |
Basically, UIPasteBoard allows us to share data to other application. Below is an example of UIpasteBoard usage. | |
COPY | |
UIPasteboard *appPasteBoard = [UIPasteboard generalPasteboard]; | |
appPasteBoard.persistent = YES; | |
[appPasteBoard setString:@"STRING TO COPY"]; | |
PASTE |
// | |
// Regular Expression for URL validation | |
// | |
// Author: Diego Perini | |
// Updated: 2010/12/05 | |
// License: MIT | |
// | |
// Copyright (c) 2010-2013 Diego Perini (http://www.iport.it) | |
// | |
// Permission is hereby granted, free of charge, to any person |