Skip to content

Instantly share code, notes, and snippets.

View robertmeta's full-sized avatar
:electron:
AI Powered

Robert Melton robertmeta

:electron:
AI Powered
View GitHub Profile
@robertmeta
robertmeta / TWI.md
Last active December 23, 2024 03:32
The Wandering Inn: Hec 1/2/3

TWI

There was a place in The Wandering Inn few people knew existed. Few people went there, even if they did know it was there.

Down the hallways that led up to the second floor, past the game rooms, the rec room, and yes, Erin had decided she needed both, the weights room, and even the bathing room, the wooden hallway branched right. If you kept going, you got to one of the private rooms, one of several entrances to the basement, and a closet, which held brooms and an emergency knife Numbtongue had placed on one of the shelves.

Walk a bit further, and you’d come to a suspiciously blank patch of wall that extended further than it should, with tiny ventilation holes. But there was no door, not even a hidden one, and there was only one room at the far, far end.

Even the drunk patrons of The Wandering Inn didn’t bother trying to explore that door, because it was locked and only a few people had the key. The door had a simple, chalkboard nameplate, which someone had neatly written an odd pair of words onto.

Keybase proof

I hereby claim:

  • I am robertmeta on github.
  • I am robertmeta (https://keybase.io/robertmeta) on keybase.
  • I have a public key ASDZl7rCTvgNF-yMHWAyau40voL9y5Vplg408r8Uk25rXQo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am robertmeta on github.
  • I am robertmeta (https://keybase.io/robertmeta) on keybase.
  • I have a public key ASASMz1qYdw-ZRnIHj-Si3c7TQf_njuK_O0_1G_gitRTOAo

To claim this, I am signing this object:

@robertmeta
robertmeta / gist:7f03d181f9b33eb4c074
Last active March 18, 2022 13:48
All the songs from compilations on Pandora Journey
https://www.youtube.com/channel/UCmVGp8jfZ0VLg_i8TuCaBQw
1 revolution music - epic expedition
1 revolution music - leader of men
1 revolution music - pursuit of justice - tom dimartino
1 revolution music - righteous fall
1 revolution music - salute to the brave
1 revolution music - united we stand
8dawn music - blades of destiny
8dawn music - buried power
How Inoffensive Person A (IPA) Explained REST to Not Offended Person B (NOPB)
NOPB: Who is Roy Fielding?
IPA: Some guy. He’s smart.
NOPB: Oh? What did he do?
IPA: He helped write the first web servers and then did a ton of research explaining why the web works the way it does. His name is on the specification for the protocol that is used to get pages from servers to your browser.
@robertmeta
robertmeta / Game.head.cs
Created February 18, 2012 03:27 — forked from MagnusVortex/Game.cs
Why merges are a headache for me
private void InsertCard(CardModel card)
{
var sb = new StringBuilder();
using (SQLiteCommand com = GamesRepository.DatabaseConnection.CreateCommand())
{
//Build Query
sb.Append("INSERT INTO [cards](");
sb.Append("[id],[game_id],[set_real_id],[name], [image], [alternate]");
sb.Append(") VALUES(");
sb.Append("@id,@game_id,(SELECT real_id FROM sets WHERE id = @set_id LIMIT 1),@name,@image,@alternate");
(╯°□°)╯︵ ┻━┻ // Angry Kirby Flips Table
@robertmeta
robertmeta / TweakTouchpad.erl
Created August 26, 2011 09:45
Playing with Escript
#!/usr/bin/env escript
%%! -smp disable
-define(ENABLE, "1").
-define(DISABLE, "0").
main(Args) ->
try
case lists:flatten(string:to_lower(Args)) of
"enable" -> touchpad(enable);
"disable" -> touchpad(disable);
inets:start().
{ok, {{Version, 200, ReasonPhrase}, Headers, Body}} = httpc:request(get, {"http://erlexamples.com", []}, [], []).