Skip to content

Instantly share code, notes, and snippets.

View pirkka's full-sized avatar

Pirkka Esko pirkka

View GitHub Profile
~/c/scrap ❯❯❯ ruby skulls.rb
1 | 1.16 % |47 ama |45 show |41 jura |38 sorry |38 retro | (show > retro) (retro > jura) (show > ama) (bb > sorry)
2 | 0.5 % |47 ama |45 show |41 jura |41 sorry |38 retro | (show > retro) (retro > jura) (show > ama) (sorry > bb)
3 | 0.41 % |47 ama |45 show |41 jura |39 sorry |38 retro | (show > retro) (retro > jura) (show > ama) (bb = sorry)
4 | 2.71 % |50 ama |42 show |41 jura |38 sorry |38 retro | (show > retro) (retro > jura) (ama > show) (bb > sorry)
5 | 1.16 % |50 ama |42 show |41 jura |41 sorry |38 retro | (show > retro) (retro > jura) (ama > show) (sorry > bb)
6 | 0.97 % |50 ama |42 show |41 jura |39 sorry |38 retro | (show > retro) (retro > jura) (ama > show) (bb = sorry)
7 | 0.97 % |48 ama |43 show |41 jura |38 sorry |38 retro | (show > retro) (retro > jura) (show = ama) (bb > sorry)
8 | 0.41 % |48 ama |43 show |41 jura |41 sorry |38 retro | (show > retro) (retro > jura) (show = ama) (sorry > bb)
9
1 |45 show |44 ama |41 jurassic |38 sorry |38 retro |
2 |45 show |44 ama |41 jurassic |41 sorry |38 retro |
3 |45 show |44 ama |41 jurassic |39 sorry |38 retro |
4 |47 ama |42 show |41 jurassic |38 sorry |38 retro |
5 |47 ama |42 show |41 jurassic |41 sorry |38 retro |
6 |47 ama |42 show |41 jurassic |39 sorry |38 retro |
7 |45 ama |43 show |41 jurassic |38 sorry |38 retro |
8 |45 ama |43 show |41 jurassic |41 sorry |38 retro |
9 |45 ama |43 show |41 jurassic |39 sorry |38 retro |
10 |45 show |44 jurassic |44 ama |38 sorry |35 retro |
(function(url) {
console.log('is jQuery.timeago defined?');
console.log((typeof(jQuery.timeago) !== 'undefined'));
var tag = 'script';
var request = new XMLHttpRequest();
request.onreadystatechange = function() {
if(request.readyState === 4) {
console.log('we have fetched the script');
if(request.status === 200) {
var javascript = request.responseText;
@pirkka
pirkka / taeggie-feed-widget-IFRAME.html
Last active November 21, 2016 11:44
Taeggie feed widget install script using IFRAME.
<!-- COPY this to your web page and insert your Taeggies name in appropriate places: -->
<iframe src="https://taeggie.com/embed/YOUR_TAEGGIE_NAME_GOES_HERE/iframe" scrolling="no" frameborder="0" style="border:none; overflow:hidden;" allowTransparency="true"></iframe>
@pirkka
pirkka / taeggie-feed-widget-script.html
Last active March 16, 2016 10:56
Taeggie feed widget inclusion script how-to. REQUIRES JQUERY.
<!-- COPY this to your web page and insert your Taeggies name in appropriate places: -->
<script id='taeggie-feed-widget-script-YOUR_TAEGGIES_NAME'>
jQuery.getScript("https://core.taeggie.com/embed/YOUR_TAEGGIES_NAME");
</script>
@pirkka
pirkka / taeggie-feed-widget-chillwave.css
Last active March 2, 2018 13:55
Taeggie feed widget customization example.
#taeggie-feed-widget-taeggie-square .post {
border: 4px solid black;
margin-right: 10px;
margin-bottom: 10px;
}
@pirkka
pirkka / taeggie-feed-widget-simple.css
Last active March 2, 2018 13:51
Super simple taeggie customization.
#taeggie-feed-widget-your-taeggie-name .post {
border: 4px dotted lightblue;
}