• Hands-free with 5 VB scripts that automate the use of Windows computersHands-free with 5 VB scripts that automate the use of Windows computers
    VB Script is scaled from Visual Basic programs used as Windows scripts can do anything from collecting important information about computer hardware to stopping and starting the
  • How to send Email with Windows PowerShellHow to send Email with Windows PowerShell
    Sending email is a simple task that most people can do. Open the email application, enter the message, the recipient and press the send button. Operation is not too difficult,
  • Download and install Java on the computerDownload and install Java on the computer
    To program Java on your computer, you need to install the Java environment, this tutorial will show you how to download and install Java on your computer.
  • Form a way of thinking like a programmerForm a way of thinking like a programmer
    Programmers are people who design, build and maintain computer software programs. In order to work as a programmer, you first need to form a way of thinking like a programmer.
  • 5 free online HTML editing tools that test the best code5 free online HTML editing tools that test the best code
    If you ask someone how to become web developers, they will tell you about JavaScript, Python, web programming, etc. and of course HTML.
  • Beginners of computer programming need to focus on what?Beginners of computer programming need to focus on what?
    Programming is very interesting and extremely useful. So what should beginners learn about computer programming? Let's find out in the article below!
  • What is Java? Why choose Java?What is Java?  Why choose Java?
    What is Java? Java is a high-level programming language, developed by Sun Microsystem and released in 1995. Java runs on a variety of platforms, such as Windows, Mac and various
  • Basic Java exercises, with sample decodingBasic Java exercises, with sample decoding
    To serve your Java learning needs, TipsMake.com has synthesized some Java exercises from many sources, including sample code (for some articles). Hopefully it can be helpful to
  • 4 ways to write multi-threaded code in Java4 ways to write multi-threaded code in Java
    Multithreading is a method of writing code to execute multiple tasks in parallel. Java offers great support for multi-threaded code writing right from Java 1.0 version. Recent
  • 13 important SQL statements Programmer needs to know13 important SQL statements Programmer needs to know
    13 important SQL commands that you will have to use frequently when manipulating data tables. If you are a programmer, you need to memorize these SQL statements.
  • Top 10 HTML tags that each blog and website owner should knowTop 10 HTML tags that each blog and website owner should know
    Web in the world is coded in many different languages. However, there is a language that can be found on all those sites, HyperText Markup Language, commonly referred to as HTML.
  • 17 simple HTML codes you can learn in 10 minutes17 simple HTML codes you can learn in 10 minutes
    Although modern web pages are often built with user-friendly interfaces, it's good to know some basic HTML . If you know the following 17 tags, you can create a basic web page from
  • Website construction: HTML and XHTML tricksWebsite construction: HTML and XHTML tricks
    This article will introduce you to some of the widely used HTML and XHTML tricks.
  • Basic about GitBasic about Git
    Git is the name of a distributed version management system (Distributed Version Control System - DVCS) is one of the most popular distributed version management systems today.
  • Git environment settingsGit environment settings
    Before you can use Git, you must install and make some configuration changes. Here are the steps to install Git client on Ubuntu and Centos Linux.
  • Git life cycleGit life cycle
    In this chapter, we will discuss Git's life cycle. And in the following chapter, we learn through Git commands for each activity.
  • Create activity in GitCreate activity in Git
    In this chapter, we will learn how to create a remote git repository, from which we will mention it as a Git server. We need a Git server to allow the team to collaborate.
  • Clone activity in GitClone activity in Git
    We have an empty repository on the server and Tom also pushed his first version. Now, Jerry can observe his changes. Clone operation creates a remote repository instance.
  • Make changes in GitMake changes in Git
    Jerry creates a copy of the repository on his machine and decides to perform basic operations. So he created the file string.c. After adding content, string.c will look like s
  • Review changes in GitReview changes in Git
    After rechecking the deposit details, Jerry realizes that the string length cannot be negative, so he decides to change the type of my_strlen function.