Skip to content

Instantly share code, notes, and snippets.

View rubiojr's full-sized avatar
🚀
>>>>>>>>> ⚠️ 💥 ☠️

Sergio Rubio rubiojr

🚀
>>>>>>>>> ⚠️ 💥 ☠️
View GitHub Profile

My Open Source Contributions Last Week

Last week, I was active across several open source projects, focusing on new features and improvements:

Extensions for Zed Editor

I created a new Zed extension called GitHub Activity Summarizer that allows users to view their GitHub activity without leaving the editor. This context server integrates with GitHub's API to fetch recent interactions including comments, issues, and pull requests, presenting them in a formatted summary.

Risor Language

I contributed to the Risor programming language with two pull requests:

#!/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"

Keybase proof

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:

Keybase proof

I hereby claim:

  • I am rubiojr on github.
  • I am sergiorubio (https://keybase.io/sergiorubio) on keybase.
  • I have a public key ASBAMHqNzhinmUUsX-7JdZTnJy5VXmEt-B4TGc55FymXOwo

To claim this, I am signing this object:

@rubiojr
rubiojr / proxy.rb
Last active October 29, 2015 11:39 — forked from torsten/proxy.rb
#!/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 <[email protected]>
#
# 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,
@rubiojr
rubiojr / gnome-keyring-query.c
Last active August 29, 2015 13:59
gnome-keyring-query.c
// 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"