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

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", []}, [], []).