Checklist:
- ✅ WIFI
- ✅ Ethernet
- ✅ Display
- ✅ Touchpad
- ✅ USB (2 & 3)
- ❓ HDMI (Video works, haven't bothered to fix audio yet)
- ✅ Sleep
- ✅ Audio (No microphone)
Checklist:
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
brew tap homebrew/versions | |
brew search gradle | |
brew install homebrew/versions/gradle112 | |
gradle -version | |
brew link --overwrite gradle112 | |
gradle -version |
// ==UserScript== | |
// @name rm2mag1024 | |
// @namespace http://djyde.github.io/ | |
// @version 0.1.1 | |
// @description Automatically convert rmdown to magnet and show on the top of 1024 page | |
// @author Randy | |
// @match http://t66y.com/htm_data/* | |
// @grant none | |
// ==/UserScript== |
git branch -m old_branch new_branch # Rename branch locally | |
git push origin :old_branch # Delete the old branch | |
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote |
Upto what whole number would you like your times table? 10 | |
------------------------------------------------------------------------ | |
| 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | | |
------------------------------------------------------------------------ | |
| 2 | 4 | 6 | 8 | 10 | 12 | 14 | 16 | 18 | 20 | | |
------------------------------------------------------------------------ | |
| 3 | 6 | 9 | 12 | 15 | 18 | 21 | 24 | 27 | 30 | | |
------------------------------------------------------------------------ | |
| 4 | 8 | 12 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | |
a:link, a:visited, a:active { | |
color: #8e8d93; | |
-webkit-transition: all .15s; | |
-moz-transition: all .15s; | |
-ms-transition: all .15s; | |
-o-transition: all .15s; | |
transition: all .15s; | |
} | |
a.top:link, a.top:visited, a.top:active { | |
color: #000; |
#!/usr/bin/env python | |
#coding:utf-8 | |
import os,time,socket | |
import urllib,re | |
urlList = ['http://jandan.net/ooxx/page-%d' % i for i in range(1, 911)] | |
globnum = 1 |