Skip to content

Instantly share code, notes, and snippets.

View JamesMenetrey's full-sized avatar
🐹
Shifting some bits ...

Jämes Ménétrey JamesMenetrey

🐹
Shifting some bits ...
View GitHub Profile
@lrtfm
lrtfm / beamer-notes-patch.tex
Last active January 25, 2025 21:30
A patch file for beamer with notes options [show notes] and [show notes on second screen] (for XeLaTeX and LuaLaTeX)
% This is a patch for beamer with notes
% Usage:
% Input this file before set the option for notes, e.g.,
%
% \documentclass{beamer}
% \input{beamer-notes-patch}
% \setbeameroption{show notes on second screen=top}
%
% NOTE: This may still have warnings, e.g.,
% xdvipdfmx:warning: Object @linkA already defined.

Usage

export MACOS_UNIVERSAL=no
pip install capstone # or something depends on capstone

Fore more detail...

Refer to this issue: capstone-engine/capstone#1235

@stat1x
stat1x / cassandra_cluster.sh
Last active January 9, 2018 19:20
Cassandra cluster
#!/usr/bin/env bash
#% DESCRIPTION
#% This is a script to run a cassandra cluster.
#% IMPLEMENTATION
#% version cassandra_cluster 0.0.1
#% author Jérémie Roulin
# Remove all running docker container
docker rm -f $(docker ps -a -q)
@smiley
smiley / README.md
Last active July 19, 2024 23:33
How to make an automatic "stream's live" notification for your Discord server

Making an automatic Twitch -> Discord notification (using IFTTT)

So you went live and you want everyone to know. Here's how you do it:

Part 1 - Register on IFTTT

Go to https://ifttt.com/ and create an account (if you don't already have one)

Part 2 - Make a Discord Webhook

  • Find the Discord channel in which you would like to send Tweets.
  • In the settings for that channel, find the Webhooks option and create a new webhook. Note: This URL should be kept private. It allows anyone to write messages to that specific channel using that specific URL. Keep it safe!
@noygal
noygal / Windows Subsystem for Linux version 1 and 2 (WSL) - node install guide.md
Last active October 16, 2024 01:06
Installing node via windows subsystem for linux

Windows 10 version 2004 - Installing Node.js on Windows Subsystem for Linux (WSL/WSL2)

UPDATE (Fall 2020): This gist is an updated version to the Windows 10 Fall Creators Update - Installing Node.js on Windows Subsystem for Linux (WSL) guide, I usually just keep here notes, configuration or short guides for personal use, it was nice to know it also helps other ppl, I hope this one too.

Windows updated windows subsystem for linux to version 2, as the F.A.Q stated you can still use WSL version 1 side by side with version 2. I'm not sure about existing WSL machines surviving the upgrade process, but as always backup and 🤞. NOTE: WSL version 1 is not replace/deprecated, and there ar

using System;
using System.Runtime.InteropServices;
// ReSharper disable SuspiciousTypeConversion.Global
// ReSharper disable InconsistentNaming
namespace VideoPlayerController
{
/// <summary>
/// Controls audio using the Windows CoreAudio API
/// from: http://stackoverflow.com/questions/14306048/controling-volume-mixer
@vkhorikov
vkhorikov / CustomerController.cs
Last active July 30, 2024 14:25
Handling failures and input errors in a functional way
[HttpPost]
public HttpResponseMessage CreateCustomer(string name, string billingInfo)
{
Result<BillingInfo> billingInfoResult = BillingInfo.Create(billingInfo);
Result<CustomerName> customerNameResult = CustomerName.Create(name);
return Result.Combine(billingInfoResult, customerNameResult)
.OnSuccess(() => _paymentGateway.ChargeCommission(billingInfoResult.Value))
.OnSuccess(() => new Customer(customerNameResult.Value))
.OnSuccess(
@raelg
raelg / gist:e12d731ba01ba58f0006
Created January 20, 2015 16:44
Scala Gson Serializer
package services
import java.lang.reflect.Type
import com.google.gson._
import org.joda.time.format.ISODateTimeFormat
import org.joda.time.{DateTime, DateTimeZone}
object Serializers {
@davidfowl
davidfowl / dotnetlayout.md
Last active April 2, 2025 20:17
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/
@evanscottgray
evanscottgray / docker_kill.sh
Last active November 7, 2023 03:40
kill all docker containers at once...
docker ps | awk {' print $1 '} | tail -n+2 > tmp.txt; for line in $(cat tmp.txt); do docker kill $line; done; rm tmp.txt