Skip to content

Instantly share code, notes, and snippets.

View naoyeye's full-sized avatar
🦾

J.Y Han naoyeye

🦾
View GitHub Profile
@naoyeye
naoyeye / break-word.css
Last active May 10, 2019 08:22 — forked from liveme/break-word.css
连续字符换行/不换行
/*强制不换行*/
div {
white-space: nowrap;
word-wrap: normal;
}
/*自动换行*/
div {
@naoyeye
naoyeye / JSONView Dark Theme.css
Last active November 22, 2017 06:07 — forked from timnew/JSONView Dark Theme.css
This is a dark theme for JSONView chrome extension
body {
white-space: pre;
font-family: "Source Code Pro", consolas;
color: white;
background: #2d3845;
font-size: 13px;
}
.property {
color: orange;
@naoyeye
naoyeye / get_douban_album_pic.py
Last active January 3, 2018 07:20 — forked from wenLiangcan/get_douban_album_pic.py
下载豆瓣相册图片
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Filename: get_douban_album_pic.py
import urllib2, re, os, sys
from os.path import basename
from urlparse import urlsplit
def fetch(url):
try: