This file contains 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
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout some time, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# | |
# Please see https://i3wm.org/docs/userguide.html for a complete reference! |
This file contains 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
<keymap version="1" name="Default for GNOME FR" parent="Default for GNOME"> | |
<action id="ActivateAndroidMonitorToolWindow"> | |
<keyboard-shortcut first-keystroke="alt 6" /> | |
<keyboard-shortcut first-keystroke="alt minus" /> | |
</action> | |
<action id="ActivateChangesToolWindow"> | |
<keyboard-shortcut first-keystroke="alt 9" /> | |
<keyboard-shortcut first-keystroke="alt #10000c7" /> | |
</action> | |
<action id="ActivateDebugToolWindow"> |
This file contains 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
package utils | |
import org.assertj.core.api.Assertions | |
import org.junit.Test | |
import org.junit.runner.RunWith | |
import org.junit.runners.Parameterized | |
import java.util.concurrent.TimeUnit | |
@RunWith(Parameterized::class) | |
class KotlinTimeUnitTest(private val timeValue: Long) { |
This file contains 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
<keymap version="1" name="Default for XWin FR" parent="Default for XWin"> | |
<action id="ActivateAndroidMonitorToolWindow"> | |
<keyboard-shortcut first-keystroke="alt 6" /> | |
<keyboard-shortcut first-keystroke="alt minus" /> | |
</action> | |
<action id="ActivateChangesToolWindow"> | |
<keyboard-shortcut first-keystroke="alt 9" /> | |
<keyboard-shortcut first-keystroke="alt #10000c7" /> | |
</action> | |
<action id="ActivateDebugToolWindow"> |
This file contains 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 | |
# Find Unused (unreferences) layouts in android project | |
for f in `find ./src -iname "*.xml" | grep res/layout`; do echo $f ; git grep --count -e "R\.layout\.$(basename $f .xml)\W" --or -e "@layout/$(basename $f .xml)\W" | wc -l ; done | grep -B1 "^0" |
This file contains 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
import java.lang.reflect.InvocationHandler; | |
import java.lang.reflect.Method; | |
import java.lang.reflect.Proxy; | |
public class DynamicProxy { | |
private static final InvocationHandler INVOKE_DO_NOTHING = new InvocationHandler() { | |
@Override | |
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { | |
return null; |
This file contains 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
package com.vsct; | |
import org.junit.Test; | |
import java.text.SimpleDateFormat; | |
import java.util.Date; | |
import java.util.concurrent.TimeUnit; | |
import static org.junit.Assert.assertEquals; |
This file contains 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
#1 create fresh git clone | |
#2 track all remote branches | |
for b in `git branch -r | sed "s/ origin\///g"`; do git branch $b -t origin/$b; done |
This file contains 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 | |
import sys | |
import gtk | |
from gtk import gdk | |
import webkit | |
import gobject | |
page_url = len(sys.argv)>1 and sys.argv[1] or 'http://www.google.com' | |
gobject.threads_init() | |
win = gtk.Window() |
This file contains 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 | |
# invoke global X session script | |
#. /etc/X11/Xsession | |
# HOW-TO : | |
# 1. Disable any Display Manager (lightdm/gdm/gdm3) from executing on startup | |
# 2. Allow user to start X : | |
# a. Edit /etc/X11/Xwrapper.config | |
# b. Set value : "allowed_users=anybody" | |
# 3. insert "su kiosk -c xinit &" into /etc/rc.local |
NewerOlder