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
| package main | |
| import ( | |
| "encoding/hex" | |
| "encoding/json" | |
| "fmt" | |
| "os" | |
| ) | |
| // JSN has some struct for json |
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
| 0xd59ca67F29AcEC5B57e47f2be3e8C93Bea372c59 |
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
| function processData(input) { | |
| //Enter your code here | |
| console.log(readLine()) | |
| } | |
| process.stdin.resume(); | |
| process.stdin.setEncoding("ascii"); | |
| _input = ""; |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| GET videos/episode/_search | |
| { | |
| "size": 20, | |
| "query": { | |
| "query_string": { | |
| "query": "summer" | |
| } | |
| } | |
| } |
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
| // $mq-mobile-portrait : 320px !default; | |
| // $mq-mobile-landscape : 480px !default; | |
| // $mq-tablet-portrait : 640px !default; -- changed because i want my blog content is around this wide, not 768. you should let content & design determine your breakpoints | |
| // $mq-tablet-landscape : 1024px !default; | |
| // $mq-desktop : 1382px !default; | |
| $mq-mobile-portrait : 20em !default; | |
| $mq-mobile-landscape : 30em !default; | |
| $mq-tablet-portrait : 40em !default; | |
| $mq-tablet-landscape : 64em !default; |