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
| https://www.techrunnr.com/how-to-change-kubernetes-master-and-worker-node-ip-address/ |
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
| follow this | |
| https://github.com/fastoe/RTL8812BU |
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
| docker run -it -v $pwd/.:/project itachi1706/flutter-alpine-android bash -c "cd /project; flutter build apk" |
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
| docker run --rm -it -v $env:userprofile\.kube\config:/root/.kube/config quay.io/derailed/k9s |
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 ( | |
| "fmt" | |
| "log" | |
| "time" | |
| "github.com/gorilla/websocket" | |
| ) |
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
| { | |
| "bkc_checker":{"version":1}, | |
| "software":"Haxe[4rc4] + Heaps[git] + HL[1.10.0] + hlsdl[1.10.0]", | |
| "meta":["Tested OS : Windows 10"], | |
| "checker":{ | |
| "Haxe4.0_rc4":{ | |
| "cmdline":"haxe --version", | |
| "expected_stdout": "<SEARCH>4.0.0-rc.4+97f1e1a9d", | |
| "common_issue":[ | |
| "Haxe is not installed. Please download & install Haxe from url => https://haxe.org/download/version/4.0.0-rc.4/" |
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
| var thisClass = Type.getClass(this); | |
| var b = Type.getInstanceFields(thisClass); | |
| for (i in 0...b.length) | |
| { | |
| trace(b[i]); | |
| trace(Reflect.field(this,b[i])); | |
| } |
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
| <script> | |
| /* | |
| alter_branding.js | |
| webteam UTM | |
| last updated 21 september 2014 , 11:41 pm | |
| */ | |
| (function(jQuery){ |
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 addJQuery(callback) { | |
| var script = document.createElement("script"); | |
| script.setAttribute("src", "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"); | |
| script.addEventListener('load', function() { | |
| var script = document.createElement("script"); | |
| script.textContent = "window.jQ=jQuery.noConflict(true);(" + callback.toString() + ")();"; | |
| document.body.appendChild(script); | |
| }, false); | |
| document.body.appendChild(script); | |
| } |
NewerOlder