Skip to content

Instantly share code, notes, and snippets.

View noboru-i's full-sized avatar
🏠
Always working from home

Noboru ISHIKURA noboru-i

🏠
Always working from home
View GitHub Profile
@mugi-uno
mugi-uno / remote-work-style-check.md
Last active October 10, 2022 11:26
リモートワークスタイルチェック

リモートワークスタイルチェック

昨今の社会情勢の影響もありリモートワークを導入する企業・チームが増えてきましたが、 一口に「リモートワーク」といってもさまざまなスタイルがあります。

企業側と働く側のミスマッチを防ぐため、リモートワークにおける観点を列挙してみました。

リモートワーク比重度

どの程度リモートワークに比重を置いて導入しているかのチェックリストです。

@kaiinui
kaiinui / eventbus.md
Last active March 3, 2017 03:54
Android開発いろいろ

EventBus

EventBus は必ず onStart()onStop() で呼ぶ。バックグラウンドで色々動かれて困る。 また、onStop() では super.onStop() よりも 先に 呼ぶ。

@Override
protected void onStart() {
 super.onStart();
@Twinuma
Twinuma / credential.txt
Last active August 29, 2015 14:06
RDS自動Snapshot取得シェル
AWSAccessKeyId=your AccessKey
AWSSecretKey=your SecretKey
@Twinuma
Twinuma / ami-ebs-backup.php
Last active August 29, 2015 14:06
AMIとSnapshotを自動取得。tagに"Backup-Generation/世代設定"をすることで可能。
#!/usr/bin/php
<?php
// 初期設定
require_once("/opt/aws/AWSSDKforPHP/sdk.class.php");
date_default_timezone_set("Asia/Tokyo");
$ec2 = new AmazonEC2(array(
"key" => "YOUR ACCESS KEY",
"secret" => "YOUR SECRET KEY"
));
$ec2->set_region(AmazonEC2::REGION_APAC_NE1);
@blundell
blundell / VideoView Buffering Spinner
Created January 21, 2014 12:29
Adding a progress spinner to a video view for before it starts or whilst it is buffering.
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<VideoView
android:id="@+id/my_video_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center" />
@k4200
k4200 / fabfile.py
Last active November 28, 2021 10:31
fabfile.py for Play! framework 2.2 multi-project settings.
from fabric.api import local, env, run, roles, execute, put
from fabric.utils import abort
env.user = "playuser"
env.roledefs = {
'web': ['web.example.com'],
'batch': ['batch.example.com']
}
env.num_of_releases = 3
@voluntas
voluntas / django-s3-imagekit-celery.rst
Last active May 13, 2022 13:46
S3 と非同期サムネイル作成 コトハジメ

S3 と非同期サムネイル作成 コトハジメ

更新:2013-12-08
バージョン:0.1.8
作者:@voluntas
URL:http://voluntas.github.io/

概要

@rummelonp
rummelonp / undersky.md
Last active September 5, 2025 05:28
Ubuntu+Nginx+Unicorn+Rails+Capistrano