Skip to content

Instantly share code, notes, and snippets.

@buoge
buoge / dlmusic
Created May 29, 2016 04:50 — forked from vetch/dlmusic
download 320kbps music from xiami.com
#!/usr/bin/env python
#-*-coding:utf8-*-
"""
vesion2.0
这个脚本的作用是通过输入某首歌页面的url,来实现这首歌的下载,保存到当前工作目录下。
目前可以实现高音质音乐的下载,无须账号登陆。
比如,When I'm Sixty-Four的页面的url是 http://www.xiami.com/song/1003908
download_hq_music('http://www.xiami.com/song/1003908'),将会实现When I'm Sixty-Four的320k版本下载
@buoge
buoge / NSAttributedString+Hyperlink.swift
Created November 5, 2015 11:47 — forked from Isuru-Nanayakkara/NSAttributedString+Hyperlink.swift
This is the Swift translation of the Apple's code snippet (https://developer.apple.com/library/mac/qa/qa1487/_index.html) displaying how to embed hyperlinks in NSTextField and NSTextView.
import Foundation
import UIKit
public enum UIButtonBorderSide {
case Top, Bottom, Left, Right
}
extension UIButton {
public func addBorder(side: UIButtonBorderSide, color: UIColor, width: CGFloat) {