This file contains hidden or 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
// Need to use this special type so that keyof would work | |
export type TheType<T> = Required<NonNullable<T>> | |
export function path<P extends keyof TheType<T>, T>( | |
props: [P], | |
obj: T | |
): PropType<P, T> | |
export function path< | |
P extends keyof TheType<T>, |
This file contains hidden or 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
<?xml version=1.0 encoding=UTF-8?> | |
<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd> | |
<plist version=1.0> | |
<dict> | |
<key>PayloadDisplayName</key> | |
<string>Telstra IPv6 Profile</string> | |
<key>PayloadIdentifier</key> | |
<string>ipv6.telstra.apn.saltspork.com</string> |
This file contains hidden or 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
Index: app/assets/javascripts/blueimp-gallery.js | |
IDEA additional info: | |
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | |
<+>UTF-8 | |
=================================================================== | |
--- app/assets/javascripts/blueimp-gallery.js (revision 328:c900ca71ecec0ce23ead18ab66d10b1404191483) | |
+++ app/assets/javascripts/blueimp-gallery.js (revision ) | |
@@ -154,6 +154,7 @@ | |
// The event object for which the default action will be canceled | |
// on Gallery initialization (e.g. the click event to open the Gallery): |
This file contains hidden or 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 'celluloid' | |
class Child | |
include Celluloid | |
include Celluloid::Logger | |
def start(cycle, n) | |
info "#{cycle}:#{n} started..." | |
if n == 2 |