Skip to content

Instantly share code, notes, and snippets.

@Aserun
Aserun / joining_google.md
Created August 22, 2019 09:04
私はこうしてGoogleに入った (K)

※Googleを受けた体験というよりも、シリコンバレーでGoogle含めたIT企業のエンジニアポジションを受けた体験を述べております。Googleに特化した就活体験が聞きたい方は回れ右をお勧めします

目次:

  • 対策
  • 困難だった点
  • 如何にして最初の一社のオファーを貰うか?
  • 終わりに:現在とこれから

対策

@Aserun
Aserun / compile_ffmpeg.md
Created March 16, 2019 11:07 — forked from teocci/compile_ffmpeg.md
Compile FFmpeg on Ubuntu 16.04

Compile FFmpeg on Ubuntu

This basic guide supports Ubuntu Xenial Xerus 16.04 and will enable several external encoding and decoding libraries: libfaac (AAC encoder), libfdk-aac (AAC encoder), libmp3lame (MP3 encoder), libopencore-amr (AMR encoder/decoder), librtmp (for additional RTMP protocols), libtheora (Theora encoder), libvorbis (Vorbis encoder), libvpx (VP8 encoder/decoder), and libx264 (H.264 encoder). These are optional and may be omitted if desired. This guide will also install many filters (see the filter list in the [Filtering Guide][1].

Note: Copy and paste the whole code box for each step.

Preparation

@Aserun
Aserun / vProjectile.cs
Created September 6, 2018 02:24 — forked from johnlanz/vProjectile.cs
Shooting Projectile using invector melee
using UnityEngine;
using System.Collections;
public class vProjectile : MonoBehaviour
{
public GameObject particleOnCollision;
public float speed = 10f;
void Start()
{
@Aserun
Aserun / vFireProjectile.cs
Created September 6, 2018 02:24 — forked from johnlanz/vFireProjectile.cs
Shoot Projectile using invector melee
using UnityEngine;
using System.Collections;
public class vFireProjectile : MonoBehaviour
{
public Transform spawnPoint;
public GameObject fireProjectile;
private vMeleeManager manager;
void Start()
@Aserun
Aserun / amazon-calc.js
Created December 13, 2017 07:19 — forked from koyopro/amazon-calc.js
Amazonで一年間に使った金額と、注文履歴のTSVを出力するブックマークレット【2015年版】
// Amazonの注文履歴をTSV形式で出力するスクリプト
//
// 2015-01-01 時点での DOM 構造に対応, GoogleCrome, Opera でテスト済。
// formatEntry関数を書き換えれば自由な書式で出力できます。
//
// 参考:
// - Amazonの注文履歴をCSV形式にして出力するスクリプト
// https://gist.github.com/arcatdmz/8500521
// - Amazon で使った金額の合計を出す奴 (2014 年バージョン)
// https://gist.github.com/polamjag/866a8af775c44b3c1a6d