Skip to content

Instantly share code, notes, and snippets.

64c64
< download_url: 'http://nw.get-popcorn.com/'
---
> download_url: 'http://dl.node-webkit.org/'
79c79
< download_url: 'http://nw.get-popcorn.com/'
---
> download_url: 'http://dl.node-webkit.org/'
151c151
< }
@WhyNotHugo
WhyNotHugo / example.barrera.io.conf
Created May 20, 2014 04:26
Minimal nginx proxy example
server {
listen 8080;
server_name example.barrera.io;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/htdocs;
}
location / {
@WhyNotHugo
WhyNotHugo / wiki.barrera.io.conf
Created May 20, 2014 04:24
nginx proxy example
server {
listen 443 ssl;
server_name wiki.barrera.io;
ssl_certificate /var/www/certs/wiki.barrera.io/chain.crt;
ssl_certificate_key /var/www/certs/wiki.barrera.io/ssl.key;
include ssl.include;
include 50x.include;
# zypper ar -f http://sailfish.openrepos.net/ovekaaven/personal-main.repo
Adding repository 'Personal ovekaaven sailfish repository' .................................[done]
Repository 'Personal ovekaaven sailfish repository' successfully added
Enabled: Yes
Autorefresh: Yes
GPG check: Yes
URI: http://sailfish.openrepos.net/ovekaaven/personal/main
[root@Jolla nemo]# rpm --import http://sailfish.openrepos.net/openrepos.key
[root@Jolla nemo]# zypper refresh
@WhyNotHugo
WhyNotHugo / 98-mba6bl.conf
Created May 1, 2014 14:31
/etc/X11/xorg.conf.d/98-mba6bl.conf
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "Backlight" "mba6x_backlight"
EndSection
@WhyNotHugo
WhyNotHugo / gist:10016511
Last active August 29, 2015 13:58
popcorntime.PKGBUILD
# Maintainer: Attila Bukor <r1pp3rj4ck [at] w4it [dot] eu>
# Contributor: Hugo Osvaldo Barrera <hugo@barrera.io>
# Contributor: Eric Engestrom <aur [at] engestrom [dot] ch>
# Contributor: Iwan Timmer <irtimmer@gmail.com>
# Contributor: Ricardo Band <me [at] xengi [dot] de>
pkgname=popcorntime
pkgver=0.2.8
pkgrel=9
pkgdesc="Stream movies from torrents. Skip the downloads. Launch, click, watch."
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "Backlight" "mba6x_backlight"
EndSection
@WhyNotHugo
WhyNotHugo / calendar.py
Created October 16, 2013 04:01
A very simple, yet stylish calendar.
# -*- coding: utf-8 -*-
# Copyright (c) 2013 Hugo Osvaldo Barrera <hugo@osvaldobarrera.com.ar>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
package com.assia.dslo.gui.config;
import javax.servlet.ServletContext;
import org.ocpsoft.rewrite.annotation.RewriteConfiguration;
import org.ocpsoft.rewrite.config.Configuration;
import org.ocpsoft.rewrite.config.ConfigurationBuilder;
import org.ocpsoft.rewrite.config.Direction;
import org.ocpsoft.rewrite.servlet.config.Forward;
import org.ocpsoft.rewrite.servlet.config.HttpConfigurationProvider;
@WhyNotHugo
WhyNotHugo / PKGBUILD
Created July 13, 2013 21:11
Partial PKGBUILD for silicon-empire 2.0
Maintainer: Hugo Osvaldo Barrera <hugo@osvaldobarrera.com.ar>
pkgname=silicon-empire
pkgver=2.0.0
pkgrel=1
pkgdesc="Set of tools to manage and organize your optical discs like CDs, DVDs and Blu-rays."
arch=('i686' 'x86_64')
url="http://getsilicon.org/"
license=('GPL3')
depends=('fuseiso' 'phonon' 'taglib' 'cdrkit')