Posts

Microsoft SEAL installation on macOS

Image
Microsoft SEAL is an easy-to-use open-source (MIT licensed) homomorphic encryption library developed by the Cryptography and Privacy Research Group at Microsoft. Microsoft SEAL is written in modern standard C++ and is easy to compile and run in many different environments. For more information about the Microsoft SEAL project, see sealcrypto.org . brew install cmake autoconf automake libtool shtool gflags xcode-select --install git clone https://github.com/google/googletest cd googletest-master cmake . make make install git clone https://github.com/microsoft/SEAL cd SEAL

Resolution and Megapixel (8K / 4K UHD / 1440p / FHD)

Image
Aspect Ratio Proportion 17:9 1.88 16:9 1.77 5:3 1.66 16:10 1.6 3:2 1.5 4:3 1.33 5:4 1.25

Install git-lfs in MacOS

Image
Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise. 1. Download git-lfs from  https://git-lfs.github.com/ 2. Extract tarball: $ tar zxvf git-lfs-darwin-amd64-v2.10.0.tar.gz   3. Run install script: $ sudo ./install.sh 4. Allow git-lfs app from Menu > System Preferences > Security & Privacy > allow git-lfs 5. Intsall git-lfs from git: $ git lfs install This guide installs Git Large File Storage on macOS. Git LFS replaces large files such as audio, video, datasets, and graphics with small text pointers in the repository, while the real content lives on a remote store. Keeping big binaries out of the main history keeps clones fast and the repo manageable. After installing, you run git lfs install once and then track the file types you want it to handle.

Google Search API in Python 3

Image
[image source:  https://towardsdatascience.com/current-google-search-packages-using-python-3-7-a-simple-tutorial-3606e459e0d4 ] Install the Google package in python: pip install google Code: try :         from googlesearch import search except ImportError:         print("No Module named 'google' Found") count = 0 for i in search(query="devharsh", tld='co.in', lang='en'):         count += 1         print(i)         if(count > 20):                 break Output: (base) devharsh@Devharshs-MBP Downloads % python google_search.py http://devharshinfotech.com/ http://devharshinfotech.com/aboutus.html http://devharshinfotech.com/services.html http://devharshinfotech.com/banking.html http://devharshinfotech.com/clients.html https://www.linkedin.com/company/devharsh-infotech-pvt-ltd- https:...

Install git on NetBSD 8.1

Image
I am running NetBSD 8.1 on Virtualbox. Use the following commands to install and configure git on NetBSD if it was not pre-installed. $ export PKG_PATH=" http://ftp.netbsd.org/pub/pkgsrc/packages/NetBSD/amd64/8.1/All/ " $ su # echo $PKG_PATH # pkg_add -v pkgin # pkg_add -v git # exit $ git $ git config --global user.email "devharsh@live.in" $ git config --global user.name "Devharsh Trivedi" $ git config --global http.sslVerify false 

Top 10 Sites for Computer Science & Engineering [2019]

Image
*Top 10 Sites for your career:* 1. LinkedIn 2. Indeed 3. Careerealism 4. Job-Hunt 5. JobBait 6. Careercloud 7. GM4JH 8. Personalbrandingblog 9. Jibberjobber 10. Neighbors-helping-neighbors *Top 10 Tech Skills in demand in 2019:* 1. Machine Learning 2. Mobile Development 3. SEO/SEM Marketing 4. Data Visualization 5. Data Engineering 6. UI/UX Design 7. Cyber-security 8. Cloud Computing/AWS 9. Blockchain 10. IOT *Top 10 Sites to learn Excel for free:* Search for these on Google: 1. Microsoft Excel Help Center 2. Excel Exposure 3. Chandoo 4. Excel Central 5. Contextures 6. Excel Hero 7. Mr. Excel 8. Improve Your Excel 9. Excel Easy 10. Excel-Jet *Top 10 Sites for Free Online Education:* *Search for these on Google:* 1. Coursera 2. edX 3. Khan Academy 4. Udemy 5. iTunesU Free Courses 6. MIT OpenCourseWare 7. Stanford Online 8. Codecademy 9. Open Culture Online Courses *Top 10 Sites to review your resume for free:* 1. Zety Resume Builder 2. Resumonk 3. Resume.com 4...

Blogger post automation via Python

Image
Step 1: Go to https://console.developers.google.com and create a new project Step 2: Go to API Library and search for Blogger Step 3: Enable Blogger API v3.