List generated by manually parsing the source code of the NCERT Textbook download page
This is a generic doc for any directional discussion. You can mold it to your use case (e.g. major eng initiative, team strategy, partnership alignment, etc)
Where are we today? Explain relevant context for the reader to understand the problem or opportunity you’re going after.
You might not have all the answers for how we can do better next time. You can use this doc to structure retrospective discussions with your team.
Overview:
- What broke?
- Why did it break? What was the root cause?
- Who does the breakage affect? How severe was it?
Design docs are a way to propose future work and get detailed technical feedback.
Brief description of what the problem or opportunity is. Give an overview of the domain and pain points. What is the current solution? Give some details about what its shortcomings are.
In this article, I will share some of my experience on installing NVIDIA driver and CUDA on Linux OS. Here I mainly use Ubuntu as example. Comments for CentOS/Fedora are also provided as much as I can.
""" | |
Simple, hacked-up image similarity search using Tensorflow + the inception | |
CNN as feature extractor and ANNoy for nearest neighbor search. | |
Requires Tensorflow and ANNoy. | |
Based on gist code under | |
https://gist.github.com/david90/e98e1c41a0ebc580e5a9ce25ff6a972d | |
""" | |
from annoy import AnnoyIndex |
Lesson 1 SUMMARY | |
1. The cursor is moved using either the arrow keys or the hjkl keys. | |
h (left) j (down) k (up) l (right) | |
2. To start Vim from the shell prompt type: vim FILENAME <ENTER> | |
3. To exit Vim type: <ESC> :q! <ENTER> to trash all changes. | |
OR type: <ESC> :wq <ENTER> to save the changes. |
//Import Google Product Taxonomy | |
//WITH IDENTIFIERS | |
//downloaded from https://support.google.com/merchants/answer/1705911 | |
create index on :Cat1(name); | |
create index on :Cat2(name); | |
create index on :Cat3(name); | |
create index on :Cat4(name); | |
create index on :Cat5(name); | |
create index on :Cat6(name); |