Skip to content

Instantly share code, notes, and snippets.

View devxleo's full-sized avatar

devxleo devxleo

  • Beijing, China
View GitHub Profile
@devxleo
devxleo / dabblet.css
Created September 13, 2017 14:05
Untitled
// hello
@devxleo
devxleo / letter_frequency_table.js
Created December 7, 2015 12:40
English letter frequency table
//https://en.wikipedia.org/wiki/Letter_frequency#Relative_frequencies_of_letters_in_the_English_language
var letter_frequency_table = {
'a': 8.167,
'b': 1.492,
'c': 2.782,
'd': 4.253,
'e': 12.702,
'f': 2.228,
'g': 2.015,
'h': 6.094,
@devxleo
devxleo / dabblet.css
Created August 6, 2015 11:37
CSS Secret
/**
* CSS Secret
*/
body {
background-color: lightcoral;
}
@devxleo
devxleo / dabblet.css
Created August 6, 2015 11:37
CSS Secret
/**
* CSS Secret
*/
body {
background-color: lightcoral;
}
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Demo</title>
<style>
.bar {
-webkit-user-select: none;
-moz-user-select: none;
@devxleo
devxleo / ToDoList.md
Last active December 7, 2015 12:41
A to-do-list
  • JavaScript 的浮点数精度问题