Skip to content

Instantly share code, notes, and snippets.

@Her719
Her719 / integrador-nivel-0.js
Created March 13, 2025 13:30
Este es mi primer Gist
const miPlaylist = [
{
titulo: "Codeando un sistema de crowfunding - Pagos online - Parte 4/4",
url: "https://www.youtube.com/watch?v=aK1mwitXWXU&t=8s",
resumen: "En este se va a analizar el desafío final que nos propone implementar un pequeño, pero totalmente funcional, sistema de crowfunding personal",
tags: ["Crowfunding", "Reto","Apx", "Vaquitaapp"],
visto: true,
dificultad: 5
},
{
@mathan-datagenie
mathan-datagenie / coding_performance_denormalized_sample.csv
Created March 13, 2025 13:29
Upload coding_performance_denormalized_sample.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 6 should actually have 22 columns, instead of 6 in line 5.
coding_date,day_of_week,month,year,coder_id,coder_name,coder_certification_level,coder_department,service_line_name,procedure_code,procedure_description,doctor_id,doctor_name,doctor_specialty,patient_encounter_id,total_cases_coded,total_coding_time_minutes,coding_accuracy_pct,coding_errors_count,financial_discrepancies_amount,avg_time_per_case_minutes,notes
2023-03-21,2,3,2023,C020,John Smith,RHIT,Emergency,General Surgery,CPT-5678,Knee Replacement,D002,Dr. Hall,Orthopedic Surgeon,E90214,7,102.41,86.81,1,169.97,14.63,
2023-09-07,4,9,2023,C005,David Clark,CPMA,Outpatient,Cardiology,CPT-1234,Hip Replacement,D014,Dr. Jenkins,Pediatrician,E57412,9,96.51,94.53,5,93.66,10.72,
2023-05-22,1,5,2023,C001,John Smith,CCS,Ambulatory,Orthopedics,CPT-5678,Cesarean Section,D003,Dr. Foster,Cardiologist,E72123,13,215.11,90.9,4,267.8,16.55,
2023-09-12,2,9,2023,C002,David Clark,CPMA,Emergency,Newborn,ICD10-P45.1,Angioplasty,D015,Dr. Carter,Pediatrician,E82252,2,30.72,99.76,0,611.16,15.36,
2023-12-19,2,12,2023,C017,David Cla
[
{
"name": "Unknown",
"value": "950,000"
}
]
@naschhornlp
naschhornlp / Test123
Last active March 13, 2025 14:53
Test123
444-444
@TheLastBoyScoutUK
TheLastBoyScoutUK / neomania_treadmill_football.md
Last active March 13, 2025 14:35
Notes about Neomania and The Treadmill Effect

Notes about Neomania and The Treadmill Effect as it Pertains to Football Management

The conclusion I draw (though differing views are welcome) is that signs of breaking the vicious cycle are more important than merely changing manager or spending more.

Note: This was originally a thread on Bluesky

1. Neomania in Football Management

Obsession with the New: clubs and their fans frequently succumb to a desire for novelty (neomania), believing a fresh manager and new players inherently brings better results.

@glutarnguln6737
glutarnguln6737 / InPixio Photo Focus Pro
Created March 13, 2025 13:29
InPixio Photo Focus Pro Cracked
InPixio Photo Focus Pro Crackeded
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created March 13, 2025 13:28
Rimworld output log published using HugsLib
Log uploaded on Thursday, March 13, 2025, 6:28:50 PM
Loaded mods:
Prepatcher(zetrith.prepatcher): 0DataAssembly(1.0.0), 0Harmony(2.3.3), 0PrepatcherAPI(1.2.0), 0PrepatcherDataAssembly(1.0.0), PrepatcherImpl(1.0.0), Prestarter(1.0.0)
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1)
Fishery - Modding Library(bs.fishery): 0PrepatcherAPI(1.2.0), 1Fishery(0.6.1), System.Runtime.CompilerServices.Unsafe(av:6.0.0,fv:6.0.21.52210)
Core(Ludeon.RimWorld): (no assemblies)
Performance Fish(bs.performance): PerformanceFish(0.6.2)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Ideology(Ludeon.RimWorld.Ideology): (no assemblies)
RimThemesLite(skyarkhangel.RimThemesLite): LibAPNG(0.2.6979.15011), RimThemesLite(2019.3.1)
@adnane-abdallaoui48
adnane-abdallaoui48 / convert_temperature.py
Last active March 13, 2025 13:35
Script pour convertir la température de Celsius à Fahrenheit
def celsius_to_fahrenheit(celsius):
return (celsius * 9/5) + 32
def celsius_to_kelvin(celsius):
return celsius + 273.15
temp_celsius = float(input("Entrez la température en Celsius : "))
temp_fahrenheit = celsius_to_fahrenheit(temp_celsius)
temp_kelvin = celsius_to_kelvin(temp_celsius)
// Copyright 2025- Juha Järvi
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
#!/bin/bash
# Author: Elnur Badalov
LOG_FILE=$1
USERNAMES_WITH_DOMAIN="$1.users@.txt"
USERNAMES_WITHOUT_DOMAIN="$1.users.txt"
awk -F': +' '{print $2}' "$LOG_FILE" | tr '[:upper:]' '[:lower:]' | sort -u > "$USERNAMES_WITH_DOMAIN"
awk -F'@' '{print $1}' "$USERNAMES_WITH_DOMAIN" | sort -u > "$USERNAMES_WITHOUT_DOMAIN"