Skip to content

Instantly share code, notes, and snippets.

View leiless's full-sized avatar
🎯
Focusing

Fishbone° leiless

🎯
Focusing
  • Shanghai, China
  • 22:12 (UTC +08:00)
View GitHub Profile
@leiless
leiless / windows-rs-start-menu-path.rs
Created August 22, 2023 03:20
Get Start Menu path with windows-rs
fn main() -> Result<(), Box<dyn std::error::Error>> {
let guids = vec![
windows::Win32::UI::Shell::FOLDERID_StartMenu, // Current user
windows::Win32::UI::Shell::FOLDERID_CommonStartMenu, // All user
];
for guid in guids {
let start_menu_path = unsafe {
windows::Win32::UI::Shell::SHGetKnownFolderPath(
&guid as _,
@leiless
leiless / maintain_top_k.rs
Created August 8, 2023 02:45
Rust maintain top K elements on the fly
use std::cmp::Reverse;
use std::collections::BinaryHeap;
#[inline]
fn maintain_top_k<T: Ord>(min_heap: &mut BinaryHeap<Reverse<T>>, val: T, top_k: usize) {
if min_heap.len() < top_k {
min_heap.push(Reverse(val));
} else if top_k > 0 && val > min_heap.peek().unwrap().0 {
min_heap.pop();
min_heap.push(Reverse(val));
@leiless
leiless / env_logger_demo.rs
Created June 30, 2023 07:16
Rust: log + env_logger + color-backtrace
use std::io::Write;
struct FileStream {
file: std::fs::File,
}
impl FileStream {
fn new<S: AsRef<std::path::Path>>(s: S) -> std::io::Result<Self> {
//let file = std::fs::File::create(s)?;
let file = std::fs::File::options().create(true).append(true).open(s)?;
@leiless
leiless / ping_service.rs
Last active June 20, 2023 09:12
UDP ping service: windows_service + tokio async runtime
use windows_service::service::{
ServiceType,
ServiceControl,
ServiceStatus,
ServiceState,
ServiceControlAccept,
ServiceExitCode,
};
use windows_service::service_control_handler::ServiceControlHandlerResult;
@leiless
leiless / rdtsc_ticks_per_second.c
Last active May 17, 2023 07:39
_rdtsc ticks per second estimation
#include <stdio.h>
#include <stdint.h>
#include <unistd.h>
#include <assert.h>
#define N 10
#define SIZE_OF(a) (sizeof(a) / sizeof(*a))
int main(void) {
uint64_t arr[N] = {};
@leiless
leiless / 01.bash_shortcuts_v2.md
Created February 6, 2023 11:18 — forked from tuxfight3r/01.bash_shortcuts_v2.md
Bash keyboard shortcuts

Bash Shortcuts

visual cheetsheet

Moving

command description
ctrl + a Goto BEGINNING of command line
@leiless
leiless / cpuid_vendor_id.c
Last active October 27, 2024 05:31
Get CPU vendor ID string (works in Linux, Windows, macOS)
#include <stdio.h>
#ifdef _WIN32
#include <intrin.h> // __cpuid()
#endif
typedef unsigned int cpuid_t[4];
#define EAX 0
#define EBX 1
@leiless
leiless / tui_user_input_inline_viewport.git.diff
Last active October 19, 2022 03:40
tui-rs examples/user_input.rs inline viewport version (git diff)
diff --git a/examples/user_input.rs b/examples/user_input.rs
index 330d502..22d2739 100644
--- a/examples/user_input.rs
+++ b/examples/user_input.rs
@@ -12,7 +12,7 @@
use crossterm::{
event::{self, DisableMouseCapture, EnableMouseCapture, Event, KeyCode},
execute,
- terminal::{disable_raw_mode, enable_raw_mode, EnterAlternateScreen, LeaveAlternateScreen},
+ terminal::{disable_raw_mode, enable_raw_mode},
#include <errno.h>
#include <poll.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/inotify.h>
#include <unistd.h>
#include <string.h>
/* Read all available inotify events from the file descriptor 'fd'.
wd is the table of watch descriptors for the directories in argv.
@leiless
leiless / ipv4_ipv6_doh_doq.md
Last active March 4, 2025 00:48
List of direct IPv4/IPv6 DoH/DoQ

dns.google / 8888.google

8.8.4.4
8.8.8.8
2001:4860:4860:0:0:0:0:64
2001:4860:4860:0:0:0:0:6464
2001:4860:4860:0:0:0:0:8844
2001:4860:4860:0:0:0:0:8888