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
.container { | |
transform: rotate(0deg); | |
width: 600px; | |
height: 600px; | |
} | |
.container:hover { | |
-webkit-animation: rotator 2s; | |
} |
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
[{"fvd":"lcny:i4","url":"https://s3.amazonaws.com/typekit-production-screenshots/00000000000000000000d2f4/13/1/ad402c0dfd8804496bb1e6111c03088a.png","browser_os_id":"safari-windows-vista"},{"fvd":"jvcb:i7","url":"https://s3.amazonaws.com/typekit-production-screenshots/0000000000000000000100ef/13/1/ad402c0dfd8804496bb1e6111c03088a.png","browser_os_id":"safari-windows-vista"},{"fvd":"hncd:n7","url":"https://s3.amazonaws.com/typekit-production-screenshots/0000000000000000000100ee/13/1/ad402c0dfd8804496bb1e6111c03088a.png","browser_os_id":"safari-windows-vista"},{"fvd":"dxlb:n3","url":"https://s3.amazonaws.com/typekit-production-screenshots/0000000000000000000100f0/13/1/ad402c0dfd8804496bb1e6111c03088a.png","browser_os_id":"safari-windows-vista"},{"fvd":"dxlb:i3","url":"https://s3.amazonaws.com/typekit-production-screenshots/0000000000000000000100f1/13/1/ad402c0dfd8804496bb1e6111c03088a.png","browser_os_id":"safari-windows-vista"},{"fvd":"dxlb:n4","url":"https://s3.amazonaws.com/typekit-production-screenshots/000 |
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
require 'shamazing' | |
require 'benchmark/ips' | |
sha = '9c2cddfaedaea9689a22e376aa20191041554fe8' | |
class Shamazing | |
def self.refactored(sha) | |
sha. | |
downcase. | |
scan(/[a-f]+/). |
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
package com.wendt.shamazing; | |
public class App { | |
public static void main(String[] args) { | |
String sha = "9c2cddfaedaea9689a22e376aa20191041554fe8"; | |
int ITER = 1000000; | |
long start = System.nanoTime(); | |
for (int i = 0 ; i < ITER ; i++) |
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/local/bin/macruby | |
framework 'Cocoa' | |
framework 'Foundation' | |
class NotificationHandler | |
def handle(notification) | |
`itunes-update-notification` | |
end | |
end |