Skip to content

Instantly share code, notes, and snippets.

View flukejones's full-sized avatar

Luke Jones flukejones

View GitHub Profile
@flukejones
flukejones / 0001-HID-amd_sfh-Add-support-for-tablet-mode-switch-senso.patch
Created February 12, 2025 02:55
0001-HID-amd_sfh-Add-support-for-tablet-mode-switch-senso.patch
This patch adds support for the tablet mode switch sensors on
convertible devices where that sensor is managed by AMD SFH, like the
Asus Flow X13 and the Lenovo ThinkPad L13 Yoga Gen2 (AMD).
Co-developed-by: Ivan Dovgal <[email protected]>
Signed-off-by: Ivan Dovgal <[email protected]>
Co-developed-by: Luke D. Jones <[email protected]>
Signed-off-by: Luke D. Jones <[email protected]>
Signed-off-by: Adrian Freund <[email protected]>
---
@flukejones
flukejones / Profile Rust on Linux.md
Created July 29, 2023 00:31 — forked from KodrAus/Profile Rust on Linux.md
Profiling Rust Applications

Profiling performance

Using perf:

$ perf record -g binary
$ perf script | stackcollapse-perf.pl | rust-unmangle | flamegraph.pl > flame.svg

NOTE: See @GabrielMajeri's comments below about the -g option.

#/etc/udev/rules.d/99-nvidia-ac.rules
# Stop nvidia_powerd on battery
SUBSYSTEM=="power_supply",ENV{POWER_SUPPLY_ONLINE}=="0",RUN+="/usr/bin/systemctl --no-block stop nvidia-powerd.service"
# Start nvidia_powerd on AC
SUBSYSTEM=="power_supply",ENV{POWER_SUPPLY_ONLINE}=="1",RUN+="/usr/bin/systemctl --no-block start nvidia-powerd.service"
@flukejones
flukejones / gist:daa41b25bc74e916d63ac02692d62070
Created November 22, 2019 10:24
Asseto Corsa hardware report
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Laptop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Core(TM) i7-8750H CPU @ 2.20GHz
CPU Family: 0x6
.primary-bg {
background-color: #3fa1a5; }
.workspace-button {
padding: 2px; }
.workspace-button.active {
background-color: rgba(255, 255, 255, 0.32); }
.workspace-button.active .workspace-icon {
color: white; }

Keybase proof

I hereby claim:

  • I am luke-nukem on github.
  • I am luke_jones (https://keybase.io/luke_jones) on keybase.
  • I have a public key whose fingerprint is E209 5AD4 C48A D6B6 0930 887F 0562 944A C278 E22C

To claim this, I am signing this object:

#!/usr/bin/ion
let pwd = @(pwd)
for dir in @split(@(exa -D))
cd $pwd/$dir
echo -e "\nIn $pwd/$dir"
if test -f Cargo.toml && not test -f rust-toolchain
echo -e "Cleaning $dir"
cargo clean
@flukejones
flukejones / inheritance.rs
Last active February 21, 2019 21:40 — forked from MCluck90/inheritance.rs
Inheritance-like problem in Rust
/// Problem: there is a lot of duplication in function implementations.
/// The two types should have the same interface but use a different underlying type.
///
/// How can I reduce the amount of duplication and avoid having to update the code in two places?
/// In other languages, I would define a base class which accepts a generic type for the `SoundSource`s
/// but I don't know how to solve this sort of problem in Rust.
struct Sound {
// Shared properties
is_playing: bool,
@flukejones
flukejones / .vimrc
Created January 20, 2019 08:49
Vim config for Rust with language server plus completion
" Bare minimum for rust code
" I add other plugins for Nerdtree, git gutter, airline etc
all plug#begin('~/.vim/plugged')
" Status stuff
Plug 'Valloric/YouCompleteMe'
" show ctags (works with rust.vim too)
" see https://github.com/majutsushi/tagbar/wiki#rust for settings
Plug 'majutsushi/tagbar'
" for rls (and others)
Plug 'autozimu/LanguageClient-neovim', {