Skip to content

Instantly share code, notes, and snippets.

@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created February 6, 2023 20:57
Rimworld output log published using HugsLib
View output_log.txt
Log uploaded on Tuesday, February 7, 2023, 4:57:15 AM
Loaded mods:
Harmony(brrainz.harmony)[mv:1.5.0.0]: 0Harmony(2.2.2), HarmonyMod(1.5.0)
Core(Ludeon.RimWorld): (no assemblies)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Ideology(Ludeon.RimWorld.Ideology): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
HugsLib(UnlimitedHugs.HugsLib)[ov:10.0.1]: 0Harmony(av:2.2.2,fv:1.2.0.1), HugsLib(av:1.0.0,fv:10.0.1)
Nyaron race(Farmradish.Nyaron): Nyaron(1.0.0), NyaronNarco(1.0.0)
Xeva FB Pack(Xeva.XevaFBpack.11): (no assemblies)
@Jonatanjrss
Jonatanjrss / dddsBrasileiros.json
Created February 6, 2023 20:56 — forked from ThadeuLuz/dddsBrasileiros.json
Objeto JSON com Estados Brasileiros por DDD e lista de DDDs por Estados.
View dddsBrasileiros.json
{
"estadoPorDdd": {
"11": "SP",
"12": "SP",
"13": "SP",
"14": "SP",
"15": "SP",
"16": "SP",
"17": "SP",
"18": "SP",
View React_Router_prework.md

React Router Prework

This gist contains a short assignment I'd like everyone to complete before our formal lesson. The prework involves reading some of the React Router documentation, and will allow us to keep the lesson more hands on.

Instructions

  1. Fork this gist
  2. On your own copy, go through the listed readings and answer associated questions

You will not be turning this in; it's for your own understanding/learning/benefit 😁

@cam8001
cam8001 / etcher.md
Created February 6, 2023 20:55
balena-etcher-cli
View etcher.md
# connect your flash drive
# make sure it is visible to etcher

$ balena util available-drives
View print_apis.py
#!/usr/bin/env python
import inspect
import typer
import ray
from ray.util.annotations import _is_annotated
IGNORE_PATHS = {
".impl.",
".backend.",
@diegokaminker
diegokaminker / example_device_fhir_us_core.fhir.json
Created February 6, 2023 20:55
Example Implantable Device FHIR US CORE
View example_device_fhir_us_core.fhir.json
{
"resourceType": "Device",
"id": "41539",
"meta": {
"versionId": "1",
"lastUpdated": "2023-02-06T20:47:26.032+00:00",
"profile": [
"http://hl7.org/fhir/us/core/StructureDefinition/us-core-implantable-device"
]
},
View 2.2_2.3.diff
diff --git a/api_2.2.0.log b/api_3.0.0.dev0.log
index 96f7d9c..e6d7976 100644
--- a/api_2.2.0.log
+++ b/api_3.0.0.dev0.log
@@ -24,16 +24,16 @@ ray.actor:PublicAPI: args, kwargs
ray.air.checkpoint:PublicAPI (Beta)
ray.air.checkpoint:__fspath__: self
ray.air.checkpoint:__getstate__: self
-ray.air.checkpoint:__init__: self, local_path, data_dict, uri, obj_ref
+ray.air.checkpoint:__init__: self, local_path, data_dict, uri
View 2.2_2.3.diff
diff --git a/api_2.2.0.log b/api_3.0.0.dev0.log
index 96f7d9c..06049f3 100644
--- a/api_2.2.0.log
+++ b/api_3.0.0.dev0.log
@@ -1,6 +1,7 @@
ray.actor:PublicAPI
ray.actor:__call__: self, args, kwargs
ray.actor:__init__: cls, name, bases, attr
+ray.actor:_remote: self, args, kwargs, actor_options
ray.actor:bind: self, args, kwargs
View [DatAzz.AI] Generated SQL "what are the top 10 titles by rating that are movies that came out in 2022 or 2023" - 06-Feb-2023 20:53:36
SELECT tb.primary_title, tr.average_rating
FROM title_basics tb
LEFT JOIN title_ratings tr ON tb.tconst = tr.tconst
WHERE tb.title_type = 'movie' AND (tb.start_year = 2022 OR tb.start_year = 2023)
ORDER BY tr.average_rating DESC
LIMIT 10;