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
| // This file was initially generated by Windows Terminal Preview 1.1.1812.0 | |
| // It should still be usable in newer versions, but newer versions might have additional | |
| // settings, help text, or changes that you will not see unless you clear this file | |
| // and let us generate a new one for you. | |
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", |
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
| let token = "<Github-Auth-Token>" | |
| let fileContent = '<file-content>'; | |
| let path = '/path/to/abc.txt' | |
| let commitMsg = 'txt file' | |
| var content = btoa(fileContent); | |
| uploadFileApi(token, content) |
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
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp( const MyApp()); //run app fills the screen so that apps and screen look cool | |
| void answerQuestion() { | |
| print('Answer Chosen!'); | |
| } | |
| } | |
| class MyApp extends StatelessWidget { |
Simplified Normalize from you-dont-need-bootstrap repo
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
| body { | |
| margin: 40px auto; | |
| max-width: 650px; | |
| line-height:1.6; | |
| font-size: 18px; | |
| color: #444; | |
| padding: 0 10px | |
| } | |
| h1,h2,h3{ |
- Install scoop
- Install Node, Java 17, Android Command Line Tools & ADB
scoop bucket add java extras versions
scoop install nodejs microsoft17-jdk android-clt adb
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.deserialise = function(key, data) { | |
| return (data instanceof Array && data[0] == 'window.Function') ? | |
| new (Function.bind.apply(Function, [Function].concat(data[1], [data[2]]))) : | |
| data | |
| ; | |
| }; | |
| Function.prototype.toJSON = function() { | |
| var whitespace = /\s/; | |
| var pair = /\(\)|\[\]|\{\}/; |
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.deserialise = function(key, data) { | |
| return (data instanceof Array && data[0] == 'window.Function') ? | |
| new (Function.bind.apply(Function, [Function].concat(data[1], [data[2]]))) : | |
| data | |
| ; | |
| }; | |
| Function.prototype.toJSON = function() { | |
| var whitespace = /\s/; | |
| var pair = /\(\)|\[\]|\{\}/; |
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
| /** | |
| * localForage is a fast and simple storage library for JavaScript. | |
| * localForage improves the offline experience of your web app | |
| * by using asynchronous storage (IndexedDB or WebSQL) with a simple, localStorage-like API. | |
| * @see https://github.com/localForage/localForage | |
| */ | |
| importScripts("/lib/localforage.min.js"); | |
| /** | |
| * ExecutionLock |