Skip to content

Instantly share code, notes, and snippets.

View ChenYuHo's full-sized avatar

Elton Chen-Yu Ho ChenYuHo

View GitHub Profile
@sdondley
sdondley / tmux split-window subcommand.md
Last active June 10, 2024 00:21
Super Guide to the split-window tmux Subcommand (and Beyond)

Super Guide to the split-window tmux Subcommand (and Beyond)

Guide overview

tmux, like other great software, is deceptive. On the one hand, it's fairly easy to get set up and start using right away. On the other hand, it's difficult to take advantage of tmux's adanced features without spending some quality alone time with the manual. But the problem with manuals is that they aren't geared toward beginners. They are geared toward helping seasoned developers and computer enthusiasts quickly obtain the

@krsna1729
krsna1729 / cmake-dpdk-app.md
Last active January 31, 2024 21:07
compiling dpdk apps using cmake

Compiling DPDK and set environment var

cd dpdk
make config T=x86_64-native-linuxapp-gcc
make -j
export RTE_SDK=$(pwd)

Create CMakeLists.txt file for linking sample app with DPDK

@karpathy
karpathy / min-char-rnn.py
Last active June 11, 2024 01:44
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)
@dwayne
dwayne / a-modern-frontend-dev.md
Last active March 21, 2021 11:38
Articles, tutorials and tools for modern front-end development.

Problem: What does a Modern Front-End Development Workflow Look Like?

I want to start writing libraries and large applications using the JavaScript language. However, I don't know how to setup the project and which build tools to use. What I do know is that the JavaScript community has moved way beyond using browser developer tool plugins and strategically-placed console.log() statements to debug, test, and build code.

I need help.

Below, I will keep track of articles, tutorials and tools I come across as I search for a way to bring my front-end development chops up-to-date.

The Ultimate Resource