Skip to content

Instantly share code, notes, and snippets.

@johnaa123
johnaa123 / AndroidManifest.xml
Created June 29, 2023 22:02 — forked from minhcasi/AndroidManifest.xml
How to build Flutter Instant app with FluxStore
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:dist="http://schemas.android.com/apk/distribution"
android:targetSandboxVersion="2"
package="com.inspireui.fluxstore">
<!-- The following declaration enables this module to be served instantly -->
<dist:module dist:instant="true"></dist:module>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
@johnaa123
johnaa123 / index.html
Created June 29, 2023 22:01 — forked from minhcasi/index.html
Sunflower
<!-- Copyright 2011 the Dart project authors. All rights reserved.
Use of this source code is governed by a BSD-style license
that can be found in the LICENSE file. -->
<h2>InspireUI Test Dart 12333</h2>
<h2>Dr. Fibonacci's</h2>
<div>
<canvas id="canvas" width="300" height="300"></canvas>
</div>
@johnaa123
johnaa123 / paynow.js
Created February 28, 2023 14:38 — forked from chengkiang/paynow.js
SG PayNow QR Code Generator Sample
String.prototype.padLeft = function (n, str) {
if (n < String(this).length) {
return this.toString();
}
else {
return Array(n - String(this).length + 1).join(str || '0') + this;
}
}
function crc16(s) {