Skip to content

Instantly share code, notes, and snippets.

View undx's full-sized avatar

Emmanuel GALLOIS undx

View GitHub Profile
@undx
undx / order.json
Last active January 28, 2026 09:59
order
{
"order": [
{
"orderno": 1001,
"custid": "C41",
"order_date": "2017-04-29",
"ship_date": "2017-05-03",
"items": [
{
"itemno": 347,
@undx
undx / customer.json
Last active January 28, 2026 10:06
customer
{
"customer": [
{
"custid": "C13",
"name": "T. Cruise",
"address": {
"street": "201 Main St.",
"city": "St. Louis, MO",
"zipcode": "63101"
},
@undx
undx / customers.json
Created January 28, 2026 08:37
dataprep
{
"customer": [
{
"custid": "C13",
"name": "T. Cruise",
"address": {
"street": "201 Main St.",
"city": "St. Louis, MO",
"zipcode": "63101"
},
@undx
undx / regions.json
Last active January 28, 2026 08:33 — forked from eguillossou/lookup1.json
states.json
{
"content": [
{
"Region": "West",
"Country": "U.S.A."
},
{
"Region": "South West",
"Country": "U.S.A."
},
@undx
undx / actionlist.vim
Last active May 31, 2018 14:36 — forked from zchee/actionlist.vim
IdeaVim actionlist
--- Actions ---
$Copy <M-C>
$Cut <M-X> <S-Del>
$Delete <Del> <BS> <M-BS>
$LRU
$Paste <M-V>
$Redo <M-S-Z> <A-S-BS>
$SearchWeb <A-S-G>
$SelectAll <M-A>
$Undo <M-Z>
@undx
undx / cvimrc.vim
Created May 25, 2018 14:14
cvimrc
set typelinkhints
let searchlimit = 40
let scrollstep = 70
let fullpagescrollpercent = 100
let locale = "fr"
let mapleader = ","
let hintcharacters = "qwertyuiasdfghjklzxcvbnm"
let vimport=8001
map <Leader>vr :source ~/.cvimrc<CR>
map <Leader>h :history<Space>
@undx
undx / .irbrc
Created February 27, 2013 13:49
# rvm gemset use global
# gem install irbtools
# gem install terminal-notifier
#
require 'irbtools/configure'
#
# Irbtools.welcome_message=
#
# fancy_irb options
default_options = {
@undx
undx / main.m
Created January 3, 2012 10:56
ABQuery
/* ABQuery
*
* Copyright 2003 Brendan Cully <brendan@kublai.com>
*
* 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 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
@undx
undx / tmp_Vim_RC.vim
Created September 22, 2011 10:35
tmp_Vim_RC
set nocompatible
"set rtp+=~/.vim/ " needed under fenêtres(tm).
"
"
call pathogen#runtime_append_all_bundles()
call pathogen#helptags()
"
filetype on
syntax on
colorscheme desert
@undx
undx / .irbrc
Created April 1, 2011 14:53
my standard irb resources file
# wirble
begin
require 'wirble'
Wirble.init
Wirble.colorize
rescue LoadError => err
warn "Couldn't load Wirble: #{err}"
puts "try: 'gem install -r wirble'"
#
require 'irb/completion'