Skip to content

Instantly share code, notes, and snippets.

@asanoboy
asanoboy / resume.md
Last active July 7, 2023 07:38
asanoboyの履歴書
@asanoboy
asanoboy / engineer-requisition.md
Last active November 21, 2019 08:50
フラジェリンエンジニア募集要項

Job Description

製薬会社向けのクラウドサービス、Shaperon(シャペロン)の開発、運用のお仕事

技術スタック

  • Python/Flask/Sqlalchemy/black/mypy
  • Typescript/React/Redux/Redux-Saga/webpack/prettier
  • AWS/CDK/Fargate/CodePipeline

開発環境

@asanoboy
asanoboy / staging.py
Created December 3, 2012 12:21
Django Middleware to protect by HTTP Basic Authorization for staging.
from django.http import HttpResponse
from django.conf import settings
import base64
ID = settings.STAGING_HTTP_BASIC_AUTH_ID or False
PW = settings.STAGING_HTTP_BASIC_AUTH_PW or False
class AuthMiddleware(object):
def process_request(self, request):
@asanoboy
asanoboy / makewav.js
Created October 30, 2012 11:39
How to make a WAV file in Javascript.
var Wav = function(opt_params){
/**
* @private
*/
this._sampleRate = opt_params && opt_params.sampleRate ? opt_params.sampleRate : 44100;
/**
* @private
*/