Skip to content

Instantly share code, notes, and snippets.

View AntoineSebert's full-sized avatar
🚀
Orbiting around the Earth

Antoine Sébert AntoineSebert

🚀
Orbiting around the Earth
  • Weyland-Yutani Corp.
  • Copenhagen
  • 03:33 (UTC +01:00)
View GitHub Profile
@SydoxX
SydoxX / forti-fix.sh
Last active January 13, 2026 08:15
Fixes Forticlient 7.0.7
#!/bin/bash
# version 2 thanks to @dhx-mike-palandra
echo "Creating /etc/NetworkManager/conf.d/99-forticlient.conf..."
sudo cat > /etc/NetworkManager/conf.d/99-forticlient.conf << 'EOF'
[keyfile]
unmanaged-devices=interface-name:~vpn*,type:tun
EOF
if [ $? -eq 0 ]
@jwbee
jwbee / jq.md
Last active December 25, 2025 23:33
Make Ubuntu packages 90% faster by rebuilding them

Make Ubuntu packages 90% faster by rebuilding them

TL;DR

You can take the same source code package that Ubuntu uses to build jq, compile it again, and realize 90% better performance.

Setting

I use jq for processing GeoJSON files and other open data offered in JSON format. Today I am working with a 500MB GeoJSON file that contains the Alameda County Assessor's parcel map. I want to run a query that prints the city for every parcel worth more than a threshold amount. The program is