This file contains hidden or 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
| #!/usr/bin/perl | |
| # Author: Kyo Nagashima <[email protected]>, http://hail2u.net/ | |
| # xaicron, http://blog.livedoor.jp/xaicron/ | |
| # License: MIT license (http://opensource.org/licenses/mit-license.php) | |
| # Modified: 2009-11-17T23:09:27+09:00 | |
| use strict; | |
| use warnings; |
This file contains hidden or 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
| The following shell command invites you to the mysql prompt ( Default password is root ) | |
| /Applications/MAMP/Library/bin/mysql -u root -p | |
| The following mysql command creates an empty mt database | |
| CREATE DATABASE mt DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci; |
This file contains hidden or 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
| cd /Applications/MAMP/cgi-bin/mt/ | |
| find . -name "*.cgi" -exec perl -pi -e "s,\#\!\/usr\/bin\/perl -w,\#\!\/Applications\/MAMP\/Library\/bin\/perl -w," {} \; |
This file contains hidden or 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
| delay 0.05 | |
| tell application "Coda 2" to activate | |
| tell application "System Events" | |
| keystroke "p" using {command down, control down} | |
| end tell |
This file contains hidden or 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
| <video class="asvideo-ended" crossorigin="anonymous" itemscope="itemscope" itemtype="http://schema.org/VideoObject" preload="none" width="540" height="540" poster="http://store.storeimages.cdn-apple.com/8311/as-images.apple.com/is/image/AppleInc/aos/published/images/i/ph/iphone6s/web/iphone6s-web-360?wid=540&hei=540&fmt=png-alpha&qlt=95&.v=1441814332773"> | |
| <source itemprop="contentUrl" src="http://store.storevideos.cdn-apple.com/v1/store.apple.com/media/video/iphone6s-web-360/iphone6s-web-360.mp4" type="video/mp4"> | |
| <source itemprop="contentUrl" src="http://store.storevideos.cdn-apple.com/v1/store.apple.com/media/video/iphone6s-web-360/iphone6s-web-360.WebM" type="video/webm"> | |
| <object width="540" height="540" data="http://store.storevideos.cdn-apple.com/v1/store.apple.com/media/video/iphone6s-web-360/iphone6s-web-360.mov" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=7,3,0,0"> | |
| <param name="src" value="http:/ |
This file contains hidden or 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
| <?php | |
| function get_holidays_this_month($year, $month){ | |
| // 月初日 | |
| $first_day = mktime(0, 0, 0, intval($month), 1, intval($year)); | |
| // 月末日 | |
| $last_day = strtotime('-1 day', mktime(0, 0, 0, intval($month) + 1, 1, intval($year))); | |
| $api_key = 'YOUR API KEY HERE'; | |
| $holidays_id = '[email protected]'; // mozilla.org版 |
This file contains hidden or 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 add_upload_mimes($mimes=array()) { | |
| $mimes['kml']='application/vnd.google-earth.kml+xml'; | |
| $mimes['kmz']='application/vnd.google-earth.kmz'; | |
| return $mimes; | |
| } | |
| add_filter("upload_mimes","add_upload_mimes"); |
This file contains hidden or 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
| find . -name "._*" -exec rm -f {} \; |
This file contains hidden or 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 | |
| ################################################################################ | |
| # Microsoft TrueType core fonts installation helper for Fedora Linux | |
| # | |
| # This script is installing the fonts without any untrustworthy 3rd-party RPMs | |
| # or build-hazzle. I think it is useful because the MS core web fonts are not | |
| # included in the main repositories (licensing issues). And (IMHO), it is a bit | |
| # extreme to build a package on your own just to install a few fonts. This | |
| # script is inspired by |
This file contains hidden or 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
| <xsl:template name="foo_bar"> | |
| <xsl:text disable-output-escaping="yes"><!DOCTYPE html></xsl:text> | |
| </xsl:template> |
OlderNewer