Posts

  How to hide credentials in application.properties create env.properties add it to .gitignore env.properties after that inside it fill the credentials DB_DATABASE =NameofyourappSavedIntoYourDB DB_USER =yourUsername DB_PASSWORD =SuperStrongPassword API_KEY =superkey import it in application.properties this will enable to access it but still not committing the credentials spring .config .import =file:env .properties spring .datasource .url =jdbc: h2 :file:~/${DB_DATABASE} spring .datasource .username =${DB_USER} spring .datasource .password =${DB_PASSWORD}

Questions you should try to answer before meeting any Venturre capitalist.

 Questions you should try to answer before meeting any Venture Capitalist.     Nothing is more instrumental for the startup success than being ready reckoner of information. Doing your homework before meeting an investor improves possibilities for investments. Every investor is human. Investing in startup is more an art than science. There are no formulas or algorithm. Decisions are driven by gut once they hear the startup pitch. The purpose of every meetings is to say enough to get the investor to want to take a next meeting with you. It should say something insightful, or be intriguing to the investor so that they are drawn in and want to know more. There is no scientific study on below list or it's a comprehensive list nor it's foolproof list. It is through my personal journey, experience after investing in 150+ startups individually in last 11 years and 50 startups through 100X.VC Nailing your short pitch or one-liner is an important part of the fundraising
Image
  Why should you choose yarn over npm   What is Yarn? Yarn is a JavaScript package manager created by Facebook. Yarn stands for Yet Another Resource Negotiator. It provides similar functionalities as NPM. It is an alternative to NPM when installing, uninstalling, and managing package dependencies from the NPM registry or GitHub repositories. Installation NPM is bundled with Node.js Runtime . It is Node.js Default Package Manager. In other words, when you install Node.js , NPM gets installed. To install a package using NPM, you use the syntax below. npm install <package name> . The package name can be any package you want to use in your project. For example, to install Express run npm install express . Some more distinct NPM package installation include: npm installs <package name> -- global . These are packages you install into your computer system’s local path and not your project location. Such packages can be used or accessed by any project you create.
Image
  C++ Core Guidelines     March 11, 2021 Editors: Bjarne Stroustrup Herb Sutter This is a living document under continuous improvement. Had it been an open-source (code) project, this would have been release 0.8. Copying, use, modification, and creation of derivative works from this project is licensed under an MIT-style license. Contributing to this project requires agreeing to a Contributor License. See the accompanying LICENSE file for details. We make this project available to "friendly users" to use, copy, modify, and derive from, hoping for constructive input. Comments and suggestions for improvements are most welcome. We plan to modify and extend this document as our understanding improves and the language and the set of available libraries improve. When commenting, please note the introduction that outlines our aims and general approach. The list of contributors is here . Problems: The sets of rules have not been completely checked for completeness, consiste