Skip to content

Instantly share code, notes, and snippets.

View Basher7's full-sized avatar
👋
Thanks for your visit

Basher Sarkar Basher7

👋
Thanks for your visit
  • Dhaka, Bangladesh
  • 05:30 (UTC +06:00)
View GitHub Profile
[
{
"currency": "Albania Lek",
"abbreviation": "ALL",
"symbol": "Lek"
},
{
"currency": "Afghanistan Afghani",
"abbreviation": "AFN",
"symbol": "؋"
@Basher7
Basher7 / Common-Currency.json
Created June 28, 2020 06:09 — forked from ksafranski/Common-Currency.json
Common Currency Codes in JSON
{
"USD": {
"symbol": "$",
"name": "US Dollar",
"symbol_native": "$",
"decimal_digits": 2,
"rounding": 0,
"code": "USD",
"name_plural": "US dollars"
},
@Basher7
Basher7 / main.dart
Created March 20, 2019 08:19 — forked from sroddy/main.dart
Flutter iOS Orientation Issues
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return new MaterialApp(
@Basher7
Basher7 / IndexedDB101.js
Created July 10, 2018 05:23 — forked from JamesMessinger/IndexedDB101.js
Very Simple IndexedDB Example
// This works on all devices/browsers, and uses IndexedDBShim as a final fallback
var indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB || window.shimIndexedDB;
// Open (or create) the database
var open = indexedDB.open("MyDatabase", 1);
// Create the schema
open.onupgradeneeded = function() {
var db = open.result;
var store = db.createObjectStore("MyObjectStore", {keyPath: "id"});