Skip to content

Instantly share code, notes, and snippets.

View YeomanYe's full-sized avatar
🎯
Focusing

FWHeart YeomanYe

🎯
Focusing
View GitHub Profile
@YeomanYe
YeomanYe / listen1_aha_playlist.md
Created August 13, 2022 09:23
updated by Listen1(https://listen1.github.io/listen1/) at 2022/8/13下午5:23:25

本歌单由Listen1创建, 歌曲数:223,歌单数:2,点击查看更多

@YeomanYe
YeomanYe / listen1_aha_playlist.md
Created July 27, 2022 14:00
updated by Listen1(https://listen1.github.io/listen1/) at 2022/7/27下午9:59:56

本歌单由Listen1创建, 歌曲数:221,歌单数:2,点击查看更多

@YeomanYe
YeomanYe / listen1_aha_playlist.md
Created June 5, 2022 06:23
updated by Listen1(https://listen1.github.io/listen1/) at 2022/6/5下午2:23:32

本歌单由Listen1创建, 歌曲数:219,歌单数:2,点击查看更多

@YeomanYe
YeomanYe / listen1_aha_playlist.md
Created March 13, 2022 02:24
updated by Listen1(https://listen1.github.io/listen1/) at 2022/3/13上午10:24:48

本歌单由Listen1创建, 歌曲数:211,歌单数:2,点击查看更多

@YeomanYe
YeomanYe / listen1_aha_playlist.md
Created January 16, 2022 14:51
updated by Listen1(https://listen1.github.io/listen1/) at 2022/1/16下午10:51:13

本歌单由Listen1创建, 歌曲数:204,歌单数:2,点击查看更多

@YeomanYe
YeomanYe / listen1_aha_playlist.md
Created November 26, 2021 08:30
updated by Listen1(https://listen1.github.io/listen1/) at 2021/11/26下午4:30:19

本歌单由Listen1创建, 歌曲数:204,歌单数:2,点击查看更多

@YeomanYe
YeomanYe / listen1_aha_playlist.md
Created October 15, 2021 14:09
updated by Listen1(https://listen1.github.io/listen1/) at 2021/10/15 下午10:09:33

本歌单由Listen1创建, 歌曲数:200,歌单数:2,点击查看更多

@YeomanYe
YeomanYe / IDB_Util.js
Created October 16, 2017 06:35
对IndexedDB的API简单的包装
var localDatabase = {};
localDatabase.indexedDB = window.indexedDB || window.webkitIndexedDB || window.mozIndexedDB || window.msIndexedDB;
localDatabase.IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange;
var debugMode = false;
const OPEN_DB_SUCCESS = "打开数据库成功!",
OPEN_DB_FAILURE = "打开数据库失败!",
NOT_OPEN_DB = "未打开数据库!",
INSERT_RECORD_SUCCESS = "插入数据成功!",
INSERT_RECORD_FAILURE = "插入数据失败!",
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
@YeomanYe
YeomanYe / ringWords.html
Last active October 16, 2017 07:20
HTML:font ringWords
<div class="circular">
circular reasoning works because
</div>
<script>
document.querySelectorAll('.circular').forEach(function(el) {
var NS = "http://www.w3.org/2000/svg";
var xlinkNS = "http://www.w3.org/1999/xlink";
var svg = document.createElementNS(NS, "svg");
var circle = document.createElementNS(NS, "path");