Skip to content

Instantly share code, notes, and snippets.

View ko31's full-sized avatar
I want to play catch!

Ko Takagi ko31

I want to play catch!
View GitHub Profile
@ko31
ko31 / my-plugin.php
Created May 26, 2015 21:05
【WordPress】サンプルプラグイン
<?php
/*
Plugin Name: My Plugin
*/
add_filter( 'the_content', 'my_add_content' );
function my_add_content( $content ) {
$html = '<p>テストです。</p>';
return $html . $content;
@ko31
ko31 / tweet.php
Last active August 29, 2015 14:24
【PHP】TwitterOAuthからツイート投稿
<?php
// TwitterOAuthライブラリ読み込み
require "twitteroauth/autoload.php";
use Abraham\TwitterOAuth\TwitterOAuth;
// TwitterのAPIキー情報
$consumerKey = "【コンシューマキー】";
$consumerSecret = "【コンシューマシークレット】";
$accessToken = "【アクセストークン】";
$accessTokenSecret = "【アクセストークンシークレット】";
@ko31
ko31 / .htaccess
Created October 11, 2015 22:21
【WordPress】Disable access to wp-config.php
<files wp-config.php>
order allow,deny
deny from all
</files>
@ko31
ko31 / .htaccess
Created October 11, 2015 22:21
【WordPress】Disable access to readme.txt
<files readme.html>
order allow,deny
deny from all
</files>
@ko31
ko31 / wp-config.php
Created October 11, 2015 22:43
【WordPress】Disable file edit via wp-config.php
define('DISALLOW_FILE_EDIT',true);
@ko31
ko31 / .htaccess
Created October 12, 2015 21:23
【Apache】Prevent directory listing via .htaccess
Options All -Indexes
@ko31
ko31 / functions.php
Created October 13, 2015 00:35
【WordPress】ログインエラーメッセージを汎用的なものに変更する
function my_wp_error_msgs() {
return "ユーザー名かパスワードが正しくありません。";
}
add_filter( 'login_errors', 'my_wp_error_msgs' );
@ko31
ko31 / svgdata.js
Created October 18, 2015 23:15
【Lazy Line Painter】ころとん
/*
* Lazy Line Painter - Path Object
* Generated using 'SVG to Lazy Line Converter'
*
* http://lazylinepainter.info
* Copyright 2013, Cam O'Connell
*
*/
var pathObj = {
@ko31
ko31 / index.html
Created October 18, 2015 23:17
【Lazy Line Painter】ころとん
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>ころとん</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="jquery.lazylinepainter-1.7.0.min.js"></script>
<script src="svgdata.js"></script>
</head>
@ko31
ko31 / coroton.svg
Created October 18, 2015 23:30
【Lazy Line Painter】ころとん
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.