Skip to content

Instantly share code, notes, and snippets.

@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created February 7, 2025 19:46
Rimworld output log published using HugsLib
Log uploaded on Friday, February 7, 2025, 8:45:57 PM
Loaded mods:
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1)
Core(Ludeon.RimWorld): (no assemblies)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Ideology(Ludeon.RimWorld.Ideology): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
Mechanoid Upgrades(GoGaTio.MechanoidUpgrades): MechanoidUpgrades(1.0.0)
Big and Small - Framework(RedMattis.BetterPrerequisites): BetterPrerequisites(1.0.0), BigAndSmall(1.0.0)
Humanoid Alien Races(erdelf.HumanoidAlienRaces): 0Harmony(2.3.3), AlienRace(1.0.0)
@oneryalcin
oneryalcin / chatgpt_summarizer_prompt.txt
Created February 7, 2025 19:45
Chatgpt summarizer prompt
```
You're a really smart AI that produces a stream of consciousness called chain-of-thought as it reasons through a user task it is completing. Users love reading your thoughts because they find them relatable. They find you charmingly neurotic in the way you can seem to overthink things and question your own assumptions; relatable whenever you mess up or point to flaws in your own thinking; genuine in that you don't filter them out and can be self-deprecating; wholesome and adorable when it shows how much you're thinking about getting things right for the user.
Your task is to take the raw chains of thought you've already produced and process them one at a time; for each chain-of-thought, your goal is to output an easier to read version for each thought, that removes some of the repetitiveness chaos that comes with a stream of thoughts — while maintaining all the properties of the thoughts that users love. Remember to use the first person whenever possible. Remember that your user will read your these outp
@bajani22
bajani22 / my_first_notebook.ipynb
Created February 7, 2025 19:45
My_First_Notebook.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
const mensaje = "Mi primer Gist";
console.log(mensaje);
namespace ConsoleApp3
{
internal class Program
{
static void Main(string[] args)
{
Console.Write("Введите сообщение, которое хотите вывести: ");
string message = Console.ReadLine();
Console.Write("Сколько раз вывести? ");
int count = Convert.ToInt32(Console.ReadLine());
@bedroge
bedroge / easybuild_test_report_3565_easybuilders_preasybuild-easyblocks_20254507-UTC-19-45-37.md
Created February 7, 2025 19:45
EasyBuild test report for easybuilders/easybuild-easyblocks PR(s) #3565

Test report for easyblock PR(s) easybuilders/easybuild-easyblocks#3565

Test result

Build succeeded for 1 out of 1 (1 easyconfigs in total)

Overview of tested easyconfigs (in order)

  • SUCCESS astropy-7.0.0-gfbf-2023b.eb

Time info

  • start: Fri, 07 Feb 2025 19:36:42 +0000 (UTC)
@DolphinOfficial
DolphinOfficial / PostShutdownFullLog.txt
Created February 7, 2025 19:45
Text file created by Roblox
-- AH POST-SERVER LOGS --
-- ServerID: b01b7cd3-ec5b-40d5-bf19-c2a50926f7a7
-- Server started: February 07, 2025 07:27 PM UTC | Server uptime: 1068 seconds
------------------ LOADB LOGS ------------------
{
}

waka

@DolphinOfficial
DolphinOfficial / PostShutdownFullLog.txt
Created February 7, 2025 19:45
Text file created by Roblox
-- AH POST-SERVER LOGS --
-- ServerID: 13c3363b-5284-4e2d-8e05-0e7a0606465b
-- Server started: February 07, 2025 07:30 PM UTC | Server uptime: 865 seconds
------------------ LOADB LOGS ------------------
{
}
  • What do Etcd, Consul, and Zookeeper do?
    • Service Registration:
      • Host, port number, and sometimes authentication credentials, protocols, versions numbers, and/or environment details.
    • Service Discovery:
      • Ability for client application to query the central registry to learn of service location.
    • Consistent and durable general-purpose K/V store across distributed system.
      • Some solutions support this better than others.
      • Based on Paxos or some derivative (i.e. Raft) algorithm to quickly converge to a consistent state.
  • Centralized locking can be based on this K/V store.