Skip to content

Instantly share code, notes, and snippets.

@weshouman
weshouman / NLP Guide.md
Last active October 7, 2016 06:38
a personal guide for NLP stuff

Note: Keonkim has a brilliant guide for almost every language and tool.
Note: A [search][2] by most stars for nlp on github gives a lot of repos too.

What comes next will be some highlighted stuff, which personally came of interest for me.


Are you a web/frontend person, check this JS nlp_compromise library.

@weshouman
weshouman / tip 2.md
Last active October 7, 2016 10:09
command of the day tips

  1. Ensure having a clean index (nothing is staged).
  2. Stage the files of interest (assuming they are the files in src/).
git add src/
  1. Stash interactively what we want for the patch
@weshouman
weshouman / scoping.md
Last active October 22, 2016 06:10
Advanced: Ruby difference between class definitions

Imagine having a Food module within the our Zoo module.
Other classes than delicious could be defined too in the Food module.

We actually want to know how using this class is possible in other modules.

module Zoo
  module Food
    class Delicious
      # code
    end
@weshouman
weshouman / elixir notes.md
Last active October 24, 2016 20:58
a guide for moving around into an elixir project

Configurations

  • Configurations files structure and navigating them: Github guide
  • Generally:
config/
├── config.exs
├── dev.exs
├── prod.exs
└── test.exs
@weshouman
weshouman / cmd_aliases.cmd
Last active November 4, 2016 07:09
things to do upon having a new windows installation
@echo off
:: this is a file template for cmd_aliases mentioned in the main tutorial
:: originally captured from the reference SO question http://stackoverflow.com/questions/20530996/aliases-in-windows-command-prompt
:: Temporary system path at cmd startup (examples)
::set PATH=%PATH%;"C:\Program Files\Sublime Text 2\"
:: Add to path by command (examples)
@weshouman
weshouman / script_command.md
Last active December 28, 2016 04:49
logging session into a typescript

saving the current session with it's colors, useful for documentation and redirecting output with colors.
example usage:

script output_file

Usages

Documentation

Having multiple commands that we want to demo for someone else, alongside with their outputs, everything in its colors ... here's the command.

@weshouman
weshouman / proccess_starter.md
Created December 28, 2016 05:08
processes, this is a wip gist
@weshouman
weshouman / file_structure.md
Last active January 20, 2017 22:58
Tagaini Jisho Notes

Tagaini Jisho 2 File Structure

project
└──src
  │  tagaini_config.h //main application configurations
  └──core
      │  paths.h // a utility to search for a given filename (extensively used to get db files)
      │  // many other important utilities
      │
 └──gui
@weshouman
weshouman / git_study.md
Last active February 3, 2017 15:21
git tips and tricks
@weshouman
weshouman / front_end.md
Last active February 6, 2017 09:06
study materials for front end

Caution

This Gist is a WIP

The Big Story

How it feels to learn Javascript in 2016
If you didn't understand something/anything ... at least you know what's coming in your next Google search

While reading I wished I could differentiate between Bower, net registery, CDN and Browserify ... no luck yet. But here follows what I came up too.