Skip to content

Instantly share code, notes, and snippets.

View ishikawam's full-sized avatar

M_Ishikawa ishikawam

View GitHub Profile
(function() {
'use strict';
var aa = encodeURIComponent,
ba = navigator,
ca = Error,
da = parseFloat,
ea = Object,
k = Math,
m = window,
ga = parseInt,
@ishikawam
ishikawam / awesome diff
Created August 23, 2012 10:21
word-diff and color-diff
wdiff -n foo bar | colordiff
@extends('layouts.master')
@section('content')
@foreach ($users as $user)
<p>This is user</p>
@endforeach
@endsection
{% extends "layouts.master" %}
{% block content %}
{% for user in users %}
<p>This is user {{ user.id }}</p>
{% endfor %}
{% endblock %}
@forelse ($user in $user)
@if(!$user->subscribed)
{{ $user->name }}
@endif
@empty
<p>No users found</p>
@endforelse
{% for user in users %}
{% if not user.subscribed %}
{{ user.name }}
{% endif %}
{% else %}
<p>No users found</p>
{% endfor %}
@ishikawam
ishikawam / form.sql
Last active July 22, 2017 05:05
form database
form database
####################################################################
# Dump of table branch
# ------------------------------------------------------------
CREATE TABLE `branch` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`NAME` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
// ==UserScript==
// @name Replace 4 spaces with a tab character for Slack.
// @namespace M_Ishikawa
// @version 0.1
// @description Slack 4スペースをタブ文字に変換
// @author Masayuki Ishikawa
// @match https://*.slack.com/*
// @grant none
// ==/UserScript==
@ishikawam
ishikawam / file0.txt
Last active May 19, 2018 17:47
homebrew/phpがdeprecatedになってしまった件 ref: https://qiita.com/M_Ishikawa/items/e8e6081ca2897bb266eb
% brew link php71
Warning: php@7.1 is keg-only and must be linked with --force
Note that doing so can interfere with building software.
If you need to have this software first in your PATH instead consider running:
echo 'export PATH="/usr/local/opt/php@7.1/bin:$PATH"' >> ~/.zshrc
echo 'export PATH="/usr/local/opt/php@7.1/sbin:$PATH"' >> ~/.zshrc
% php -v
PHP 7.0.29 (cli) (built: Apr 12 2018 03:13:39) ( NTS )
@ishikawam
ishikawam / gist:52336f4bb365addc48ed73a231dcd1a3
Created September 7, 2018 02:58
LIMIAに複数の写真がある場合にヘッダに表示するJS
// ==UserScript==
// @name LIMIA show multiple photos
// @namespace M_Ishikawa
// @version 0.1
// @description hoge
// @author Masayuki Ishikawa
// @match https://limia.jp/photo/*
// @grant none
// ==/UserScript==