This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import asyncio | |
import time | |
import aiohttp | |
START = time.monotonic() | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This code is public domain, share and enjoy. | |
window.ui = window.ui || {}; | |
/** @constructor */ | |
ui.ListView = function(element, collection) { | |
this.el = element; | |
this.cellHeight = 30; | |
this.collection = collection; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:+1: | |
:-1: | |
:airplane: | |
:art: | |
:bear: | |
:beer: | |
:bike: | |
:bomb: | |
:book: | |
:bulb: |
//
Since we don't want this visible in C, we put it in a comment.
&>/dev/null
Unfortunately //
is interpreted as an invalid shell command and produces an error message, so we need to redirect that to /dev/null
to get rid of it.
;x="${0%.*}"