Skip to content

Instantly share code, notes, and snippets.

@uni-3
uni-3 / bipartite_test_data.ipynb
Created January 13, 2020 10:32
bipartite_test_data.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@uni-3
uni-3 / networkx_spectralclustering.ipynb
Last active May 17, 2020 18:33
networkx_spectralclustering.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@uni-3
uni-3 / implicit.ipynb
Last active March 3, 2022 18:51
implicit.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@uni-3
uni-3 / causalml_ate.ipynb
Last active May 17, 2020 18:34
causalml_ate.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
//refer https://flutter.dev/docs/development/ui/animations/tutorial
import 'dart:ui';
import 'package:flutter/animation.dart';
import 'package:flutter/material.dart';
void main() => runApp(LogoApp());
class LogoApp extends StatefulWidget {
_LogoAppState createState() => _LogoAppState();
@uni-3
uni-3 / bayesian_ab.ipynb
Created May 17, 2020 18:31
bayesian_ab.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@uni-3
uni-3 / pytrend.ipynb
Last active May 31, 2020 22:58
pytrend.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@uni-3
uni-3 / download_s3.py
Created July 6, 2020 12:40
download from s3
# codinf: utf-8
import boto3
from boto3.session import Session
BUCKET = 'bucket'
PATHS = ['data/test.csv']
session = Session(
aws_access_key_id='',
aws_secret_access_key='',
@uni-3
uni-3 / ginza_mrph.ipynb
Created July 25, 2020 07:54
ginza_mrph.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@uni-3
uni-3 / Dockerfile.gcloud
Created July 27, 2020 08:02
docker file for gcloud and python3
FROM google/cloud-sdk:latest
ENV PYTHONUNBUFFERED=1
ENV PYTHONHASHSEED=14
WORKDIR /app/src
# python3
RUN apt-get update \
&& apt-get install -y python3-pip python3-dev python3-venv python3-wheel \