Keybase proof
I hereby claim:
- I am lukaszklis on github.
- I am lukaszklis (https://keybase.io/lukaszklis) on keybase.
- I have a public key whose fingerprint is 8491 D884 5062 1C68 05FD 7616 8231 9647 A188 0AC7
To claim this, I am signing this object:
{"lastUpload":"2017-02-07T12:00:15.506Z","extensionVersion":"v2.4.3"} |
I hereby claim:
To claim this, I am signing this object:
// ---- | |
// Requires Sass 3.4+ | |
// ---- | |
$elementSeparator: ''; | |
$modifierSeparator: '--'; | |
@mixin b($block) { | |
.#{$block} { | |
@content; |
@mixin animation-blink () { | |
0% { opacity: 0; } | |
50% { opacity: 1; } | |
100% { opacity: 0; } | |
} |
(?<!="|>)(((ht|f)tps?\:\/\/)\S+)(?!") |
#! /bin/csh | |
while (1) | |
curl -s -L http://phobos.apple.com/version | grep -i Restore | grep -i "\(iPhone\|iPad\|iPod\)" | grep -i "6\.0" | |
if ($? == 1) then | |
echo "Nothing yet..."`date` | |
else | |
say "iOS SIX POINT OH FIRMWARE IS NOW AVAILABLE" | |
endif | |
sleep 60 | |
end |
#!/usr/bin/ruby | |
class Randomizer | |
def initialize(teams, amount) | |
@teams = teams | |
@amount = amount | |
end | |
def get |
Plugin has been moved into a GitHub repository: https://github.com/lukaszklis/BoardMessages |
#include "stdio.h" | |
int main() { | |
while (1) { | |
printf("Trwa usuwanie usterek przy nadajniku niedaleko Pana, powinno to zająć do 24h.\n"); | |
} | |
return 0; | |
<?php | |
// Your functions.php content | |
function has_children() { | |
global $post; | |
$pages = get_pages('child_of=' . $post->ID); | |
return count($pages); |