Skip to content

Instantly share code, notes, and snippets.

View tbfungeek's full-sized avatar
๐Ÿ˜˜
Coding

Xiaohai.lin tbfungeek

๐Ÿ˜˜
Coding
View GitHub Profile
TypeScript 9 hrs 58 mins โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–Œ 97.8%
JavaScript 6 mins โ–โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘ 1.0%
JSON 5 mins โ–โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘ 0.9%
CSS 1 min โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘ 0.3%
Other 0 secs โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘โ–‘ 0.0%
@tbfungeek
tbfungeek / Python AVL Binary Tree
Created March 21, 2020 08:38 — forked from Arianxx/Python AVL Binary Tree
Python AVL Binary Tree
#! /usr/bin/python3
# -*- coding:utf-8 -*-
from collections.abc import MutableSequence
from copy import deepcopy
AUTHER = 'ArianX'
GITHUB = 'https://github.com/Arianxx'
BLOG = 'https://arianx.me'
@tbfungeek
tbfungeek / Python AVL Binary Tree
Created March 21, 2020 08:38 — forked from Arianxx/Python AVL Binary Tree
Python AVL Binary Tree
#! /usr/bin/python3
# -*- coding:utf-8 -*-
from collections.abc import MutableSequence
from copy import deepcopy
AUTHER = 'ArianX'
GITHUB = 'https://github.com/Arianxx'
BLOG = 'https://arianx.me'
@tbfungeek
tbfungeek / RealmMigrationDemo.java
Created January 21, 2017 14:03 — forked from brucetoo/RealmMigrationDemo.java
Realmๆ•ฐๆฎๅบ“่ฟ็งปๅฎžไพ‹
package com.brucetoo.realmdemo.realmmigration;
import android.app.Application;
import android.util.Log;
import io.realm.Realm;
import io.realm.RealmConfiguration;
import io.realm.RealmMigration;
import io.realm.RealmObject;
import io.realm.internal.ColumnType;