Skip to content

Instantly share code, notes, and snippets.

View igara's full-sized avatar

Syo Igarashi igara

View GitHub Profile
@igara
igara / file0.txt
Last active October 21, 2018 01:31
RailsプロジェクトをVSCodeからデバックできるようにする ref: https://qiita.com/igara/items/0c19b557e3d7cbc41233
{
"version": "0.2.0",
"configurations": [
{
"name": "Local - Listen for rdebug-ide",
"type": "Ruby",
"request": "attach",
"cwd": "${workspaceRoot}/rails",
"remoteHost": "0.0.0.0",
"remotePort": "1234",

2017/11/14 pmconfjp


・Sessionを聴講していて気づいた中で、
自分が大事だと考えたこと

ユーザ視点が足りていない
広い視野で見ること
PCで記載しにくいことは手書きでもメモする

IT Japan Expo 2017 秋 2017/11/9

セッション:越境EC 10:00〜11:30


急成長を続ける越境ECで行うべき「3つのこと」

トランスコスモス 神谷健志

EC市場を中国が抑えているがASEAN市場も抑えようとしている

Interop 2017
・Interop
5Gについての展示物なかった
・ShowNet
DAMBALLA Network Insight
 機械学習によるデータベースと独自の相関分析により、マルウェアに感染した端末を特定できる
@igara
igara / HogeClass.cs
Last active July 2, 2016 07:44
UnityのネイティブコードをSwiftで書こうとした時にはまったこと ref: http://qiita.com/igara/items/68b4d3efd53c118339b3
using UnityEngine;
using System.Runtime.InteropServices;
public class HogeClass {
[DllImport("__Internal")] // Unityで提供されているネイティブプラグイン
private static extern void hogeMethod_ (); // ネイティブコード上のメソッド
public static void hogeMethod () {
if (Application.platform != RuntimePlatform.OSXEditor) {
hogeMethod_ (); // ネイティブコード上のメソッドを呼び出す
@igara
igara / file0.txt
Last active June 4, 2016 08:04
Webの入力作業を楽したい... ref: http://qiita.com/igara/items/6e5e59b0c0129069c334
document.getElementsByClassName('fa fa-search')[0].click();
@igara
igara / file0.txt
Last active April 23, 2016 06:49
グラフィックツールで作成したSVGにアニメーションを付け加える ref: http://qiita.com/igara/items/1c614473e86460715ff9
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
@igara
igara / file0.txt
Last active April 18, 2016 11:04
[メモ]Inkscapeを使用してアニメーション付きデザインをSVGイメージ化する ref: http://qiita.com/igara/items/c0f723394926d4750ca2
<animateTransform
attributeName="transform"
begin="0s"
dur="1s"
type="translate"
from="0 0"
to="0 -50"
repeatCount="indefinite"
/>
@igara
igara / file0.txt
Created April 11, 2016 08:58
閲覧しているサイトのServiceWorkerの登録削除とCache APIのキャッシュを全て削除するJSコード ref: http://qiita.com/igara/items/9564008194c74e12551e
navigator.serviceWorker.getRegistrations().then(function(registrations) {
// 登録されているworkerを全て削除する
for(let registration of registrations) {
registration.unregister();
}
});
caches.keys().then(function(keys) {
var promises = [];
// キャッシュストレージを全て削除する
keys.forEach(function(cacheName) {