Skip to content

Instantly share code, notes, and snippets.

View ahaasler's full-sized avatar

Adrian Haasler García ahaasler

View GitHub Profile
@ahaasler
ahaasler / ulauncher-emoji-install-error.log
Created April 2, 2021 18:47
ulauncher-emoji-install-error.log
2021-04-02 20:45:16,964 | INFO | ulauncher: main() | Ulauncher version 5.10.0
2021-04-02 20:45:16,964 | INFO | ulauncher: main() | Extension API version 2.0.0
2021-04-02 20:45:16,964 | INFO | ulauncher: main() | GTK+ 3.24.28
2021-04-02 20:45:16,964 | INFO | ulauncher: main() | Is Wayland: True
2021-04-02 20:45:16,965 | INFO | ulauncher: main() | Wayland compatibility: off
2021-04-02 20:45:16,987 | DEBUG | ulauncher.ui.windows.Builder: __init__() | consider using a pythonic name instead of design name 'input-box'
2021-04-02 20:45:16,992 | DEBUG | ulauncher.ui.windows.Builder: do_connect() | connect builder by name 'ulauncher_window','destroy', 'on_destroy'
2021-04-02 20:45:16,992 | DEBUG | ulauncher.ui.windows.Builder: do_connect() | connect builder by name 'ulauncher_window','focus_in_event', 'on_focus_in_event'
2021-04-02 20:45:16,992 | DEBUG | ulauncher.ui.windows.Builder: do_connect() | connect builder by name 'ulauncher_window','focus_out_event', 'on_focus_out_event'
2021-04-02 20:45:16,994 | DEBUG | ulau
@ahaasler
ahaasler / gist:6bf219885d2e27ebae553e7252501628
Created March 6, 2020 07:38 — forked from trongthanh/gist:2779392
How to move a folder from one repo to another and keep its commit history
# source: http://st-on-it.blogspot.com/2010/01/how-to-move-folders-between-git.html
# First of all you need to have a clean clone of the source repository so we didn't screw the things up.
git clone git://server.com/my-repo1.git
# After that you need to do some preparations on the source repository, nuking all the entries except the folder you need to move. Use the following command
git filter-branch --subdirectory-filter your_dir -- -- all
# This will nuke all the other entries and their history, creating a clean git repository that contains only data and history from the directory you need. If you need to move several folders, you have to collect them in a single directory using the git mv command.
We couldn’t find that file to show.

Tarta de fruta

Ingredientes

Base

Ingrediente Cantidad
@ahaasler
ahaasler / ahaasler.opml
Last active June 21, 2017 14:03
Adrian Haasler García's subscriptions
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Adrian Haasler García's subscriptions</title>
</head>
<body>
<outline text="Android" title="Android">
<outline type="rss" text="Phandroid" title="Phandroid" xmlUrl="http://phandroid.com/feed/" htmlUrl="http://phandroid.com"/>
<outline type="rss" text="Xataka Android" title="Xataka Android" xmlUrl="http://www.xatakandroid.com/index.xml" htmlUrl="http://www.xatakandroid.com"/>
@ahaasler
ahaasler / .vimrc
Last active August 29, 2015 14:20
My .vimrc file.
execute pathogen#infect()
syntax on
filetype plugin indent on
set laststatus=2
set t_Co=256
let g:airline#extensions#tabline#enabled = 1
let g:airline_powerline_fonts = 1
let g:airline_theme='powerlineish'
set spell spelllang=en_us
colorscheme molokai
@ahaasler
ahaasler / .nanorc
Last active August 29, 2015 14:14
My .nanorc file.
set autoindent
set fill 72
set historylog
set morespace
set nohelp
set quickblank
set regexp
set smooth
set softwrap
set tabsize 4