- 近藤うちお
- 著書に、以下があります
- やわらかHubot https://gist.github.com/udzura/0cb2447c305c51670414
Moved to Shopify/graphql-design-tutorial
This file contains 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/env python3 | |
# -*- coding: utf-8 -*- | |
import urllib.request, urllib.error, urllib.parse | |
import os, sys, datetime, argparse, re | |
import subprocess | |
import base64 | |
import shlex | |
import logging | |
from sys import argv |
通信をキャプチャして調べた。似たようなことをしている人が既にいて仕組みについてはサービス提供者側が説明されているとおりだった。
- http://www.orario.jp/system/
- https://twitter.com/mage_1868/status/853992239369830404
- https://twitter.com/mage_1868/status/854028454081159169
IDパスワードはネイティブUIで表示して、html中のどこに入力するかなどはリモートから受信するjsで定義している。特に難読化や独自の暗号化などがされているわけではない。
This file contains 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
/** | |
* PostCSS の設定ファイル | |
*/ | |
const doiuse = require('doiuse'); | |
const cssnano = require('cssnano'); | |
const reporter = require('postcss-reporter'); | |
const easyImport = require('postcss-easy-import'); | |
const atApply = require('postcss-apply'); | |
const autpPrefixer = require('autoprefixer'); | |
const customProperties = require('postcss-custom-properties'); |
This file contains 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
document.addEventListener('DOMContentLoaded', function(){ | |
// imgタグ一覧を取得 | |
var _images = document.getElementsByTagName('img'); | |
// _imagesがオブジェクト(ノードリスト)なので配列に変換する | |
var _imagesArray = Array.prototype.slice.call(_images); | |
// _imagesArrayをforEachで回す | |
// 正規表現にマッチしたら、画像URLの拡張子直前の数字を全部1280に書き換え | |
_imagesArray.forEach(function(element, index, array){ |
This file contains 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
module.exports = { | |
development: { | |
client: 'postgresql', | |
connection: { | |
port: process.env.DATABASE_PORT, | |
host: process.env.DATABASE_HOST, | |
database: process.env.DATABASE_NAME, | |
user: process.env.DATABASE_USER, | |
password: process.env.DATABASE_ACCESS_KEY, | |
}, |
2015年11月17日からインスタグラムの提供しているAPIの仕様が大幅に変更されました。
仕様変更する前までは、インスタグラムのアカウント所有者であれば誰でも、開発者登録をするだけでAPI機能の全てを使用することができましたが、今回の変更で、APIの正式利用にはインスタグラムにレビューの申請をして承認されることが必須となりました。
また、17日以前に作成したアプリケーション・サービスについても、2016年6月1日までに申請し承認されなければ、自動的にテスト(サンドボックス)モードに切り替わるようです。
英語でしか表記のなかった規約の一部を日本語に翻訳したので、まとめておきます。
NewerOlder