Skip to content

Instantly share code, notes, and snippets.

View duclos-cavalcanti's full-sized avatar
💭
Hi!

Daniel Duclos-Cavalcanti duclos-cavalcanti

💭
Hi!
View GitHub Profile
@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

@bartj3
bartj3 / .tmux.conf
Created March 25, 2015 11:35
Hide tmux status bar when zoomed in on a pane
bind-key z resize-pane -Z \; if-shell "tmux list-panes -F '#F' | grep -q Z" "set -g status off" "set -g status on"