Skip to content

Instantly share code, notes, and snippets.

@asanoboy
asanoboy / agent loop
Created March 10, 2025 04:43 — forked from jlia0/agent loop
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@asanoboy
asanoboy / resume.md
Last active January 15, 2025 01:47
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
*/