Skip to content

Instantly share code, notes, and snippets.

View robot007's full-sized avatar
๐Ÿ˜€
working

Zhen Song robot007

๐Ÿ˜€
working
View GitHub Profile
@robot007
robot007 / CMU_ECE_CoursesCareerTrack.md
Last active June 25, 2024 14:19
CMU ECE Courses Career Track

Motivation

Career Path Code

Career Role/Tech field 1. Signal & System 2. Embedded system 3. VLSI/IC design 4. Robotics/AI
A. Professor(Academic Research) A1 A2 A3 A4
B. Industrial research(Company/national labs) B1 B2 B3 B4
C. Startup C1 C2 C3 C4
D. Manager D1 D2 D3 D4
@jb0gie
jb0gie / flutter.md
Created February 23, 2019 00:27 — forked from matteocrippa/flutter.md
Flutter Cheatsheet

Flutter

A quick cheatsheet of useful snippet for Flutter

Widget

A widget is the basic type of controller in Flutter Material. There are two type of basic Widget we can extend our classes: StatefulWidget or StatelessWidget.

Stateful

StatefulWidget are all the widget that interally have a dynamic value that can change during usage. It can receive an input value in the constructor or reference to functions. You need to create two classes like:

@karpathy
karpathy / min-char-rnn.py
Last active May 30, 2025 08:42
Minimal character-level language model with a Vanilla Recurrent Neural Network, in Python/numpy
"""
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy)
BSD License
"""
import numpy as np
# data I/O
data = open('input.txt', 'r').read() # should be simple plain text file
chars = list(set(data))
data_size, vocab_size = len(data), len(chars)