Skip to content

Instantly share code, notes, and snippets.

View tvvignesh's full-sized avatar
🤓
Hacking my way through this world..

Vignesh T.V. tvvignesh

🤓
Hacking my way through this world..
View GitHub Profile
@tvvignesh
tvvignesh / browser-extensions.md
Last active November 20, 2019 03:02
References for Cross-Browser extension development
@tvvignesh
tvvignesh / linux-reference.md
Last active May 18, 2019 12:12
References when using Linux
@tvvignesh
tvvignesh / tools.md
Last active November 3, 2019 12:21
Tools I use in my system
  1. Google Chrome
  2. VSCode
  3. VLC
  4. QBittorrent
  5. Geany
  6. Docker and Docker Compose
  7. Node.js (NVM)
  8. GIT GUI
  9. OpenJDK
  10. Evolution
@tvvignesh
tvvignesh / BuyingGuide.md
Created December 8, 2018 17:26
Checklist to consider before buying anything
  1. Why am I buying it?
  2. Do I really need it? If not, do I really love it?
  3. What is the Return of Investment (ROI)?
  4. How many hours of work is it worth? How will I manage the finances?
  5. Can I take it for rent if it is a temporary need?
  6. Are there alternatives for the same?
  7. Can I recycle or sell it after usage?
  8. Is it socially and environmentally friendly?
@tvvignesh
tvvignesh / redis.md
Created December 6, 2018 14:09
Redis installation and commands

wget http://download.redis.io/releases/redis-5.0.2.tar.gz

tar xzf redis-5.0.2.tar.gz

cd redis-5.0.2

cd deps

make hiredis jemalloc linenoise lua geohash-int

@tvvignesh
tvvignesh / MTech.md
Last active November 23, 2018 22:44
Notes/References for Masters

These are the materials I used for some of the courses I studied at MTech. Links are given against specific topics.

Information Retrieval

  1. Term Document Matrix - https://www.youtube.com/watch?v=9Ib0SQkQmNA
  2. Positional Index - https://www.youtube.com/watch?v=QVVvx_Csd2I
  3. Order of processing - https://web.stanford.edu/class/cs276/handouts/lecture1-intro-handout-1-per.pdf
  4. Boolean Retrieval Model - https://www.youtube.com/watch?v=TIN_02pJU-Y&index=6&list=PLaZQkZp6WhWwoDuD6pQCmgVyDbUWl_ZUi&t=0s
  5. Permuterm Index - https://www.youtube.com/watch?v=j789k96g5aQ&index=4&list=PLPIRGCawmSHwdyQ5Ss_qqafUu02lL0Kl9&t=0s
  6. Naive Bayes Classifier - https://www.youtube.com/watch?v=RixQygYyDKI
  7. Information Retrieval courses -
@tvvignesh
tvvignesh / DocumentProcessing.md
Created November 23, 2018 11:47
Process Documents

Convert PPTX to PDF using libreoffice

libreoffice --headless --invisible --convert-to pdf *.pptx

Combine multiple PDFs to form a single PDF with layout options

pdfjam *.pdf --nup 3x4 --landscape --outfile output.pdf

@tvvignesh
tvvignesh / iisnode.md
Last active May 18, 2019 12:11
Using IISNode

Webconfig file when using IIS Node - https://github.com/Azure/iisnode

<configuration>
  <system.webServer>

    <!-- indicates that the hello.js file is a node.js application 
    to be handled by the iisnode module -->