FE:
- http://feeds.feedburner.com/alistapart
- http://feeds.feedburner.com/cloudfour
- http://feeds.feedburner.com/sarasoueidan
- http://feeds.feedburner.com/2ality?format=xml
- http://feeds.feedburner.com/html5rocks
- https://davidwalsh.name/feed
- http://feeds.feedburner.com/nczonline
- http://feeds.feedburner.com/TheCSSNinja
- http://rmurphey.com/feed.xml
-
Color Highlighter.sublime-package
-
CSS3.sublime-package
-
Jade.sublime-package
-
Sass.sublime-package
-
SideBarFolders.sublime-package
-
Theme - Soda.sublime-package
-
Zeus.sublime-package
-
Babel
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
// Deep Copy https://jsperf.com/deep-copy-vs-json-stringify-json-parse | |
var copy = JSON.parse(JSON.stringify(targetObject)) | |
// Find and Modify Deeply Nested Object | |
JSON.parse(JSON.stringify(targetObject).replace(/replaceThis/g, 'toThis')) |
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 _isNaN(val){ | |
return val !== val | |
} |
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
/* | |
Copyright Vassilis Petroulias [DRDigit] | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software | |
distributed under the License is distributed on an "AS IS" BASIS, | |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
See the License for the specific language governing permissions and |
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
# 查看端口佔用 | |
sudo netstat -plunt | |
# 設置持久環境變量 | |
vim ~/.bash_proflle | |
export XXX=xxxxxx |
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/bash | |
####### Nginx ####### | |
# Install | |
sudo yum install epel-release | |
sudo yum install nginx | |
# Start | |
sudo systemctl start nginx.service | |
sudo firewall-cmd --permanent --zone=public --add-service=http | |
sudo firewall-cmd --permanent --zone=public --add-service=https | |
sudo firewall-cmd --reload |
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
iconv -f utf8 -t utf16 /path/to/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
//::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
//::: ::: | |
//::: This routine calculates the distance between two points (given the ::: | |
//::: latitude/longitude of those points). It is being used to calculate ::: | |
//::: the distance between two locations using GeoDataSource (TM) prodducts ::: | |
//::: ::: | |
//::: Definitions: ::: | |
//::: South latitudes are negative, east longitudes are positive ::: | |
//::: ::: | |
//::: Passed to function: ::: |
NewerOlder