Skip to content

Instantly share code, notes, and snippets.

View Kagee's full-sized avatar
👾
Still working from home, what about you?

Anders Einar Hilden Kagee

👾
Still working from home, what about you?
View GitHub Profile

Keybase proof

I hereby claim:

  • I am kagee on github.
  • I am kagee (https://keybase.io/kagee) on keybase.
  • I have a public key whose fingerprint is 7420 F6A6 BFB4 4940 34D8 300A 0581 5A81 1322 0715

To claim this, I am signing this object:

hildenae@grune ~/tmp/tmp $ echo "a" > A
hildenae@grune ~/tmp/tmp $ echo "b" > B
hildenae@grune ~/tmp/tmp $ echo "c" > C
hildenae@grune ~/tmp/tmp $ cat *
a
b
c
hildenae@grune ~/tmp/tmp $ echo "Irssi" > *
hildenae@grune ~/tmp/tmp $ cat *
Irssi
#define _GNU_SOURCE
#include <dlfcn.h>
#include <netdb.h>
#include <string.h>
typedef int (*getaddrinfo_t)(const char *node, const char *service,
const struct addrinfo *hints,
struct addrinfo **res);
int getaddrinfo(const char *node, const char *service,
#! /usr/bin/env bash
# Test:
# ./scrape.sh "https://summit.debconf.org/debconf15/meeting/286/continuous-delivery-of-debian-packages/"
# ./scrape.sh "https://summit.debconf.org/debconf15/meeting/329/debians-central-role-future-software-freedom/"
#./scrape.sh "https://summit.debconf.org/debconf15/meeting/331/what-is-to-be-done/"
PAGE=$(wget -q -O - $1)
TITLE=$(echo "$PAGE" | perl -ne 'print $1,"\n" if /<h2>(.*)--/' | recode HTML_4.0..utf-8)
DATE=$(echo "$PAGE" | perl -ne 'print $1,"\n" if /<h3>(\d\d\d\d-\d\d-\d\d)/')
SPEAKER=$(echo "$PAGE" | perl -ne 'print $1,"\n" if /<h2>.*--\s*(.*)<\/h2>/' | recode HTML_4.0..utf-8)
hildenae@grune ~/tmp/debian $ ./scrape.sh "https://summit.debconf.org/debconf15/meeting/286/continuous-delivery-of-debian-packages/" && ./scrape.sh "https://summit.debconf.org/debconf15/meeting/329/debians-central-role-future-software-freedom/" && ./scrape.sh "https://summit.debconf.org/debconf15/meeting/331/what-is-to-be-done/"
Title: Continuous Delivery of Debian packages
Speaker: Michael Prokop
Date: 2015-08-17
URL: http://meetings-archive.debian.net/pub/debian-meetings/2015/debconf15/Continuous_Delivery_of_Debian_packages.webm
Title: Debian's Central Role in the Future of Software Freedom
Speaker: Bradley M. Kuhn
Date: 2015-08-15
URL: http://meetings-archive.debian.net/pub/debian-meetings/2015/debconf15/Debians_Central_Role_in_the_Future_of_Software_Freedom.webm
Title: What is to be done - Reflections on Free Software Usage
#! /usr/bin/env bash
./adb -d shell input tap 680 270
./adb -d shell input tap 362 1086
sleep 5
AWT_VIDEO=$(./adb -d shell dumpsys window windows | grep -o -P 'mFocusedApp=AppWindowToken{[^ ]*')
AWT_POST="$AWT_VIDEO"
echo "shoul be equal: x${AWT_POST} = x${AWT_VIDEO}";
while [ "${AWT_POST}x" = "${AWT_VIDEO}x" ] ; do
sleep 5;
./adb -d shell input keyevent 4
@Kagee
Kagee / core - Kagee
Created July 27, 2011 10:46
gdb-bt for core from weechat crash
(gdb) bt full
#0 0xf57fe416 in __kernel_vsyscall ()
No symbol table info available.
#1 0xb75f5941 in raise () from /lib/libc.so.6
No symbol table info available.
#2 0xb75f8e42 in abort () from /lib/libc.so.6
No symbol table info available.
#3 0x08093c0e in weechat_shutdown ()
No symbol table info available.
#4 0x080af7b0 in debug_sigsegv ()
Delivered-To: hildenae@gmail.com
Received: by 10.147.171.14 with SMTP id y14cs23041yao;
Wed, 14 Sep 2011 12:30:10 -0700 (PDT)
Received: by 10.204.149.72 with SMTP id s8mr133274bkv.126.1316028609440;
Wed, 14 Sep 2011 12:30:09 -0700 (PDT)
Return-Path: <fiksgatami@rt.nuug.no>
Received: from mail-ext1.uio.no (mail-ext1.uio.no. [129.240.10.51])
by mx.google.com with ESMTPS id b6si952319bke.38.2011.09.14.12.30.08
(version=TLSv1/SSLv3 cipher=OTHER);
Host github.com
User git
Hostname github.com
PreferredAuthentications publickey
IdentityFile /home/hildenae/.ssh/id_rsa_offle
import java.awt.BorderLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JToolBar;
public class ChlMiniprosjekt1 extends JFrame {
public ChlMiniprosjekt1(){
super("GridBagMaker");