Skip to content

Instantly share code, notes, and snippets.

View DeepDuke's full-sized avatar
πŸ€’
Out sick May be slow to response

DeepDuke DeepDuke

πŸ€’
Out sick May be slow to response
View GitHub Profile
@rxaviers
rxaviers / gist:7360908
Last active October 29, 2025 12:13
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@zkytony
zkytony / ROS_Python.md
Last active October 10, 2023 20:46
Import python modules between ROS packages

Reference: Installing Python scripts and modules

Package structure

β”œβ”€β”€ my_pkg
β”‚Β Β  β”œβ”€β”€ setup.py
β”‚Β Β  β”œβ”€β”€ scripts
β”‚   β”‚   └── executable_script
 └── src
@avidLearnerInProgress
avidLearnerInProgress / template.cpp
Created June 1, 2019 13:14
Competitive programming C++ template
#include <bits/stdc++.h> // Include every standard library
using namespace std;
typedef long long LL;
typedef pair<int, int> pii;
typedef pair<LL, LL> pll;
typedef pair<string, string> pss;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<pii> vii;