Skip to content

Instantly share code, notes, and snippets.

View jmfergeau's full-sized avatar
🗼
Nous n'avons pas besoin de vinaigre balsamique après tout...

JM Fergeau jmfergeau

🗼
Nous n'avons pas besoin de vinaigre balsamique après tout...
View GitHub Profile
@jmfergeau
jmfergeau / onename
Created February 7, 2016 14:47
Verifying that +maxlefou is my blockchain ID. https://onename.com/maxlefou
Verifying that +maxlefou is my blockchain ID. https://onename.com/maxlefou
@jmfergeau
jmfergeau / stfu-and-update.sh
Created November 30, 2016 14:47
Forces manjaro (or arch after some edits) to update in case new keyrings prevents it
# STFU AND UPDATE
# ---------------
# WARNING: This must be run as root!
# This script might come in handy if you have manjaro (or arch, after some editing) not wanting to update because of invalid keys.
# I had a case where this didn't worked afterwards, but in my tries, this usually do the thing
#!/bin/sh
pacman -S gnupg
pacman-key --populate archlinux manjaro
@jmfergeau
jmfergeau / Basic_ring_door_button_script.lsl
Last active April 3, 2018 18:19
A simple doorbell script for Second Life. With sound and antispam
// BASIC RING BUTTON
// by buttbadger Mirabeau
// Usage: When someone touches the doorbell, it rings and the toucher's name will be said in chat.
// When the owner touches it, they can ring the bell or choose a Public and Private setting. (Private by default)
// Private setting will send the notification in private IM in localchat. Only you can read it.
// Public setting will send the notification in localchat, visible for everybody in range.
// Like,
// This script is open source and free. It can't be resold as it is. You can put it in part of your sales
@jmfergeau
jmfergeau / Horse_tail_wagging_script.lsl
Created November 30, 2016 14:52
A script for flexi tails in Second Life. Raises up when clicked.
// FREE TAIL SCRIPT
// Meant for flexi-tails. It wags randomly, and when the owner clicks it, it raises.
// Click again and it goes back wagging.
// Brought to you by buttbadger.mirabeau. Feel free to use in your sales and redistribute
// but keep the script in full perm. Thank you
// User Variables
float wagtime = 0.15; // How long the tail takes to go from center to one side of the tail.
float minWagTime = 5.0; // Minimum time(in seconds) between Wags.
float maxWagTime = 9.0; // Maximum time(in seconds) between Wags.
@jmfergeau
jmfergeau / Prim_cleaner.lsl
Last active May 27, 2025 13:28
Script for Second Life. Removes reminiscent stuff on a copied non-scripted prim
// PRIM CLEANER
//
// Sick of particles or floating text still on a prim, even after removing the script that manages it ?
// This script will remove the effects without having to copy the prim again...
// Just put it in the prim and the script will fix all the things before disappreaing itself,
// making your prim fresh and clear!
//
// Courtesy of buttbadger Mirabeau
default
@jmfergeau
jmfergeau / open_source_clickable_part_script.lsl
Created November 30, 2016 15:00
A rudimentary script for Second Life to make body parts interactable
// BODY PART CLICKABLE SCRIPT
// Made by Trappy Tickles
// If you want a custom name, change this value.
// Otherwise, keep it void ( "" )
string CUSTOMNAME = "";
// Change it if you plan to use this script for another body part
string bodypart = "mane";
@ECHO OFF
REM This script forces Windows to get its clock updated
REM in case multiboot makes it forget what time is it.
REM (WHY?!!!!)
REM Launch this with task schedule and pray that it works.
net start w32time
w32tm /resync
@jmfergeau
jmfergeau / bell hour clock.lsl
Created April 18, 2019 15:41
This will emits a sound for each hour, like your average town clock or anything...
// CLOCK BELL SCRIPT
// ORIGINAL AUTHOR: Beverly Larkin
// Edited by buttbadger Mirabeau
// Like
// Put below the bell sound name or UUID:
string bell = "bab03683-516a-22a3-a9ec-4a357dbdc587";
// Or some junk
integer H; //Hours
@jmfergeau
jmfergeau / listlinux.txt
Last active January 3, 2022 15:16
List of TTS voices to use with Ren'Py (listed by code)
### Linux
###############################################
NAME LANG CODE Other languages
afrikaans af
aragonese an
bulgarian bg
bosnian bs
catalan ca
czech cs
welsh cy
@jmfergeau
jmfergeau / bdcheck.acs
Last active June 5, 2021 13:28
Brutal DOOM Checker
#include "zcommon.acs"
///////////////////////////////////////////////////////////////////
/*
BRUTAL DOOM CHECK.
This will detect when, in your zdoom mod, if Brutal Doom has been added too
and, for some reason, you want to discourage the player to do so.
The script simply looks for two decorate classes that are in all versions
of BD. If they're both detected. a message will display. Feel free to