Skip to content

Instantly share code, notes, and snippets.

@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"}
  ],
using module ActiveDirectory
using namespace System.Reflection
function Convert-ADFilter {
<#
.SYNOPSIS
Converts PowerShell-style filters used by the AD module into LDAP filters.
.DESCRIPTION
Convert-ADFilter uses the QueryParser from the AD module to convert PowerShell-style filters into LDAP
@keilmillerjr
keilmillerjr / Creating an AUR Package.md
Last active May 11, 2024 16:08
How to create and manage an AUR package. #AUR #ARCH #makepkg #PKGBUILD