This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
$script = <<SCRIPT | |
#!/usr/bin/env bash | |
export DEBIAN_FRONTEND=noninteractive | |
echo '==> Preparing prerequisite...' | |
echo 'Acquire::Languages "none";' > /etc/apt/apt.conf.d/60language |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Refer 1. http://docs.gstreamer.com/display/GstSDK/Basic+tutorial+5%3A+GUI+toolkit+integration | |
// Refer 2. http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-libs/html/gst-plugins-base-libs-gstvideooverlay.html | |
// gcc playback.c -o playback `pkg-config --cflags --libs gtk+-3.0 gstreamer-1.0 gstreamer-video-1.0` | |
#include <gst/video/videooverlay.h> | |
#include <gtk/gtk.h> | |
#ifdef GDK_WINDOWING_X11 | |
#include <gdk/gdkx.h> // for GDK_WINDOW_XID | |
#endif | |
#ifdef GDK_WINDOWING_WIN32 | |
#include <gdk/gdkwin32.h> // for GDK_WINDOW_HWND |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
# -*- coding: utf-8; indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- | |
# | |
# Copyright (C) 2014 Shih-Yuan Lee (FourDollars) <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* gcc gio_mount_disk.c `pkg-config --cflags glib-2.0 gio-unix-2.0 --libs` -o gio_mount_disk */ | |
#include <stdio.h> | |
#include <glib.h> | |
#include <gio/gunixmounts.h> | |
int main(int argc, char* argv[]) | |
{ | |
GList *p, *points = g_unix_mount_points_get (NULL); | |
for (p = points; p != NULL; p = p->next) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python3 | |
from gi.repository import GLib, UDisks | |
no_options = GLib.Variant('a{sv}', {}) | |
udisks = UDisks.Client.new_sync(None) | |
manager = udisks.get_object_manager() | |
for item in manager.get_objects(): | |
part = item.get_partition() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo apt-get update | |
sudo apt-get install --yes bash-completion devscripts exuberant-ctags ubuntu-dev-tools vim vim-addon-manager vim-scripts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
<fontconfig> | |
<!-- Set fonts selection order for Chinese users --> | |
<match target="pattern"> | |
<test qual="any" name="family"> | |
<string>serif</string> | |
</test> | |
<test name="lang"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if [ -f "$HOME/.ssh-agent" ]; then | |
. "$HOME/.ssh-agent" | |
fi | |
PID="$(pidof ssh-agent)" | |
if [ -z "$PID" -o "$PID" != "$SSH_AGENT_PID" ]; then | |
if [ -n "$PID" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* -*- coding: utf-8; indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- */ | |
/** | |
* Copyright (C) 2013 Shih-Yuan Lee (FourDollars) <[email protected]> | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# -*- coding: utf-8; indent-tabs-mode: nil; tab-width: 2; c-basic-offset: 2; -*- | |
# vim:fileencodings=utf-8:expandtab:tabstop=2:shiftwidth=2:softtabstop=2 | |
# | |
# Copyright (C) 2013 Shih-Yuan Lee (FourDollars) <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. |