./webkit.swift
-bash: ./webkit.swift: Permission denied
add x permision on it
chmod +x webkit.swift
#!/bin/bash | |
cd /home/ | |
if [ $1 ]; then | |
for d in */ ; do | |
user=${d%/*} | |
echo $user; | |
#ps aux |grep router.php |grep $user |wc -l | |
ps aux |grep $1 |grep $user |wc -l | |
done | |
else |
<?php | |
/** | |
* by Adrian Statescu <[email protected]> | |
* Twitter: @thinkphp | |
* G+ : http://gplus.to/thinkphp | |
* MIT Style License | |
*/ | |
#!/bin/bash | |
# This script downloads and builds the iOS, tvOS and Mac openSSL libraries with Bitcode enabled | |
# Credits: | |
# https://github.com/st3fan/ios-openssl | |
# https://github.com/x2on/OpenSSL-for-iPhone/blob/master/build-libssl.sh | |
# https://gist.github.com/foozmeat/5154962 | |
# Peter Steinberger, PSPDFKit GmbH, @steipete. | |
# Felix Schwarz, IOSPIRIT GmbH, @felix_schwarz. |
var workaroundIOS9Bug: Bool = true | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
if #available(iOS 9.0, *) { | |
self.workaroundIOS9Bug = true | |
}else { | |
self.workaroundIOS9Bug = false | |
} |
./webkit.swift
-bash: ./webkit.swift: Permission denied
add x permision on it
chmod +x webkit.swift
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
var finished = true; | |
var onFriendsMessage = function onFriendsMessage(source, message, type, chatter){ | |
// respond to both chat room and private messages | |
if (type == 1) //1, message; 2, tying | |
if(friends.personaStates[source] != undefined){ | |
console.log('Received message: \'' +message+'\' from '+friends.personaStates[source].player_name); | |
if(finished){ | |
var rl = require('readline').createInterface({ | |
input: process.stdin, |