Skip to content

Instantly share code, notes, and snippets.

View xiorcal's full-sized avatar

Marceau "XioRcaL" Lacroix xiorcal

View GitHub Profile
@xiorcal
xiorcal / build related.sh
Last active November 20, 2022 15:47
usefull adb commands #adb #android
@xiorcal
xiorcal / bash.md
Last active January 4, 2019 12:23
Bash #cheatsheet #tips

Bash

Language convention

tooling

CLI tools

beautysh (github)

@xiorcal
xiorcal / keybase.md
Last active November 7, 2018 13:10
Keybase proof

Keybase proof

I hereby claim:

  • I am xiorcal on github.
  • I am xiorcal (https://keybase.io/xiorcal) on keybase.
  • I have a public key ASA75KYYiXpVDBfLtJyaQ1QP7hp19kRmV0jDxMgjNsAkXwo

To claim this, I am signing this object:

@xiorcal
xiorcal / eclipse templates.xml
Created August 21, 2015 14:47
ecplise's java templates
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<templates>
<template autoinsert="true" context="java" deleted="false" description="" enabled="true" name="logdeb">if(LOGGER.isDebugEnabled()){&#13;
LOGGER.debug(${cursor});&#13;
}</template>
<template autoinsert="true" context="java" deleted="false" description="initialise logger" enabled="true" name="logger">${:import(org.slf4j.Logger,org.slf4j.LoggerFactory)}&#13;
&#13;
/** Logger for ${enclosing_type} */&#13;
private static final Logger LOGGER = LoggerFactory.getLogger(${enclosing_type}.class);</template>
<template autoinsert="true" context="java" deleted="false" description="" enabled="true" name="singleton">/** instance of ${enclosing_type} (singleton) */&#13;