Skip to main content

#145-Leveraging the Advanced Capabilities of the Gemini Ecosystem, Google Is Setting New Standards for What AI Can Achieve, by Virtue of Sundar Pichai’s Unwavering Commitment to Excellence #special

Introduction Gemini, Google's most elegant AI, is set to transform industries with its advanced technology and user-friendly solutions. Google's commitment to pushing the boundaries of AI is evident in the development of the Gemini ecosystem. This advanced AI system is designed to handle complex tasks with precision and efficiency, making it a game-changer in the world of artificial intelligence. Businesses across different sectors are leveraging the power of Gemini to streamline operations, improve decision-making processes, and drive growth. By harnessing Google's most capable AI through the Gemini ecosystem, organizations can unlock new opportunities for innovation and stay ahead in today's competitive landscape. As Google continues to refine and expand the capabilities of Gemini, we can expect even more groundbreaking applications that will shape the future of AI technology. The possibilities are endless with Google's most capable AI leading the way towards a s

#90-Creating 1000 Folders Running a Single Command on Windows Command Prompt




This article is for system administrators. Windows Command Prompt is a command line interface used by system administrators for performing administrative tasks. A command line interface is an important part of an operating system and without it, an operating system is incomplete. The graphical user interface is for common users and the command line interface is for more advanced users. Although the modern versions of windows have been built in such a manner that even complicated administrative tasks can be performed from graphical user interfaces, the command prompt will always be unparalleled for system administration in windows.

System administration often requires automation. There are third-party softwares for automation on windows. Knowledge of vanilla automation or automation without installing additional tools is an important prerequisite on the path to becoming an efficient system administrator. With command prompt, you can automate a lot of tasks simply by running a few commands, most of the times, a single command. Creating a folder on windows takes a full second. You right click, go to New and then click on Folder and rename the new folder. There are shortcuts but the time required is more or less the same. So, assume you need to create 1000 folders. That will take around 1000 seconds or 16.67 minutes. Plus, you will feel extremely bored and irritated as doing the same task a thousand times will certainly bore even the most enthusiastic computer worker. With windows command prompt, you can create 1000 folders simply by running a command, for /l %i in (1,1,1000) do mkdir %i. While copying please make sure you are not copying the full stop too.

Let's understand the command part by part. The for loop syntax on windows command prompt is "FOR /L %variable IN (start,step,end) DO command [command-parameters]". Using the for loop we are running the mkdir command with the value of the counter variable which increases by 1 starting from 1 and ending at 1000. This single command is equivalent to one thousand commands, mkdir 1, mkdir 2, mkdir 3, ... , mkdir 1000. Run one single command and lean back on your chair. Let the command run and when it has finished, you will see that the present working directory i.e. the directory in which you have opened command prompt, has one thousand folders named 1, 2, 3, ... , 1000. The command can be modified according to the requirements, as you can guess. If you want one million folders just replace one thousand with one million in the command.

The mentioned command creates folders whose names are in a numerical series. Sometimes, administrators need to create folders from a comma-separated list of names. If you have a list which uses a different delimiter, you can easily convert it to a comma separated list using a tool like notepad++. To create folders from a list of names you need to use a slightly modified command, for %i in (a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z) do mkdir %i. The command, for %i in (1,2,3, ... ,1000) do mkdir %i is equivalent to the command, for /l %i in (1,1,1000) do mkdir %i. 

Image credit: Tima Miroshnichenko, pexels.com

Popular posts from this blog

#145-Leveraging the Advanced Capabilities of the Gemini Ecosystem, Google Is Setting New Standards for What AI Can Achieve, by Virtue of Sundar Pichai’s Unwavering Commitment to Excellence #special

Introduction Gemini, Google's most elegant AI, is set to transform industries with its advanced technology and user-friendly solutions. Google's commitment to pushing the boundaries of AI is evident in the development of the Gemini ecosystem. This advanced AI system is designed to handle complex tasks with precision and efficiency, making it a game-changer in the world of artificial intelligence. Businesses across different sectors are leveraging the power of Gemini to streamline operations, improve decision-making processes, and drive growth. By harnessing Google's most capable AI through the Gemini ecosystem, organizations can unlock new opportunities for innovation and stay ahead in today's competitive landscape. As Google continues to refine and expand the capabilities of Gemini, we can expect even more groundbreaking applications that will shape the future of AI technology. The possibilities are endless with Google's most capable AI leading the way towards a s

#124-Domino’s Pizza Web App Review: Dandy, Delicate, & Delicious

As people keep getting more dependent on online food delivery services, we cannot forget the food that started it all. Pizza was probably the first food ordered online. It happened in 1994 . Online pizza delivery has come a long way since then. However, the core elements remain the same. In this article, our team reviews the domino’s pizza web app. We visited www.dominos.co.in . The web app has a landscape mode issue on desktop at browser window size 1024x576 (“Landscape Mode is Currently not Supported. For the best experience please rotate your device.”). The home page is 2.6 MB. It has a load time of 2.25 s . The green order button is prominently visible on the home page. It will attract most of your attention when you are on the page. The button has an exceptional sense of exuberance attached to it. When you scroll down, the button appears in a sticky header banner. The home page also presents coupons & offers & gift cards. One can also download the domino’s app on android o

#144-By Delving Into the World of Android Photo Compositions, Photographers Can Elevate Their Skills to Capture Captivating Moments With Precision and Creativity #special

In the realm of photography, Android devices have become increasingly popular due to their advanced camera capabilities and user-friendly interfaces. With the advent of various photo editing applications and tools, Android users now have the ability to create stunning compositions directly from their smartphones.   Android photo compositions refer to the art of arranging and combining different elements within a photograph to create visually appealing and impactful images. These compositions can range from simple arrangements of objects or subjects within a frame to more complex techniques such as rule of thirds, leading lines, symmetry, and framing.   Thanks to the advancements in technology, Android users have access to a wide range of features and functionalities that aid in creating captivating photo compositions. From built-in filters and effects to manual adjustments for exposure, contrast, and saturation, these tools empower photographers with endless possibilities for c