I hereby claim:
- I am rubiojr on github.
- I am rubiojr (https://keybase.io/rubiojr) on keybase.
- I have a public key ASATFcCv4GiT5Lh_vwL85enlQm_V4oY0oBXjANWTKF-T5wo
To claim this, I am signing this object:
#!/usr/bin/env python | |
import http.client | |
import sys, time | |
import json | |
import tempfile | |
import os | |
def client(): |
#!/bin/bash | |
set -e | |
sudo dnf builddep libheif | |
git clone https://github.com/strukturag/libheif | |
mkdir libheif/build | |
cd libheif/build | |
cmake --preset=release .. | |
make |
diff --git a/internal/ui/inprogresslist/inprogresslist.go b/internal/ui/inprogresslist/inprogresslist.go | |
index d05f3b4..e25a0c8 100644 | |
--- a/internal/ui/inprogresslist/inprogresslist.go | |
+++ b/internal/ui/inprogresslist/inprogresslist.go | |
@@ -57,7 +57,7 @@ func (i *InProgressList) isShown(tree *gtk.TreeView) { | |
func (i *InProgressList) updateFileList() { | |
//TODO: use leveldb to speed things up without walking the filesystem | |
- i.listBox.BindModel(nil, nil, nil) | |
+ i.listBox.BindModel(nil, nil) |
package main | |
import ( | |
"fmt" | |
"net/url" | |
) | |
func main() { | |
u, _ := url.Parse(`file:///c:/go`) | |
fmt.Println(u.Path) // prints /c:/go |
diff --git a/cfg/config.go b/cfg/config.go | |
index e4fc20d..c278b9b 100644 | |
--- a/cfg/config.go | |
+++ b/cfg/config.go | |
@@ -1,11 +1,14 @@ | |
package cfg | |
import ( | |
+ "bytes" | |
"encoding/json" |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env ruby | |
# A quick and dirty implementation of an HTTP proxy server in Ruby | |
# because I did not want to install anything. | |
# | |
# Copyright (C) 2009-2014 Torsten Becker <torsten.becker@gmail.com> | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining | |
# a copy of this software and associated documentation files (the | |
# "Software"), to deal in the Software without restriction, including | |
# without limitation the rights to use, copy, modify, merge, publish, |
// http://www.gentoo-wiki.info/HOWTO_Use_gnome-keyring_to_store_SSH_passphrases | |
// gcc gnome-keyring-query.c `pkg-config --cflags --libs gnome-keyring-1 glib-2.0` -o gnome-keyring-query | |
// https://github.com/rlaager/gnome-keyring-query-pkg | |
// also apt-get install libsecret-tools && secret-tool | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <glib.h> | |
#include "gnome-keyring.h" |
#!/usr/bin/env ruby | |
require 'gir_ffi-gnome_keyring' | |
class Keyring | |
# Return all the keyring items | |
# | |
# returns: An Array of Hashes | |
# | |
def self.items |