Skip to content

Instantly share code, notes, and snippets.

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active May 11, 2024 16:26
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This no longer works in browser!

Note

This no longer works if you're alone in vc! Somebody else has to join you!

How to use this script:

  1. Accept the quest under User Settings -> Gift Inventory
@sgdc3
sgdc3 / jsontomidi.js
Last active May 11, 2024 16:24
LittleBigPlanet Music Sequencer MIDI Dumper
/*
* LittleBigPlanet Music Sequencer MIDI Dumper
* NodeJS script that extracts music sequencer data from LBP levels in JSON format (jsoninator format)
*
* Author: @sgdc3
* Version: 0.2
* Latest Update: 07 May 2024
*
* HINT: You can obtain the JSON level data using https://github.com/ennuo/toolkit/tree/main/tools/jsoninator
* Output Format: ./out/{Level ID}/{Sequencer UID}/{Sequence Name}/{Sequence Name}-{Track Id}.mid
@anabsolutesloth
anabsolutesloth / AdvRocketryGuideMCEternal.md
Last active May 11, 2024 16:22
A Guide to doing the Advanced Rocketry mod in the MC Eternal Modpack

WARNING: You'll want to have some good infrastructure before starting, as the recipes for the more critical Advanced Rocketry machines are heavily modified to be MUCH more expensive, an ME System would be wise.

1st Stage

The following items will be required to be able to craft everything to get out of the Atmosphere:
MULTIBLOCK CORES:

  • Precision Assembler
  • Cutting Machine
  • Rolling Machine
@kyo-takano
kyo-takano / making-the-most-of-local-llms.ipynb
Last active May 11, 2024 16:19
ローカルLLMはこーやって使うの💢
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@dannberg
dannberg / obsidian-people-template.txt
Last active May 11, 2024 16:18
Dann Berg's People Template for Obsidian. Uses Dataview & Templater plugins. Should be saved as a Markdown file in Obsidian. See full tutorial for setup instructions: https://dannb.org/blog/2022/obsidian-people-note-template/
---
company:
location:
title:
email:
website:
aliases:
---
tags:: [[👥 People MOC]]
@saaiful
saaiful / gist:586e920310cd37d6c4ce
Last active May 11, 2024 16:16
বাংলায় গানিতিক সমস্যার সমাধান
function en2bn(input){
var en = ["1","2","3","4","5","6","7","8","9","0"];
var bn = ["১","২","৩","৪","৫","৬","৭","৮","৯","০"];
input = input.toString();
for( var i = 0; i < 10; i++)
{
var re = new RegExp(en[i], 'g');
input = input.replace(re,bn[i]);
}
return input;
@mjmenger
mjmenger / .bash_aliases
Last active May 11, 2024 16:14
bash aliases I like to have available
# Terraform aliases
# adding time to the commands because I'm very interested
# in how long these activities take with more complex builds
# across disparate platforms
alias tfi='terraform init'
alias tfp='time terraform plan'
alias tfa='time terraform apply'
alias tfaa='time terraform apply -auto-approve '
alias tfd='time terraform destroy'
alias tfda='time terraform destroy -auto-approve '
@nosmall
nosmall / Win_Server_2022_Evaluation_to_full_version.md
Created April 16, 2023 11:11
Upgrade Windows Server 2022 Evaluation (Eval) to Full Version Standard or Datacenter
@ChristianAlexander
ChristianAlexander / detect.livemd
Last active May 11, 2024 16:12
Face Detection in Elixir

Face Detection in Elixir

Mix.install(
  [
    {:evision, "~> 0.1"},
    {:kino, "~> 0.7"}
  ],