Skip to content

Instantly share code, notes, and snippets.

View kazuph's full-sized avatar

Kazuhiro Homma kazuph

View GitHub Profile
@kazuph
kazuph / script.js
Created October 24, 2019 12:38
Chrome Extension Script Auto RunnerでSafari(O'Reilly)が日本語に翻訳されたあともNext/Prev/目次のリンクを有効にする
// load "//code.jquery.com/jquery-3.4.1.min.js"
let rebindClickEvent = () => {
$('a.next').on('click', () => location.href = $('a.next')[0].href );
$('a.prev').on('click', () => location.href = $('a.prev')[0].href );
$('li.toc-level1').map((i, li) => {
$(li).on('click', () => location.href = $(li).children()[0].href )
})
console.log("rebind")
}
setTimeout(rebindClickEvent, 1000 * 5);
@kazuph
kazuph / esa2esa.rb
Last active March 23, 2017 00:12
esaを一度解約したが、再度使い始めたときに使うスクリプト(ExportデータをそのままImport)
#!/usr/bin/env ruby
# coding : utf-8
require 'esa'
require 'yaml'
class Importer
attr_accessor :client, :files
def initialize(client, dir_path)
@client = client
@kazuph
kazuph / puma
Created December 24, 2016 03:47
puma init
#!/bin/sh
#
# puma - this script starts and stops the puma daemon
#
# chkconfig: - 85 15
# description: Description \
# goes here...
# processname: puma
# config: /etc/puma.conf
# pidfile: /home/stanislaw/apps/micro-apps/puma/puma.pid
"dein Scripts-----------------------------
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath^=/home/pi/.dein/repos/github.com/Shougo/dein.vim
" Required:
call dein#begin(expand('/home/pi/.dein'))
@kazuph
kazuph / github_issues_to_csv.rb
Last active September 9, 2015 06:07 — forked from tkarpinski/github_issues_to_csv.rb
Exports Github issues to CSV (API v3)
#!/usr/bin/env ruby
# coding : utf-8
require 'octokit'
require 'csv'
require 'date'
# Github credentials to access your private project
USERNAME="USER_NAME"
PASSWORD="SEKRIT"
# Project you want to export issues from
@kazuph
kazuph / README.md
Created August 31, 2015 12:35
ElixirShakyo

Elixirの写経をする

// Alamofire.swift
//
// Copyright (c) 2014 Alamofire (http://alamofire.org)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
@kazuph
kazuph / AES.c
Last active August 29, 2015 14:10 — forked from bricef/AES.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*
* MCrypt API available online:
* http://linux.die.net/man/3/mcrypt
*/
#include <mcrypt.h>
@kazuph
kazuph / file0.txt
Last active August 29, 2015 14:06
Wordpressの初回設定をサクッと済ませるスクリプト ref: http://qiita.com/kazuph/items/c95f6e90238fceed2674
# pwd
/var/www/html
# ls
wordpress
@kazuph
kazuph / Hoge.h
Created August 16, 2014 09:23
AFNetworkingをViewControllerに書かないでModelに書きたいとき ref: http://qiita.com/kazuph/items/2cc92622a298079aad5e
#import "AFHTTPSessionManager.h"
@interface Hoge : NSObject
+ (Hoge*)sharedClient;
- (void)hogeWithId:(NSString *)hogeId completion:(void (^)(NSDictionary *results, NSError *error))block;
@end