Skip to content

Instantly share code, notes, and snippets.

View orktes's full-sized avatar

Jaakko Lukkari orktes

  • Noice Entertainment
  • Helsinki, Finland
View GitHub Profile
function * filteredIterator(iterable, condition) {
for (const item of iterable) {
if (condition(item)) {
yield item
}
}
}
var map1 = new Map();
@orktes
orktes / keybase.md
Created December 15, 2017 10:33
keybase.md

Keybase proof

I hereby claim:

  • I am orktes on github.
  • I am orktes (https://keybase.io/orktes) on keybase.
  • I have a public key ASADQJB2EkQtKxtY2pDkjMwaKw1HiHrxd-m40CuRFuUKKQo

To claim this, I am signing this object:

Profanity found 0fux 10.000000
Profanity found 6969inyourpussy 4.000000
Profanity found 717 3.000000
Profanity found 7w4tb 4.000000
Profanity found 88fux 10.000000
Profanity found AASS 4.000000
Profanity found ABASS 4.000000
Profanity found ASS 4.000000
Profanity found ASSASSIN 4.000000
Profanity found ASSASSINS 4.000000
Should be part on EveryplayCapture. Only seems to be used there.
https://github.com/Applifier/everyplay-android/compare/32729f842cf9138ab9aa4d5a30a60bceeedb426e...8157f37d6b9a75b9fc43eeffc5337d972bd0fdc6#diff-fe5c7006642197719cf43118daf61b21R774
New scope variable
https://github.com/Applifier/everyplay-android/compare/32729f842cf9138ab9aa4d5a30a60bceeedb426e...8157f37d6b9a75b9fc43eeffc5337d972bd0fdc6#diff-45cfdb9da31719bfc64c91c12e39dbc3R2666
Odd reformat
https://github.com/Applifier/everyplay-android/compare/32729f842cf9138ab9aa4d5a30a60bceeedb426e...8157f37d6b9a75b9fc43eeffc5337d972bd0fdc6#diff-f8fc8f8f593a9a108d84dd7513c2110dR1
triesLeftForTemplate@749:10060
userHasActionsOnChallengeInConversation@749:14381
749:18264
y@370:1349
Rf@371:11630
conversationHasPendingChallengeActions@749:18204
_getTabs@790:3651
_renderActions@790:12008

Orlang code

macro createTuple {
  ($a:expr , $( $x:expr ),*) : (
    (
      $a
      $(
        ,
        $x
      )*
$ ack ginkgo -l
.gitignore
cluster/test-e2e.sh
cluster/test-network.sh
cluster/test-smoke.sh
contrib/mesos/ci/test-conformance.sh
docs/devel/e2e-node-tests.md
docs/devel/e2e-tests.md
docs/devel/kubemark-guide.md
docs/devel/node-performance-testing.md
=== RUN TestRunHubTestSuite
Benchmarks
Receivers Message b Overhead b/msg Speed (MB/s) Speed (msg/s) Allocs b/msg Allocs n/msg time ns/msg
1 1024 13 19.288981 18836.895340 48 2 53087
1 4096 13 41.783759 10201.112963 48 2 98028
1 16384 13 206.555143 12607.125432 48 2 79320
1 65536 13 496.490923 7575.850271 48 2 131998
1 262144 13 587.905117 2242.680043 48 2 445895
1 1048576 13 501.446723 478.216861 50 2 2091101
3 1024 29 26.051654 25441.068583 116 4 117919
{
"plugins": [
{
"name": "pr_review_peer",
"config": {
"reviewerCount": 2
}
}
]
}
@orktes
orktes / gist:acd5544aa1d6f9104cc4
Last active August 29, 2015 14:20
Node.BAS Fib 45
fib.bas:
2010 a = 45
2030 DIM f(45 + 1)
2040 f(0) = 0
2050 f(1) = 1
2060 n = 1
2080 f(n+1) = f(n) + f(n-1)
2090 n = n + 1
2120 IF n < a THEN 2080
2121 PRINT "FIB 45 = ", f(n)