Edward Snowden answered questioned after a showing of CITIZENFOUR at the IETF93 meeting; this is a transcript of the video recording.
For more information, see the Internet Society article.
| ★°.. . ☾°☆ .*●¸. ★ °:. .•○°★ . * . . | |
| ° .●. °☾°☆ ¸.●. ★ ★°☾☆¸.¸ ★ :. .•○°★ . * . | |
| . ¸. ° ¸.*●¸. °☾° ¸.●¸. ★ °:. .•° . * :. . ¸. | |
| ●¸ ★ ★☾°★. . °☆ .●¸. ★ °. •○°★ . | |
| * . ☾° ¸.*●¸ °☾°☆ .*¸. ★ | |
| ★°.. . ☾°☆ .*●¸. ★ °:. .•○°★ . * . . ° . | |
| ●. °☾°☆ ¸.●. ★ ★°☾☆¸.¸ ★ :. .•○°★ . * . . | |
| . ¸. ° ¸.*●¸. °☾° ¸.●¸. ★ °:. .•° | |
| package main | |
| import "fmt" | |
| func fab() (int, error) { | |
| return 0, nil | |
| } | |
| func main() { | |
| if i, err := fab(); err != nil { |
| import Foundation | |
| /// Timeout wrapps a callback deferral that may be cancelled. | |
| /// | |
| /// Usage: | |
| /// Timeout(1.0) { println("1 second has passed.") } | |
| /// | |
| class Timeout: NSObject | |
| { | |
| private var timer: NSTimer? |
| package main | |
| import "fmt" | |
| type element struct { | |
| count int | |
| } | |
| var samples = [][]int{ | |
| {1, 2, 3, 4, 5, 6, 7, 8, 9}, |
| /* =========================================================================== */ | |
| // 75 ='s followed by title/subject of section. | |
| /* ================================================== */ | |
| // 50 ='s followed by title/subject of section. | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | Title | |
| |-------------------------------------------------------------------------- |
| $(function() { | |
| var footnotes = {}; | |
| // Gather footnotes. | |
| var footnotePattern = /^\*(\w+):/; | |
| $("p, .footnote").not(".footnote p, p .footnote").each(function() { | |
| var match = footnotePattern.exec($(this).text()); | |
| if (match && match.length) { | |
| footnotes[match[1]] = $(this); | |
| } | |
| }); |
| package main | |
| import ( | |
| "bytes" | |
| "fmt" | |
| "sort" | |
| ) | |
| func main() { |
| /** | |
| * You shouldn't call this method anymore. | |
| * | |
| * Don't forget to add a clarifying javadoc field for the programmer: | |
| * | |
| * @deprecated Use {@link #new()} instead. | |
| */ | |
| @Deprecated | |
| public void old() { | |
| // ... |
Edward Snowden answered questioned after a showing of CITIZENFOUR at the IETF93 meeting; this is a transcript of the video recording.
For more information, see the Internet Society article.
| // Usage: | |
| // var a = new LinkedSortedIntStack(1, 2, 5); | |
| // a.push(4, 3); | |
| // a.getStackAsArray(); | |
| // a.getSortedListAsArray(); | |
| var LinkedSortedIntStack = function() { | |
| this.nodeCount = 0; | |
| // Push all arguments (varargs-style) |