Microsoft Word

Generate random Text : To create 60 paragraphs of 8 lines each =rand(40,8) OR =lorem(40,8) useful shortcuts CommandUsectrl + dOpen Font formatting Dialog Boxctrl +shift + >increase font size of selected textF12save current file to local foldercrtl + hfind and replace Show distance on Ruler : hold ALT and using mouse, drag margin in a … Continue reading Microsoft Word

Tesseract +Python for OCR

1.Download and install latest for windows : https://github.com/UB-Mannheim/tesseract/wiki once installed, add the env path in windows. (C:\\ Program Files\Tesseract-OCRtesseract.exe“) 2.Python wrapper for Tesseract pip install pytesseract 3. install openCV pip install opencv-python Practice code: https://nanonets-com.cdn.ampproject.org/v/s/nanonets.com/blog/ocr-with-tesseract/amp/?amp_js_v=a6 https://www.analyticsvidhya.com/blog/2021/06/optical-character-recognitionocr-with-tesseract-opencv-and-python/ github link https://github.com/tesseract-ocr/tesseract https://github.com/tesseract-ocr/tessdoc set env setting on windows: https://www.youtube.com/watch?v=ttSmDKFtkrc https://www.youtube.com/watch?v=Rb93uLXiTwA other info https://github.com/madmaze/pytesseract https://towardsdatascience.com/pre-processing-in-ocr-fc231c6035a7

AI

To know basics of : Probability, Statistics, Linear Algebra. AI : set of programs that can mimic human intelligence to some extent. ML: Strict subset of AI. It is one the many techniques used to implement AI system.It involves techniques in which large data sets are used to train programs so that the necessary task … Continue reading AI

documentation & knowledge sharing platform

ReadtheDocs https://readthedocs.org/ https://docs.readthedocs.io/en/stable/tutorial/ https://glpi-user-documentation.readthedocs.io/fr/latest/modules/tools/knowledgebase.html https://docs.readthedocs.io/en/stable/examples.html Sphinx https://www.sphinx-doc.org/en/master/ Docusaurus  'https://www.youtube.com/watch?v=xKOhIJQi84w 'https://www.youtube.com/watch?v=ImSK0nv7KfY Confluence https://www.atlassian.com/software/confluence github http://www.github.com Freshdesk.com 'https://www.youtube.com/watch?v=3TRgFoYlYt8 'https://www.youtube.com/watch?v=-nXc1ZnySEE https://freshdesk.com/helpdesk-management/knowledge-base?utm_source=youtube&utm_medium=90secKB&utm_campaign=YToptim https://freshdesk.com/knowledge-base-software?utm_source=youtube&utm_medium=90secKB&utm_campaign=YToptim Orchid https://github.com/orchidhq/Orchid Others: https://www.gitbook.com/explore https://www.mkdocs.org/ https://orchid.run/wiki/user-manual/getting-started/quickstart https://docsify.js.org/#/ https://vuepress.vuejs.org/ https://slatedocs.github.io/slate/#introduction https://stackoverflow.co/teams/pricing hubspot 'https://www.bookstackapp.com/ 'https://www.mkdocs.org/

Microsoft SQL Server – Installation process

Installation Steps: https://www.youtube.com/watch?v=Y_J6zMvV_jM Basics of SQL server: https://www.youtube.com/playlist?list=PL08903FB7ACA1C2FB Connect Python to SQL Server: import pypyodbc as odbc #pip install pypyodbc DRIVER_NAME = 'SQL SERVER' SERVER_NAME="LAPTOP-12345" DATABASE_NAME="Students" connection_string=f""" DRIVER={{{DRIVER_NAME}}}; SERVER={SERVER_NAME}; DATABASE={DATABASE_NAME}; Truse_Connection=yes; """ conn = odbc.connect(connection_string) print(conn) cursor = conn.cursor() cursor.execute('SELECT TOP (10) FirstName from Students') for i in cursor: print(i) Run SQL Server on VS … Continue reading Microsoft SQL Server – Installation process