- Related Setup: https://gist.github.com/hofmannsven/6814278
- Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
- Interactive Beginners Tutorial: http://try.github.io/
- Git Cheatsheet by GitHub: https://services.github.com/on-demand/downloads/github-git-cheat-sheet/
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
var c=""; | |
for (i=0; i<len; i++) { | |
c = c + (if(condition) { | |
b[i].x + "," + b[i].y; | |
} | |
else if (condition){ | |
b[i].x; | |
} |
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
var http = require("http"); | |
var new_server= http.createServer(test); | |
new_server.listen(8000); | |
functin test (request, response) { | |
response.writeHead(200, {'Content-Type': 'text/plain'}); | |
response.end('Hello World\n'); | |
} |
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
//small snippted to convert the path generated by easy star to SVG's native path's d attribute. | |
//This snippet will convert the below p variable to this format: "M5,10V20V30V40H10H20H30H40H50" which is SVG path's d attribute | |
var p=[ | |
{x:5,y:10}, | |
{x:5,y:20}, | |
{x:5,y:30}, | |
{x:5,y:40}, | |
{x:10,y:40}, |
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
.cell{ | |
border: ; | |
background-color: #f1e7ce; | |
border-radius:5px; | |
} | |
.container{ | |
display:inline-grid; | |
grid-template-columns: 100px 100px 100px 100px; | |
grid-column-gap: 10px; |
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
var div = document.querySelector('wifi'); | |
var wifi = navigator.mozWifiManager; | |
var d = []; | |
var request = wifi.getNetworks(); | |
request.onsuccess = function () { | |
console.log(this.result); | |
var networks= this.result; | |
networks.sort(sortNetworks) |
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
var div = document.querySelector('wifi'); | |
var wifi = navigator.mozWifiManager; | |
var d = []; | |
var request = wifi.getNetworks(); // get the available networks | |
request.onsuccess = function () { | |
console.log(this.result); | |
var networks= this.result; | |
networks.sort(sortNetworks) |
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
var a = [{name:'john',rank:10},{name:"Alex",rank:5}]; | |
var avg_rank=0; | |
ordered_array = order_rank(a); | |
console.log(ordered_array); | |
avg = find_avg(a); | |
console.log(avg); | |
function order_rank(a){ |
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
arun@arun-HP-Pavilion-g6-Notebook-PC:~/Documents/servo$ ./mach build --release --android | |
rustc 1.34.0-nightly (0ea22717a 2019-03-02) | |
info: component 'rust-std' for target 'armv7-linux-androideabi' is up to date | |
warning: clang: warning: argument unused during compilation: '-L/home/arun/Downloads/android-ndk-r12b/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/lib/gcc/arm-linux-androideabi/4.9.x' | |
Finished release [optimized] target(s) in 3.85s | |
Swapping prefs | |
21:22:30.211 [INFO] [org.gradle.internal.nativeintegration.services.NativeServices] Initialized native services in: /home/arun/.gradle/native | |
21:22:31.369 [INFO] [org.gradle.internal.work.DefaultWorkerLeaseService] Using 4 worker leases. | |
21:22:31.446 [INFO] [org.gradle.cache.internal.DefaultCacheAccess] Creating new cache for fileHashes, path /home/arun/.gradle/caches/4.4/fileHashes/fileHashes.bin, access org.gradle.cache.internal.DefaultCacheAccess@796d3c9f | |
21:22:31.463 [DEBUG] [org.gradle.api.internal.changedetection.state.InMemoryCacheDeco |
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
arun@arun-HP-Pavilion-g6-Notebook-PC:~$ kubectl logs raven-0 | |
_____ _____ ____ | |
| __ \ | __ \| _ \ | |
| |__) |__ ___ _____ _ __ | | | | |_) | | |
| _ // _` \ \ / / _ \ '_ \| | | | _ < | |
| | \ \ (_| |\ V / __/ | | | |__| | |_) | | |
|_| \_\__,_| \_/ \___|_| |_|_____/|____/ | |
Safe by default, optimized for efficiency |
OlderNewer