No.
This file contains 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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("retrospring.net") { | |
@keyframes wasp{ | |
0%{margin-left:0px} | |
20%{ margin-left:100px; transform:scale(1.0)rotate(90deg); } | |
40%{ margin-left:100px; margin-top:100px; transform:scale(1.0) rotate(20deg); } | |
60%{ margin-top:100px } | |
100%{ } |
This file contains 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
# random_cardcast.rb | |
# (c) 2015 nilsding | |
# License: MIT (http://opensource.org/licenses/MIT) | |
# | |
# echo "gem 'httparty'" >> ../Gemfile && bundle install | |
require 'httparty' | |
require 'json' | |
Twittbot::BotPart.new :random_cardcast do |
This file contains 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 ruby | |
# | |
# Usage: | |
# ruby issues_exporter.rb > exported_repo.yml | |
# Settings: | |
user = 'retrospring' | |
repo = 'bugs' | |
username = 'your-oauth-token-here' # see https://github.com/settings/applications#personal-access-tokens |
This file contains 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
import java.awt.Color; | |
import java.awt.Component; | |
import javax.swing.JList; | |
import javax.swing.ListCellRenderer; | |
import javax.swing.border.LineBorder; | |
/** | |
* | |
* @author nilsding |
This file contains 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/ruby | |
# JSONfs - the JSON file system | |
# (c) 2014 nilsding | |
# License: GPLv2 | |
# | |
# Requires RFuse, install it via `gem install rfuse` | |
# | |
# Based on the RFuse sample file system: | |
# https://github.com/lwoggardner/rfuse/blob/master/sample/test-ruby.rb | |
# (c) 2014 lwoggardner |
This file contains 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 ruby | |
# bot.rb - simple Twitter retweet bot | |
# See also: http://blog.nilsding.org/blog/2014/09/14/retweetbot-tutorial/ | |
# | |
# code (c) 2014 nilsding | |
# License: WTFPL | |
require 'twitter' | |
retweet_tags = ["#nilsding", "Fuchs"] # the tags the bot should retweet |
This file contains 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 ruby | |
def fizzbuzz number | |
if number % 3 == 0 and number % 5 == 0 | |
"FizzBuzz" | |
elsif number % 3 == 0 | |
"Fizz" | |
elsif number % 5 == 0 | |
"Buzz" | |
else |
This file contains 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
using System; | |
using System.Text.RegularExpressions; | |
namespace Twoffein | |
{ | |
class Helpers | |
{ | |
public static bool checkApiKey (string apiKey) | |
{ | |
Regex r = new Regex (@"^[A-GI-MP-RT-VX-Z]{3}\d{2}[A-GI-MP-RT-VX-Z]{7}\d{2}[A-GI-MP-RT-VX-Z]{2}$"); |
This file contains 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
// How to enable Emoji graphics on TweetDeck™ | |
// | |
// right-click somewhere on TweetDeck™ and click on "Inspect Element" | |
// go to the JavaScript console | |
// copy and paste these four lines into the console: | |
window.TD.util.cleanOld = window.TD.util.clean; | |
window.TD.util.clean = function(e) { | |
return window.TD.emoji.parse(window.TD.util.cleanOld(e)); | |
}; |