Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
{age":30,"job":"unemployed","marital":"married","education":"primary","default":"no","balance":1787,"housing":"no","loan":"no","contact":"cellular","day":19,"month":"oct","duration":79,"campaign":1,"pdays":-1,"previous":0,"poutcome":"unknown","y":"no"}
{age":33,"job":"services","marital":"married","education":"secondary","default":"no","balance":4789,"housing":"yes","loan":"yes","contact":"cellular","day":11,"month":"may","duration":220,"campaign":1,"pdays":339,"previous":4,"poutcome":"failure","y":"no"}
{age":35,"job":"management","marital":"single","education":"tertiary","default":"no","balance":1350,"housing":"yes","loan":"no","contact":"cellular","day":16,"month":"apr","duration":185,"campaign":1,"pdays":330,"previous":1,"poutcome":"failure","y":"no"}
{age":30,"job":"management","marital":"married","education":"tertiary","default":"no","balance":1476,"housing":"yes","loan":"yes","contact":"unknown","day":3,"month":"jun","duration":199,"campaign":4,"pdays":-1,"previous":0,"poutcome":"unknown","y":"no"}
{ag
@gbatumbya
gbatumbya / OpenWithSublimeText3.bat
Last active August 29, 2015 14:00 — forked from mrchief/LICENSE.md
Open with Sublime Text 3 (Icon included)
@echo off
SET stPath=C:\Program Files\Sublime Text 3\sublime_text.exe
rem add it for all file types
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text" /t REG_SZ /v "" /d "Open with Sublime Text" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text" /t REG_EXPAND_SZ /v "Icon" /d "%stPath%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text\command" /t REG_SZ /v "" /d "%stPath% \"%%1\"" /f
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text" /t REG_SZ /v "" /d "Open with Sublime Text" /f
@gbatumbya
gbatumbya / bgrace's vimrc
Created June 25, 2012 17:56
my vimrc with vundle extension
set t_Co=256
" Disable vi-compatibility
set nocompatible
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" Required for Vundle
filetype on