summaryrefslogtreecommitdiffstats
path: root/files
diff options
context:
space:
mode:
authormongo <andmarti@gmail.com>2017-05-02 16:47:01 -0300
committermongo <andmarti@gmail.com>2017-05-02 16:47:01 -0300
commit0a2dab8ac8bbfb0f1dc534ef4fe1b821bc2f43f6 (patch)
tree00ab2d62dad6740d839056224abb995c432995d1 /files
parent55d286a3f408e274866327ed29b5a930dbd10573 (diff)
renamed files to examples
Diffstat (limited to 'files')
-rw-r--r--files/Module/module.c33
-rwxr-xr-xfiles/csv/2010_dos.csv22
-rwxr-xr-xfiles/csv/2010_unix.csv22
-rw-r--r--files/csv/65500.csv64999
-rw-r--r--files/csv/65500.sc30184
-rw-r--r--files/csv/import.csv38
-rw-r--r--files/csv/l1.csv8
-rw-r--r--files/csv/l2.csv2
-rwxr-xr-xfiles/csv/n.csv3
-rwxr-xr-xfiles/csv/s.csv3
-rwxr-xr-xfiles/external/bci.sh2
-rw-r--r--files/gui_example/Makefile128
-rw-r--r--files/gui_example/gui.c185
-rw-r--r--files/gui_example/gui.h51
-rw-r--r--files/lua/getstock.lua35
-rw-r--r--files/lua/macro.lua21
-rw-r--r--files/lua/stock.readme9
-rw-r--r--files/lua/stock.sc26
-rw-r--r--files/lua/test.sc133
-rw-r--r--files/lua/trg_sql3.lua34
-rw-r--r--files/plot/plot_bar.sc43
-rw-r--r--files/plot/plot_line.sc78
-rw-r--r--files/plot/plot_pie.sc13
-rw-r--r--files/plot/plot_scatter.sc56
-rwxr-xr-xfiles/sc/a.sc101
-rwxr-xr-xfiles/sc/b.sc56
-rwxr-xr-xfiles/sc/color.sc714
-rw-r--r--files/sc/datetime.sc25
-rwxr-xr-xfiles/sc/defines.sc13
-rwxr-xr-xfiles/sc/export.sc19
-rw-r--r--files/sc/filter.sc36
-rw-r--r--files/sc/shift.sc48
-rwxr-xr-xfiles/sc/sort.sc40
-rwxr-xr-xfiles/sc/subtotals.sc67
-rw-r--r--files/ui_example/Makefile127
-rwxr-xr-xfiles/ui_example/tui.c197
-rwxr-xr-xfiles/ui_example/tui.h51
-rw-r--r--files/wide/chinese.sc7
-rw-r--r--files/wide/ucranian.sc7
-rwxr-xr-xfiles/xls/german.xlsbin14336 -> 0 bytes
-rwxr-xr-xfiles/xls/t1.xlsbin8192 -> 0 bytes
-rwxr-xr-xfiles/xlsx/date.xlsxbin4609 -> 0 bytes
-rw-r--r--files/xlsx/export.sc28
-rw-r--r--files/xlsx/export.xlsxbin5647 -> 0 bytes
-rwxr-xr-xfiles/xlsx/f1.xlsxbin8780 -> 0 bytes
-rwxr-xr-xfiles/xlsx/f2.xlsxbin9201 -> 0 bytes
-rwxr-xr-xfiles/xlsx/f3.xlsxbin6367 -> 0 bytes
-rwxr-xr-xfiles/xlsx/f3/[Content_Types].xml16
-rwxr-xr-xfiles/xlsx/f3/_rels/.rels7
-rwxr-xr-xfiles/xlsx/f3/docProps/app.xml5
-rwxr-xr-xfiles/xlsx/f3/docProps/core.xml5
-rwxr-xr-xfiles/xlsx/f3/docProps/custom.xml2
-rwxr-xr-xfiles/xlsx/f3/f3.xlsxbin6367 -> 0 bytes
-rwxr-xr-xfiles/xlsx/f3/xl/_rels/workbook.xml.rels8
-rwxr-xr-xfiles/xlsx/f3/xl/sharedStrings.xml6
-rwxr-xr-xfiles/xlsx/f3/xl/styles.xml49
-rwxr-xr-xfiles/xlsx/f3/xl/workbook.xml23
-rwxr-xr-xfiles/xlsx/f3/xl/worksheets/sheet1.xml65
-rwxr-xr-xfiles/xlsx/f3/xl/worksheets/sheet2.xml25
-rwxr-xr-xfiles/xlsx/f3/xl/worksheets/sheet3.xml25
-rw-r--r--files/xlsx/f4.xlsxbin5905 -> 0 bytes
-rwxr-xr-xfiles/xlsx/german2.xlsxbin7083 -> 0 bytes
-rwxr-xr-xfiles/xlsx/german3.xlsxbin5212 -> 0 bytes
-rwxr-xr-xfiles/xlsx/he.xlsxbin12643 -> 0 bytes
-rw-r--r--files/xlsx/products.xlsxbin110289 -> 0 bytes
-rw-r--r--files/xlsx/products2.xlsxbin74641 -> 0 bytes
-rwxr-xr-xfiles/xlsx/str.xlsxbin25558 -> 0 bytes
-rwxr-xr-xfiles/xlsx/t3.xlsxbin6135 -> 0 bytes
-rwxr-xr-xfiles/xlsx/test0and.xlsxbin5746 -> 0 bytes
69 files changed, 0 insertions, 97900 deletions
diff --git a/files/Module/module.c b/files/Module/module.c
deleted file mode 100644
index ba97fe7..0000000
--- a/files/Module/module.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- R.Pollak
- Trigger example in C
- to compile
- gcc -shared -fPIC -o module.so -g -Wall module.c
-
- on the trigger the ent structure is passed and whether the trigger was on Write or on Read. Write trigger, when it was written to selected cells,
- or Read from selected cells.
-*/
-
-#include <stdio.h>
-
-#include "sc.h"
-#include "macros.h"
-#include "utils/dictionary.h"
-#include "utils/string.h"
-#include "range.h"
-#include "color.h"
-#include "screen.h"
-#include "undo.h"
-#include "conf.h"
-#include "cmds.h"
-#include "trigger.h"
-
-extern char * query(char * );
-
-int do_c_call(struct ent *p , int rw) {
- FILE *fd = fopen("/tmp/modul.txt","a+");
- fprintf(fd,"%d %d %g %d\n",p->col,p->row,p->v,rw);
- fclose(fd);
-
- return(0);
-}
diff --git a/files/csv/2010_dos.csv b/files/csv/2010_dos.csv
deleted file mode 100755
index dbca662..0000000
--- a/files/csv/2010_dos.csv
+++ /dev/null
@@ -1,22 +0,0 @@
-TARJETA,DETALLE,FECHA ORIGINAL,IMPORTE ORIGINAL
-VISA,BALUT,12/01/2012,154
-VISA,MOVISTAR,24/02/2012,
-VISA,FARMACIA REGALO EVEN,20/03/2012,178.5
-MASTER,FRAVEGA CAMARA,20/08/2010,
-MASTER,MONTAGNE MOCHILA,06/12/2011,391.5
-MASTER,MERCADO PAGO BX2,30/11/2011,2273.7
-VISA,VESTIDO EVEN ANA ACOSTA,30/04/2012,260
-VISA,AES,13/05/2012,23
-VISA,PARTS CONNEXION,14/05/2012,432
-VISA,MARK TWAIN - chaleco gordo,15/06/2012,149
-VISA,CELU EVEN - Frávega,18/06/2012,899
-VISA,CENA ABASTO,23/06/2012,87
-VISA,ZAPATOS NEGROS MOCASINES - DAZ,05/07/2012,450
-VISA,FarmaCity Centro,06/07/2012,70.2
-VISA,FarmaCity Centro,14/07/2012,105
-VISA,Cafetera SAECO en Garbarino,21/07/2012,1099
-MASTER,McOwens,24/07/2012,159
-VISA,EXTRAVIO TARJETA,01/12/2012,24
-MASTER,MiniCuotas Riveiro,26/07/2012,259
-MASTER,RINONERA,28/07/2012,90
-MASTER,CENA SERRANO / MERIDIANO 58,27/07/2012,220
diff --git a/files/csv/2010_unix.csv b/files/csv/2010_unix.csv
deleted file mode 100755
index 18a23d8..0000000
--- a/files/csv/2010_unix.csv
+++ /dev/null
@@ -1,22 +0,0 @@
-TARJETA,DETALLE,FECHA ORIGINAL,IMPORTE ORIGINAL
-VISA,BALUT,12/01/2012,154
-VISA,MOVISTAR,24/02/2012,
-VISA,FARMACIA REGALO EVEN,20/03/2012,178.5
-MASTER,FRAVEGA CAMARA,20/08/2010,
-MASTER,MONTAGNE MOCHILA,06/12/2011,391.5
-MASTER,MERCADO PAGO BX2,30/11/2011,2273.7
-VISA,VESTIDO EVEN ANA ACOSTA,30/04/2012,260
-VISA,AES,13/05/2012,23
-VISA,PARTS CONNEXION,14/05/2012,432
-VISA,MARK TWAIN - chaleco gordo,15/06/2012,149
-VISA,CELU EVEN - Frávega,18/06/2012,899
-VISA,CENA ABASTO,23/06/2012,87
-VISA,ZAPATOS NEGROS MOCASINES - DAZ,05/07/2012,450
-VISA,FarmaCity Centro,06/07/2012,70.2
-VISA,FarmaCity Centro,14/07/2012,105
-VISA,Cafetera SAECO en Garbarino,21/07/2012,1099
-MASTER,McOwens,24/07/2012,159
-VISA,EXTRAVIO TARJETA,01/12/2012,24
-MASTER,MiniCuotas Riveiro,26/07/2012,259
-MASTER,RINONERA,28/07/2012,90
-MASTER,CENA SERRANO / MERIDIANO 58,27/07/2012,220
diff --git a/files/csv/65500.csv b/files/csv/65500.csv
deleted file mode 100644
index 5176bba..0000000
--- a/files/csv/65500.csv
+++ /dev/null
@@ -1,64999 +0,0 @@
-Date,Category,Title,Notes,Notes 2,Links,,,,,,,,
-01/01/2017,Linux,rofi-surfraw | bookmarks,GUI/CLI,,,,,,,,,,
-01/01/2017,Movie,Planes Trains & Automoobiles 1987,,,,,,,,,,,
-01/03/2016,TVShow,Quantico Season 2,,,,,,,,,,,
-01/03/2016,Wii,Captain America Super Soldier,,,,,,,,,,,
-01/05/2017,Movie,Mechanic Resurrection 2016,,,,,,,,,,,
-01/06/2017,Movie,Goonies 1985,,,,,,,,,,,
-11/22/2016,Movie,The Core 2003,,,,,,,,,,,
-11/25/2016,Music,Mya,,,,,,,,,,,
-11/28/2016,Movie,Suicide Squad Extended 2016,,,,,,,,,,,
-12/01/2016,Xbox,NFL Street,,,,,,,,,,,
-12/02/2016,TVShow,Mr. Robot S2 last 2 ep,,,,,,,,,,,
-12/03/2016,Android,KingRoot - Root any Phone,might have backdoors?,,,,,,,,,,
-12/03/2016,Android,Purify - block all apps that sucks battery life,,,,,,,,,,,
-12/03/2016,Android,primative ftpd,,,,,,,,,,,
-12/03/2016,Audiobook,001-DC Comics - Infinite Crisis - Part 1 of 2.mp3,30min,,,,,,,,,,
-12/03/2016,Audiobook,002-DC Comics - Infinite Crisis - Part 1 of 2.mp3,,,,,,,,,,,
-12/05/2016,NES,Ice Hockey,,,,,,,,,,,
-12/06/2016,MAME,Ninja Baseball Bat Man,,,,,,,,,,,
-12/06/2016,NES,Baseball Stars,,,,,,,,,,,
-12/10/2016,Linux,vimwiki,TUI,,,,,,,,,,
-12/12/2016,Podcast,PornDirectorPodcast,,,http://www.porndirectorpodcast.com/main/,,,,,,,,
-12/12/2016,Podcast,The Cine-Files,,,http://www.podbay.fm/show/1124549378,,,,,,,,
-12/15/2016,PCGame,Bionic Commando Rearmed,,,,,,,,,,,
-12/17/2016,Linux,vbx function [Virtualbox CLI],RQBy: Schizo,,https://www.youtube.com/channel/UCsYCPJe7-oWHQE_D8RAO07g,,,,,,,,
-12/22/2016,Wii,Rayman Origins,,,,,,,,,,,
-12/23/2016,Movie,Top Gun 1986 Special Edition,,,,,,,,,,,
-12/25/2016,Linux,rofi - dmenu launcher replacement,GUI/CLI,,,,,,,,,,
-12/26/2016,Movie,Black Dynamite (2009),,,,,,,,,,,
-12/28/2016,Movie,Ben Hur 2016,,,,,,,,,,,
-12/29/2016,Movie,Deepwater Horizon 2016,,,,,,,,,,,
-12/29/2016,Movie,The Accountant 2016,,,,,,,,,,,
-12/30/2016,Movie,The Magnificent Seven 2016,,,,,,,,,,,
-,Android,IceCatMobile,Web Browser,,https://f-droid.org/repository/browse/?fdfilter=icecat&fdid=org.gnu.icecat,,,,,,,,
-,Audiobook,003-DC Comics - Infinite Crisis - Part 1 of 2.mp3,,,,,,,,,,,
-,Audiobook,004-DC Comics - Infinite Crisis - Part 1 of 2.mp3,,,,,,,,,,,
-,Audiobook,Darth Plagueis,,,,,,,,,,,
-,Audiobook,The Life-Changing Magic of Tidying Up,,,,,,,,,,,
-,Comic,Saga,,,,,,,,,,,
-,Comic,Walking Dead 157,,,,,,,,,,,
-,Comic,X-Men Age of Apocalypse,,,,,,,,,,,
-,Comic,Y The Last Man,,,,,,,,,,,
-,Linux,Ampache: web based audio/video streaming,WEBUI,,http://ampache.org/,,,,,,,,
-,Linux,Clonezilla,,,,,,,,,,,
-,Linux,CopyQ - Clipboard manager,GUI,,,,,,,,,,
-,Linux,EncFS - an Encrypted Filesystem,,,,,,,,,,,
-,Linux,Firejail,,,,,,,,,,,
-,Linux,LUKS encryption/ cryptsetup,CLI,,,,,,,,,,
-,Linux,Piwigo is photo gallery software for the web,WEBUI,,http://piwigo.org/,,,,,,,,
-,Linux,Samba,CLI,,,,,,,,,,
-,Linux,SoundNode - opensource SoundCloud app,GUI,,http://www.soundnodeapp.com/,,,,,,,,
-,Linux,Vocal - Podcast Client,GUI,,http://vocalproject.net/,,,,,,,,
-,Linux,albumr - Imgur album downloader,CLI,,https://pypi.python.org/pypi/albumr,,,,,,,,
-,Linux,alpine,,,,,,,,,,,
-,Linux,anamnesis - clipboard manager,GUI,,,,,,,,,,
-,Linux,asciiquarium,TUI,,,,,,,,,,
-,Linux,bulk - bulk rename interactive,Alex Leferry,,https://www.youtube.com/channel/UCv9nzkds34PnGOu6u_QvVBQ,,,,,,,,
-,Linux,ccze - colorizer,CLI,,,,,,,,,,
-,Linux,centerim5,TUI,,,,,,,,,,
-,Linux,clipmenu - dmenu clipboard manager,GUI,,,,,,,,,,
-,Linux,cvim,,,,,,,,,,,
-,Linux,forecash - cashflow forecasting,CLI,,https://github.com/fsareshwala/forecash,,,,,,,,
-,Linux,fzf-clipboard,,,,,,,,,,,
-,Linux,kakoune - vim alternative,Alex Leferry,,https://www.youtube.com/channel/UCv9nzkds34PnGOu6u_QvVBQ,,,,,,,,
-,Linux,keynav,,,,,,,,,,,
-,Linux,krill - rss filter feeds,CLI,,https://github.com/p-e-w/krill,,,,,,,,
-,Linux,ledger - accounting system,CLI,,http://www.ledger-cli.org/,,,,,,,,
-,Linux,megadl - mega.co.nz downloader,CLI,wait for 2.0 to have options to download single files from public folder,,,,,,,,,
-,Linux,mpd + ncmpcpp,CLI/TUI,,,,,,,,,,
-,Linux,newsbeuter macros,CLI,,,,,,,,,,
-,Linux,nmtui,wifi,,,,,,,,,,
-,Linux,nq - queue task,CLI,,,,,,,,,,
-,Linux,open dvd producer - create DVD with menus,GUI,,http://opendvdproducer.jonata.org/,,,,,,,,
-,Linux,redshift,CLI,,,,,,,,,,
-,Linux,rofi-clipboard,,,,,,,,,,,
-,Linux,rofi-locate,,,,,,,,,,,
-,Linux,rofi-playonlinux,,,,,,,,,,,
-,Linux,rofi-snippet,,,,,,,,,,,
-,Linux,rss-bridge,,,https://github.com/RSS-Bridge/rss-bridge,,,,,,,,
-,Linux,screenfetch,CLI,,,,,,,,,,
-,Linux,setxkbmap,,,,,,,,,,,
-,Linux,socli - Stack overflow command line client,CLI,,https://github.com/gautamkrishnar/socli,,,,,,,,
-,Linux,sxhkd,,,,,,,,,,,
-,Linux,systemd timers,,,,,,,,,,,
-,Linux,taffy - A command-line audio tagging tool,CLI,,https://github.com/jangler/taffy,,,,,,,,
-,Linux,task spooler multiple instances,CLI,,,,,,,,,,
-,Linux,timertab - manage systemd timers,,,https://github.com/amlamarra/timertab,,,,,,,,
-,Linux,tweeper - a Twitter to RSS web scraper,CLI,https://ao2.it/en/blog/2013/07/07/tweeper-twitter-rss-web-scraper,https://www.reddit.com/r/linux/comments/5gbx0r/which_browser_do_you_use_on_linux_i_thinking/darh3tq/,,,,,,,,
-,Linux,veracrypt,,,,,,,,,,,
-,Linux,wicd-curses,wifi,,,,,,,,,,
-,Linux,wifi-menu,wifi,,,,,,,,,,
-,Linux,wpa_supplicant ,wifi,,,,,,,,,,
-,Linux,wttr - weather info,CLI,,,,,,,,,,
-,Linux,xbindkeys,,,,,,,,,,,
-,Linux,xcape,,,,,,,,,,,
-,Linux,xchainkeys,,,,,,,,,,,
-,Linux,xdo,,,,,,,,,,,
-,Linux,xfce4-screenshooter (selection area imgu''),GUI,,,,,,,,,,
-,Linux,xinput,,,,,,,,,,,
-,Linux,xmodmap,,,,,,,,,,,
-,Linux,xsendkey,,,,,,,,,,,
-,Linux,xsetwacom ,,,,,,,,,,,
-,Linux,xvkbd,,,,,,,,,,,
-,MAME,Baseball Stars 2,,,,,,,,,,,
-,Movie,A Christmas Story 1983,,,,,,,,,,,
-,Movie,Doctor Strange 2016,,,,,,,,,,,
-,Movie,Eternal Sunshine of the Spotless Mind (2004),,,,,,,,,,,
-,Movie,Frozen,,,,,,,,,,,
-,Movie,Harry Potter,,,,,,,,,,,
-,Movie,Jaws (1975),,,,,,,,,,,
-,Movie,Moana 2016,,,,,,,,,,,
-,Movie,Mud 2012,,,,,,,,,,,
-,Movie,Pete's Dragon 2016,,,,,,,,,,,
-,Movie,Pump Up The Volume 1990,,,,,,,,,,,
-,Movie,Snakes on a Plane (2006),,,,,,,,,,,
-,Movie,Snowden 2016,,,,,,,,,,,
-,Movie,Swiss Army Man (2016),,,,,,,,,,,
-,Movie,The Legend of Tarzan 2016,,,,,,,,,,,
-,Movie,Trainwreck (2015),,,,,,,,,,,
-,Movie,True Romance (1993),,,,,,,,,,,
-,Movie,War Dogs 2016,,,,,,,,,,,
-,Music,Ashanti,,,,,,,,,,,
-,Music,BackStreet/Dre,,,,,,,,,,,
-,Music,Bubba Sparxxx,,,,,,,,,,,
-,Music,Ciara,,,,,,,,,,,
-,Music,Dido,,,,,,,,,,,
-,Music,Dr Dre Instramentals,,,,,,,,,,,
-,Music,Gloria Estefan,,,,,,,,,,,
-,Music,Juvenile,,,,,,,,,,,
-,Music,Meghan Trainor,,,,,,,,,,,
-,Music,Petey Pablo,,,,,,,,,,,
-,Music,Puff Daddy,,,,,,,,,,,
-,Music,Run DMC,,,,,,,,,,,
-,Music,Street Fighter,,,,,,,,,,,
-,Music,Super Mario World,,,,,,,,,,,
-,Music,TLC,,,,,,,,,,,
-,Music,Young Buck,,,,,,,,,,,
-,NES,Bionic Commando,,,,,,,,,,,
-,NES,Contra,,,,,,,,,,,
-,NES,Mega Man 2,,,,,,,,,,,
-,NES,Palamedes,Puzzle,,,,,,,,,,
-,NES,Super Mario Bros 3,,,,,,,,,,,
-,PCGame,Batman: Arkham Asylum,,,,,,,,,,,
-,PCGame,Dead or Alive 5 With Nude Patch,,,,,,,,,,,
-,PCGame,For Honor,,,,,,,,,,,
-,PCGame,Killer Instinct,,,,,,,,,,,
-,PCGame,Rise of the Tomb Raider,,,,,,,,,,,
-,PCGame,Street Fighter 5,,,,,,,,,,,
-,PCGame,The Division,,,,,,,,,,,
-,PSX,ESPN Extreme Games,,,,,,,,,,,
-,PSX,Street Fighter: The Movie,,,,,,,,,,,
-,SNES,Punch Out,,,,,,,,,,,
-,TVShow,3% Netflix,,,,,,,,,,,
-,TVShow,Alone [History Channel],,,,,,,,,,,
-,TVShow,Black Mirror,,,,,,,,,,,
-,TVShow,Roman Empire Reign of Blood,,,,,,,,,,,
-,TVShow,Stranger Things,,,,,,,,,,,
-,TVShow,The People v. O.J. Simpson: American Crime Story,,,,,,,,,,,
-,TVShow,The Wire,,,,,,,,,,,
-,TVShow,Westworld,,,,,,,,,,,
-,Wii,Kirby Yarn,,,,,,,,,,,
-,Wii,Mario Gaxaly,,,,,,,,,,,
-,Wii,Punch Out w/ Balance Board,,,,,,,,,,,
-,Wii,Resident Evil,,,,,,,,,,,
-,Wii,Skate w/ Board,,,,,,,,,,,
-,Xbox,Aliens Versus Predator: Extinction,RTS,,,,,,,,,,
-,Xbox,Star Wars Battlefront 2,FPS,,,,,,,,,,
-01/01/2017,Linux,rofi-surfraw | bookmarks,GUI/CLI,,,,,,,,,,
-01/01/2017,Movie,Planes Trains & Automoobiles 1987,,,,,,,,,,,
-01/03/2016,TVShow,Quantico Season 2,,,,,,,,,,,
-01/03/2016,Wii,Captain America Super Soldier,,,,,,,,,,,
-01/05/2017,Movie,Mechanic Resurrection 2016,,,,,,,,,,,
-01/06/2017,Movie,Goonies 1985,,,,,,,,,,,
-11/22/2016,Movie,The Core 2003,,,,,,,,,,,
-11/25/2016,Music,Mya,,,,,,,,,,,
-11/28/2016,Movie,Suicide Squad Extended 2016,,,,,,,,,,,
-12/01/2016,Xbox,NFL Street,,,,,,,,,,,
-12/02/2016,TVShow,Mr. Robot S2 last 2 ep,,,,,,,,,,,
-12/03/2016,Android,KingRoot - Root any Phone,might have backdoors?,,,,,,,,,,
-12/03/2016,Android,Purify - block all apps that sucks battery life,,,,,,,,,,,
-12/03/2016,Android,primative ftpd,,,,,,,,,,,
-12/03/2016,Audiobook,001-DC Comics - Infinite Crisis - Part 1 of 2.mp3,30min,,,,,,,,,,
-12/03/2016,Audiobook,002-DC Comics - Infinite Crisis - Part 1 of 2.mp3,,,,,,,,,,,
-12/05/2016,NES,Ice Hockey,,,,,,,,,,,
-12/06/2016,MAME,Ninja Baseball Bat Man,,,,,,,,,,,
-12/06/2016,NES,Baseball Stars,,,,,,,,,,,
-12/10/2016,Linux,vimwiki,TUI,,,,,,,,,,
-12/12/2016,Podcast,PornDirectorPodcast,,,http://www.porndirectorpodcast.com/main/,,,,,,,,
-12/12/2016,Podcast,The Cine-Files,,,http://www.podbay.fm/show/1124549378,,,,,,,,
-12/15/2016,PCGame,Bionic Commando Rearmed,,,,,,,,,,,
-12/17/2016,Linux,vbx function [Virtualbox CLI],RQBy: Schizo,,https://www.youtube.com/channel/UCsYCPJe7-oWHQE_D8RAO07g,,,,,,,,
-12/22/2016,Wii,Rayman Origins,,,,,,,,,,,
-12/23/2016,Movie,Top Gun 1986 Special Edition,,,,,,,,,,,
-12/25/2016,Linux,rofi - dmenu launcher replacement,GUI/CLI,,,,,,,,,,
-12/26/2016,Movie,Black Dynamite (2009),,,,,,,,,,,
-12/28/2016,Movie,Ben Hur 2016,,,,,,,,,,,
-12/29/2016,Movie,Deepwater Horizon 2016,,,,,,,,,,,
-12/29/2016,Movie,The Accountant 2016,,,,,,,,,,,
-12/30/2016,Movie,The Magnificent Seven 2016,,,,,,,,,,,
-,Android,IceCatMobile,Web Browser,,https://f-droid.org/repository/browse/?fdfilter=icecat&fdid=org.gnu.icecat,,,,,,,,
-,Audiobook,003-DC Comics - Infinite Crisis - Part 1 of 2.mp3,,,,,,,,,,,
-,Audiobook,004-DC Comics - Infinite Crisis - Part 1 of 2.mp3,,,,,,,,,,,
-,Audiobook,Darth Plagueis,,,,,,,,,,,
-,Audiobook,The Life-Changing Magic of Tidying Up,,,,,,,,,,,
-,Comic,Saga,,,,,,,,,,,
-,Comic,Walking Dead 157,,,,,,,,,,,
-,Comic,X-Men Age of Apocalypse,,,,,,,,,,,
-,Comic,Y The Last Man,,,,,,,,,,,
-,Linux,Ampache: web based audio/video streaming,WEBUI,,http://ampache.org/,,,,,,,,
-,Linux,Clonezilla,,,,,,,,,,,
-,Linux,CopyQ - Clipboard manager,GUI,,,,,,,,,,
-,Linux,EncFS - an Encrypted Filesystem,,,,,,,,,,,
-,Linux,Firejail,,,,,,,,,,,
-,Linux,LUKS encryption/ cryptsetup,CLI,,,,,,,,,,
-,Linux,Piwigo is photo gallery software for the web,WEBUI,,http://piwigo.org/,,,,,,,,
-,Linux,Samba,CLI,,,,,,,,,,
-,Linux,SoundNode - opensource SoundCloud app,GUI,,http://www.soundnodeapp.com/,,,,,,,,
-,Linux,Vocal - Podcast Client,GUI,,http://vocalproject.net/,,,,,,,,
-,Linux,albumr - Imgur album downloader,CLI,,https://pypi.python.org/pypi/albumr,,,,,,,,
-,Linux,alpine,,,,,,,,,,,
-,Linux,anamnesis - clipboard manager,GUI,,,,,,,,,,
-,Linux,asciiquarium,TUI,,,,,,,,,,
-,Linux,bulk - bulk rename interactive,Alex Leferry,,https://www.youtube.com/channel/UCv9nzkds34PnGOu6u_QvVBQ,,,,,,,,
-,Linux,ccze - colorizer,CLI,,,,,,,,,,
-,Linux,centerim5,TUI,,,,,,,,,,
-,Linux,clipmenu - dmenu clipboard manager,GUI,,,,,,,,,,
-,Linux,cvim,,,,,,,,,,,
-,Linux,forecash - cashflow forecasting,CLI,,https://github.com/fsareshwala/forecash,,,,,,,,
-,Linux,fzf-clipboard,,,,,,,,,,,
-,Linux,kakoune - vim alternative,Alex Leferry,,https://www.youtube.com/channel/UCv9nzkds34PnGOu6u_QvVBQ,,,,,,,,
-,Linux,keynav,,,,,,,,,,,
-,Linux,krill - rss filter feeds,CLI,,https://github.com/p-e-w/krill,,,,,,,,
-,Linux,ledger - accounting system,CLI,,http://www.ledger-cli.org/,,,,,,,,
-,Linux,megadl - mega.co.nz downloader,CLI,wait for 2.0 to have options to download single files from public folder,,,,,,,,,
-,Linux,mpd + ncmpcpp,CLI/TUI,,,,,,,,,,
-,Linux,newsbeuter macros,CLI,,,,,,,,,,
-,Linux,nmtui,wifi,,,,,,,,,,
-,Linux,nq - queue task,CLI,,,,,,,,,,
-,Linux,open dvd producer - create DVD with menus,GUI,,http://opendvdproducer.jonata.org/,,,,,,,,
-,Linux,redshift,CLI,,,,,,,,,,
-,Linux,rofi-clipboard,,,,,,,,,,,
-,Linux,rofi-locate,,,,,,,,,,,
-,Linux,rofi-playonlinux,,,,,,,,,,,
-,Linux,rofi-snippet,,,,,,,,,,,
-,Linux,rss-bridge,,,https://github.com/RSS-Bridge/rss-bridge,,,,,,,,
-,Linux,screenfetch,CLI,,,,,,,,,,
-,Linux,setxkbmap,,,,,,,,,,,
-,Linux,socli - Stack overflow command line client,CLI,,https://github.com/gautamkrishnar/socli,,,,,,,,
-,Linux,sxhkd,,,,,,,,,,,
-,Linux,systemd timers,,,,,,,,,,,
-,Linux,taffy - A command-line audio tagging tool,CLI,,https://github.com/jangler/taffy,,,,,,,,
-,Linux,task spooler multiple instances,CLI,,,,,,,,,,
-,Linux,timertab - manage systemd timers,,,https://github.com/amlamarra/timertab,,,,,,,,
-,Linux,tweeper - a Twitter to RSS web scraper,CLI,https://ao2.it/en/blog/2013/07/07/tweeper-twitter-rss-web-scraper,https://www.reddit.com/r/linux/comments/5gbx0r/which_browser_do_you_use_on_linux_i_thinking/darh3tq/,,,,,,,,
-,Linux,veracrypt,,,,,,,,,,,
-,Linux,wicd-curses,wifi,,,,,,,,,,
-,Linux,wifi-menu,wifi,,,,,,,,,,
-,Linux,wpa_supplicant ,wifi,,,,,,,,,,
-,Linux,wttr - weather info,CLI,,,,,,,,,,
-,Linux,xbindkeys,,,,,,,,,,,
-,Linux,xcape,,,,,,,,,,,
-,Linux,xchainkeys,,,,,,,,,,,
-,Linux,xdo,,,,,,,,,,,
-,Linux,xfce4-screenshooter (selection area imgu''),GUI,,,,,,,,,,
-,Linux,xinput,,,,,,,,,,,
-,Linux,xmodmap,,,,,,,,,,,
-,Linux,xsendkey,,,,,,,,,,,
-,Linux,xsetwacom ,,,,,,,,,,,
-,Linux,xvkbd,,,,,,,,,,,
-,MAME,Baseball Stars 2,,,,,,,,,,,
-,Movie,A Christmas Story 1983,,,,,,,,,,,
-,Movie,Doctor Strange 2016,,,,,,,,,,,
-,Movie,Eternal Sunshine of the Spotless Mind (2004),,,,,,,,,,,
-,Movie,Frozen,,,,,,,,,,,
-,Movie,Harry Potter,,,,,,,,,,,
-,Movie,Jaws (1975),,,,,,,,,,,
-,Movie,Moana 2016,,,,,,,,,,,
-,Movie,Mud 2012,,,,,,,,,,,
-,Movie,Pete's Dragon 2016,,,,,,,,,,,
-,Movie,Pump Up The Volume 1990,,,,,,,,,,,
-,Movie,Snakes on a Plane (2006),,,,,,,,,,,
-,Movie,Snowden 2016,,,,,,,,,,,
-,Movie,Swiss Army Man (2016),,,,,,,,,,,
-,Movie,The Legend of Tarzan 2016,,,,,,,,,,,
-,Movie,Trainwreck (2015),,,,,,,,,,,
-,Movie,True Romance (1993),,,,,,,,,,,
-,Movie,War Dogs 2016,,,,,,,,,,,
-,Music,Ashanti,,,,,,,,,,,
-,Music,BackStreet/Dre,,,,,,,,,,,
-,Music,Bubba Sparxxx,,,,,,,,,,,
-,Music,Ciara,,,,,,,,,,,
-,Music,Dido,,,,,,,,,,,
-,Music,Dr Dre Instramentals,,,,,,,,,,,
-,Music,Gloria Estefan,,,,,,,,,,,
-,Music,Juvenile,,,,,,,,,,,
-,Music,Meghan Trainor,,,,,,,,,,,
-,Music,Petey Pablo,,,,,,,,,,,
-,Music,Puff Daddy,,,,,,,,,,,
-,Music,Run DMC,,,,,,,,,,,
-,Music,Street Fighter,,,,,,,,,,,
-,Music,Super Mario World,,,,,,,,,,,
-,Music,TLC,,,,,,,,,,,
-,Music,Young Buck,,,,,,,,,,,
-,NES,Bionic Commando,,,,,,,,,,,
-,NES,Contra,,,,,,,,,,,
-,NES,Mega Man 2,,,,,,,,,,,
-,NES,Palamedes,Puzzle,,,,,,,,,,
-,NES,Super Mario Bros 3,,,,,,,,,,,
-,PCGame,Batman: Arkham Asylum,,,,,,,,,,,
-,PCGame,Dead or Alive 5 With Nude Patch,,,,,,,,,,,
-,PCGame,For Honor,,,,,,,,,,,
-,PCGame,Killer Instinct,,,,,,,,,,,
-,PCGame,Rise of the Tomb Raider,,,,,,,,,,,
-,PCGame,Street Fighter 5,,,,,,,,,,,
-,PCGame,The Division,,,,,,,,,,,
-,PSX,ESPN Extreme Games,,,,,,,,,,,
-,PSX,Street Fighter: The Movie,,,,,,,,,,,
-,SNES,Punch Out,,,,,,,,,,,
-,TVShow,3% Netflix,,,,,,,,,,,
-,TVShow,Alone [History Channel],,,,,,,,,,,
-,TVShow,Black Mirror,,,,,,,,,,,
-,TVShow,Roman Empire Reign of Blood,,,,,,,,,,,
-,TVShow,Stranger Things,,,,,,,,,,,
-,TVShow,The People v. O.J. Simpson: American Crime Story,,,,,,,,,,,
-,TVShow,The Wire,,,,,,,,,,,
-,TVShow,Westworld,,,,,,,,,,,
-,Wii,Kirby Yarn,,,,,,,,,,,
-,Wii,Mario Gaxaly,,,,,,,,,,,
-,Wii,Punch Out w/ Balance Board,,,,,,,,,,,
-,Wii,Resident Evil,,,,,,,,,,,
-,Wii,Skate w/ Board,,,,,,,,,,,
-,Xbox,Aliens Versus Predator: Extinction,RTS,,,,,,,,,,
-,Xbox,Star Wars Battlefront 2,FPS,,,,,,,,,,
-01/01/2017,Linux,rofi-surfraw | bookmarks,GUI/CLI,,,,,,,,,,
-01/01/2017,Movie,Planes Trains & Automoobiles 1987,,,,,,,,,,,
-01/03/2016,TVShow,Quantico Season 2,,,,,,,,,,,
-01/03/2016,Wii,Captain America Super Soldier,,,,,,,,,,,
-01/05/2017,Movie,Mechanic Resurrection 2016,,,,,,,,,,,
-01/06/2017,Movie,Goonies 1985,,,,,,,,,,,
-11/22/2016,Movie,The Core 2003,,,,,,,,,,,
-11/25/2016,Music,Mya,,,,,,,,,,,
-11/28/2016,Movie,Suicide Squad Extended 2016,,,,,,,,,,,
-12/01/2016,Xbox,NFL Street,,,,,,,,,,,
-12/02/2016,TVShow,Mr. Robot S2 last 2 ep,,,,,,,,,,,
-12/03/2016,Android,KingRoot - Root any Phone,might have backdoors?,,,,,,,,,,
-12/03/2016,Android,Purify - block all apps that sucks battery life,,,,,,,,,,,
-12/03/2016,Android,primative ftpd,,,,,,,,,,,
-12/03/2016,Audiobook,001-DC Comics - Infinite Crisis - Part 1 of 2.mp3,30min,,,,,,,,,,
-12/03/2016,Audiobook,002-DC Comics - Infinite Crisis - Part 1 of 2.mp3,,,,,,,,,,,
-12/05/2016,NES,Ice Hockey,,,,,,,,,,,
-12/06/2016,MAME,Ninja Baseball Bat Man,,,,,,,,,,,
-12/06/2016,NES,Baseball Stars,,,,,,,,,,,
-12/10/2016,Linux,vimwiki,TUI,,,,,,,,,,
-12/12/2016,Podcast,PornDirectorPodcast,,,http://www.porndirectorpodcast.com/main/,,,,,,,,
-12/12/2016,Podcast,The Cine-Files,,,http://www.podbay.fm/show/1124549378,,,,,,,,
-12/15/2016,PCGame,Bionic Commando Rearmed,,,,,,,,,,,
-12/17/2016,Linux,vbx function [Virtualbox CLI],RQBy: Schizo,,https://www.youtube.com/channel/UCsYCPJe7-oWHQE_D8RAO07g,,,,,,,,
-12/22/2016,Wii,Rayman Origins,,,,,,,,,,,
-12/23/2016,Movie,Top Gun 1986 Special Edition,,,,,,,,,,,
-12/25/2016,Linux,rofi - dmenu launcher replacement,GUI/CLI,,,,,,,,,,
-12/26/2016,Movie,Black Dynamite (2009),,,,,,,,,,,
-12/28/2016,Movie,Ben Hur 2016,,,,,,,,,,,
-12/29/2016,Movie,Deepwater Horizon 2016,,,,,,,,,,,
-12/29/2016,Movie,The Accountant 2016,,,,,,,,,,,
-12/30/2016,Movie,The Magnificent Seven 2016,,,,,,,,,,,
-,Android,IceCatMobile,Web Browser,,https://f-droid.org/repository/browse/?fdfilter=icecat&fdid=org.gnu.icecat,,,,,,,,
-,Audiobook,003-DC Comics - Infinite Crisis - Part 1 of 2.mp3,,,,,,,,,,,
-,Audiobook,004-DC Comics - Infinite Crisis - Part 1 of 2.mp3,,,,,,,,,,,
-,Audiobook,Darth Plagueis,,,,,,,,,,,
-,Audiobook,The Life-Changing Magic of Tidying Up,,,,,,,,,,,
-,Comic,Saga,,,,,,,,,,,
-,Comic,Walking Dead 157,,,,,,,,,,,
-,Comic,X-Men Age of Apocalypse,,,,,,,,,,,
-,Comic,Y The Last Man,,,,,,,,,,,
-,Linux,Ampache: web based audio/video streaming,WEBUI,,http://ampache.org/,,,,,,,,
-,Linux,Clonezilla,,,,,,,,,,,
-,Linux,CopyQ - Clipboard manager,GUI,,,,,,,,,,
-,Linux,EncFS - an Encrypted Filesystem,,,,,,,,,,,
-,Linux,Firejail,,,,,,,,,,,
-,Linux,LUKS encryption/ cryptsetup,CLI,,,,,,,,,,
-,Linux,Piwigo is photo gallery software for the web,WEBUI,,http://piwigo.org/,,,,,,,,
-,Linux,Samba,CLI,,,,,,,,,,
-,Linux,SoundNode - opensource SoundCloud app,GUI,,http://www.soundnodeapp.com/,,,,,,,,
-,Linux,Vocal - Podcast Client,GUI,,http://vocalproject.net/,,,,,,,,
-,Linux,albumr - Imgur album downloader,CLI,,https://pypi.python.org/pypi/albumr,,,,,,,,
-,Linux,alpine,,,,,,,,,,,
-,Linux,anamnesis - clipboard manager,GUI,,,,,,,,,,
-,Linux,asciiquarium,TUI,,,,,,,,,,
-,Linux,bulk - bulk rename interactive,Alex Leferry,,https://www.youtube.com/channel/UCv9nzkds34PnGOu6u_QvVBQ,,,,,,,,
-,Linux,ccze - colorizer,CLI,,,,,,,,,,
-,Linux,centerim5,TUI,,,,,,,,,,
-,Linux,clipmenu - dmenu clipboard manager,GUI,,,,,,,,,,
-,Linux,cvim,,,,,,,,,,,
-,Linux,forecash - cashflow forecasting,CLI,,https://github.com/fsareshwala/forecash,,,,,,,,
-,Linux,fzf-clipboard,,,,,,,,,,,
-,Linux,kakoune - vim alternative,Alex Leferry,,https://www.youtube.com/channel/UCv9nzkds34PnGOu6u_QvVBQ,,,,,,,,
-,Linux,keynav,,,,,,,,,,,
-,Linux,krill - rss filter feeds,CLI,,https://github.com/p-e-w/krill,,,,,,,,
-,Linux,ledger - accounting system,CLI,,http://www.ledger-cli.org/,,,,,,,,
-,Linux,megadl - mega.co.nz downloader,CLI,wait for 2.0 to have options to download single files from public folder,,,,,,,,,
-,Linux,mpd + ncmpcpp,CLI/TUI,,,,,,,,,,
-,Linux,newsbeuter macros,CLI,,,,,,,,,,
-,Linux,nmtui,wifi,,,,,,,,,,
-,Linux,nq - queue task,CLI,,,,,,,,,,
-,Linux,open dvd producer - create DVD with menus,GUI,,http://opendvdproducer.jonata.org/,,,,,,,,
-,Linux,redshift,CLI,,,,,,,,,,
-,Linux,rofi-clipboard,,,,,,,,,,,
-,Linux,rofi-locate,,,,,,,,,,,
-,Linux,rofi-playonlinux,,,,,,,,,,,
-,Linux,rofi-snippet,,,,,,,,,,,
-,Linux,rss-bridge,,,https://github.com/RSS-Bridge/rss-bridge,,,,,,,,
-,Linux,screenfetch,CLI,,,,,,,,,,