Skip to content

Instantly share code, notes, and snippets.

View airone01's full-sized avatar
:shipit:
Studying @ 42

Erwann Lagouche airone01

:shipit:
Studying @ 42
View GitHub Profile
@airone01
airone01 / file_bee.txt
Created March 17, 2025 13:57
Testing files
Scripts.com
Bee Movie
By Jerry Seinfeld
NARRATOR:
(Black screen with text; The sound of buzzing bees can be heard)
According to all known laws
of aviation,
:
there is no way a bee
@airone01
airone01 / gists-spotify-box.txt
Last active October 16, 2024 00:02
🎧 Spotify | My Top Artists
▶ Nekfeu ........ 💽 french hip hop, pop urbaine
▶ Freeze corleon… 💽 drill francais, french hip hop
▶ Luv Resval .... 💽 french hip hop, pop urbaine
▶ Népal ......... 💽 french hip hop
▶ Luther ........ 💽 plugg francais
@airone01
airone01 / undefined
Last active April 9, 2025 05:36
⌛ Recent activity
❌ Closed PR #5 in BDE-42-Lyon/website
🗣 Commented on #5 in BDE-42-Lyon/website
💪 Opened PR #5 in BDE-42-Lyon/website
🎉 Merged PR #4 in BDE-42-Lyon/website
💪 Opened PR #4 in BDE-42-Lyon/website
⭐ Total Stars: 11
➕ Total Commits: 919
🔀 Total PRs: 108
🚩 Total Issues: 120
📦 Contributed to: 12
[Unit]
Description=AutoSSH service
After=network.target
[Service]
Type=simple
User=user
Group=group
Environment="AUTOSSH_GATETIME=0"
ExecStart=/usr/bin/autossh -N -M 0 -o "ServerAliveInterval 30" -o "ServerAliveCountMax 3" -L %i:localhost:%i user@remote
@airone01
airone01 / main.lua
Last active November 21, 2021 00:15
Tests for Client:Send functions
function Initialize(Plugin)
Plugin:SetName("SendTests")
cPluginManager.BindCommand("/sendblockbreak", "permissionnode", CmdBlockBreak, " - Show a block break packet to the block below you")
cPluginManager.BindCommand("/sendcollect", "permissionnode", CmdCollectEntity, " - Send a collect packet for items near you")
cPluginManager.BindCommand("/senddestroy", "permissionnode", CmdDestroyEntity, " - Send a destroy packet for (non-players) entities near you")
cPluginManager.BindCommand("/senddestroyplayer", "permissionnode", CmdDestroyEntityPlayer, " - Send a destroy packet for your entity")
cPluginManager.BindCommand("/senddetach", "permissionnode", CmdDetachEntity, " - Send a detach packet for your player")
cPluginManager.BindCommand("/sendeditsign", "permissionnode", CmdEditSign, " - Send a sign edit packet")
cPluginManager.BindCommand("/sendleashentity", "permissionnode", CmdLeashEntity, " - Send leash packets for entities near you")