Skip to content

Instantly share code, notes, and snippets.

@kaminaly
kaminaly / slide.md
Created June 20, 2017 04:53
for Frontend de KANPAI! #01

今日からはじめるShader

@kaminaly 安友 裕秋 SHIFTBRAIN Inc.


Shaderって何が出来るの

  • グラッフックスの演出(エフェクト)
  • Web
@kaminaly
kaminaly / 0_reuse_code.js
Last active August 29, 2015 14:19
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>トランジション遷移つきシングルページについてのご相談</title>
<style>
* {
margin: 0;
padding: 0;
@kaminaly
kaminaly / file0.txt
Last active November 22, 2018 03:55
gitで差分ファイルを抽出する ref: http://qiita.com/kaminaly/items/28f9cb4e680deb700833
git archive --format=zip --prefix=root/ HEAD `git diff --diff-filter=d --name-only HEAD^ HEAD` -o archive.zip
@kaminaly
kaminaly / file0.php
Created March 6, 2012 03:32
phpからwgetでPOST ref: http://qiita.com/items/3022
<?php
//POSTされたデータと、$_FILES['filedata']のデータ(jpgを想定)を
//wgetで他のサーバにPOSTするサンプル
//※fileの細かいチェックとか、判別とかは省いています。
$post_target = "https://example.com/hoge.api"
$postData = "";
$postFile = "";
$boundary = "-----=".md5(uniqid(rand()));