I hereby claim:
- I am mscharl on github.
- I am mscharl (https://keybase.io/mscharl) on keybase.
- I have a public key whose fingerprint is 7E0C 1162 C231 77DD CCE5 BED6 D02E CBC1 E96C A2AD
To claim this, I am signing this object:
| export IP=$(curl --silent https://httpbin.org/ip 2>&1 | grep -Eo "([0-9]{1,3}.){3}[0-9]{1,3}") | |
| export DATE=$(date +"%Y-%m-%d %H:%M") | |
| echo "$DATE: $IP" >> ip.log |
| /// An object that has some tear-down logic | |
| public protocol Disposable { | |
| func dispose() | |
| } | |
| /// An event provides a mechanism for raising notifications, together with some | |
| /// associated data. Multiple function handlers can be added, with each being invoked, | |
| /// with the event data, when the event is raised. | |
| public class Event<T> { |
I hereby claim:
To claim this, I am signing this object:
| <!doctype html> | |
| <html> | |
| <head> | |
| <!-- Run in full-screen mode. --> | |
| <meta name="apple-mobile-web-app-capable" content="yes"> | |
| <!-- Make the status bar black with white text. --> | |
| <meta name="apple-mobile-web-app-status-bar-style" content="black"> |
| <?php | |
| if(function_exists('register_sidebar')) { | |
| register_sidebar(array( | |
| 'before_widget' => '<div id="%1$s" class="block %2$s">', | |
| 'after_widget' => '</div>', | |
| 'before_title' => '<h3>', | |
| 'after_title' => '</h3>', | |
| )); | |
| } | |
| ?> |
| $.xhrPool = []; | |
| $.xhrPool.abortAll = function() { | |
| $(this).each(function(idx, jqXHR) { | |
| jqXHR.abort(); | |
| }); | |
| $.xhrPool.length = 0 | |
| }; | |
| $.ajaxSetup({ | |
| beforeSend: function(jqXHR) { |
| <?php | |
| header('Content-Type: text/css'); | |
| require_once('lessc.inc.php'); | |
| $files = explode(',', $_GET['f']); | |
| foreach($files as $f) _compile($f); |