This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension UIImageView { | |
func topAlignmentAndAspectFit(to view: UIView) { | |
self.contentMode = .scaleAspectFill | |
self.translatesAutoresizingMaskIntoConstraints = false | |
view.addSubview(self) | |
self.addConstraints( | |
[NSLayoutConstraint(item: self, | |
attribute: .height, | |
relatedBy: .equal, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var request = require('request'); | |
var cheerio = require('cheerio'); | |
var url = 'https://www.costco.com.tw/Baby-Care-Kids-Toys/Toys/Infant-%26-Preschool/VTech-Sit-To-Stand-Ultimate-Alphabet-Train/p/105123'; | |
request(url, function(err, res, body){ | |
var $ = cheerio.load(body); | |
var result = $('.stock-status').text().trim(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Ball(x, y, radius, color) { | |
this.x = x; | |
this.y = y; | |
this.dx = 10; | |
this.dy = 10; | |
this.dxRange = this.dx * 2; | |
this.radius = radius; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##FILE SPACING: | |
# double space a file | |
sed G | |
# double space a file which already has blank lines in it. Output file | |
# should contain no more than one blank line between lines of text. | |
sed '/^$/d;G' | |
# triple space a file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import AVFoundation | |
class ViewController: UIViewController, AVCaptureMetadataOutputObjectsDelegate { | |
let session : AVCaptureSession = AVCaptureSession() | |
var previewLayer : AVCaptureVideoPreviewLayer! | |
var highlightView : UIView = UIView() | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//在Build Settings中找到“Other Linker Flags” | |
-Wl,-sectcreate,__RESTRICT,__restrict,/dev/null | |
//XCCONFIG | |
OTHER_LDFLAGS= $(inherited) -Wl -sectcreate __RESTRICT __restrict /dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>1. 請輸入地址,一行輸入一個地址</p> | |
<p> | |
<textarea rows="9" name="S1" cols="67" id="source">台北市信義區市府路1號</textarea> | |
</p> | |
<p>2. 請選擇輸出要不要加入地址? <input type="checkbox" id="c" name="c" value="ON">加上</p> | |
<p> | |
3. 點選 <input type="button" value="開始轉換" name="B1" onclick="trans();"> | |
</p> | |
<p>4. 地址轉換經緯度結果如下 (格式:Latitude,Longitude)</p> | |
<p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>App Redirection</title> | |
</head> | |
<body> | |
<!-- iframe used for attempting to load a custom protocol --> | |
<iframe style="display:none" height="0" width="0" id="loader"></iframe> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#---------------------------------------------------------- | |
# 檢查是否合併了 Enhancement,建立備份分支 | |
#---------------------------------------------------------- | |
# * Author: 羊小咩 Lamb-Mei | |
# * Update : 2014/12/20 | |
# * Description: 當合併了 Enhancement ,顯示警告跟建立備份用分支 | |
# | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*+-------------------- Bug 不要來 -------------------- | |
+ | |
+ | |
+ .//. .:oo/` | |
+ .++-` :hysho- .+hhoohs. `` | |
+ ````+o-/+. `oh:`-shoohhoooshy- `-oyy/` | |
+ `+so+oo- `` :ho.-+ymmsoosssh+` `:sdy+oh: | |
+ `+s. .+dmy+:.````..-/+-`:yds/oshy- | |
+ `-:+y: -oy+-.` ````.+o+so++y/` | |
+ .+yo:. -ss:` ```.-:odd+:::-. |
NewerOlder