ASAmit Sahuinqa-amitsahu.hashnode.dev路Jun 7, 2021 路 4 min readReady to cook meals 馃崨 and dockerReady to cook meals 馃崨 (Just heat and eat), this is great idea to get access of one's favorite food anywhere. What does this pack contains? Everything ( raw ingredients+spices+salt + sugar :D) which is basically needed to prepare that meal at place...00
ASAmit Sahuinqa-amitsahu.hashnode.dev路May 2, 2021 路 2 min read[Beginners guide] must know terminal commands to start withHow to launch terminal in different os type terminal in spotlight search in mac type cmd in all programs of windows ctrl+shift+t in linux pwd - Print Working Directory Use Case : to get current working directory Command : pwd Available options : ...00
ASAmit Sahuinqa-amitsahu.hashnode.dev路May 2, 2021 路 1 min readCheck if file exists at given path using Java and create if NOTProblem statement : Want to check if a file exists or not at given location and create if not to avoid FileNotFoundexception Solution : using Java public void createFileIfDoesNotExists() throws IOException { File usersHTMLFile = new File(System.getPr...01W