Skip to content

Instantly share code, notes, and snippets.

@dchristensen
dchristensen / mls_in_15.lua
Created July 18, 2020 14:57
Add MLS in 15 videos to VLC
function descriptor()
return { title="MLS in 15"}
end
function main()
vlc.msg.dbg("Loading MLS in 15 graphql query")
local videos, err = query_mls_graphql()
if err then
vlc.msg.warn(err)
@dchristensen
dchristensen / az_functions_efcore_error.log
Last active January 24, 2019 00:24
Azure Functions/EF Core error
> npm i -g azure-functions-core-tools@2.3.199
> func host start --build
Azure Functions Core Tools (2.3.199 Commit hash: fdf734b09806be822e7d946fe17928b419d8a289)
Function Runtime Version: 2.0.12246.0
[23-Jan-2019 23:28:33] Starting Rpc Initialization Service.
[23-Jan-2019 23:28:33] Initializaing RpcServer
[23-Jan-2019 23:28:33] Building host: startup suppressed:False, configuration suppressed: False
[23-Jan-2019 23:28:33] Reading host configuration file 'C:\dev\functions-efcore-error\bin\output\host.json'
[23-Jan-2019 23:28:33] Host configuration file read:

Keybase proof

I hereby claim:

  • I am dchristensen on github.
  • I am dchristensen (https://keybase.io/dchristensen) on keybase.
  • I have a public key whose fingerprint is 6DD0 C323 4A72 4145 819A 6C69 B0E6 C074 9EC2 9138

To claim this, I am signing this object:

@dchristensen
dchristensen / gist:2563600
Created April 30, 2012 23:23
Change a PictureBox dynamically
public partial class MapForm2 : Form
{
private Bitmap map_t;
private Bitmap map;
public MapForm2()
{
InitializeComponent();
var size = Properties.Resources.Penguins.Size;
map_t = new Bitmap("map.gif", true);