Simplified Normalize from you-dont-need-bootstrap repo
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
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 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 { |
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
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 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 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 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 |
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
[0-9]*_[a-z|_]*.py |
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
/* @unocss-include */ | |
import { | |
onMount, | |
createSignal, | |
Show, | |
For, | |
onCleanup, | |
createEffect, | |
createMemo, |