Everybody loves the visual effect of the falling binary code known as ” Rain ” in The Matrix. In this article, we gonna show you an easy way to create The Matrix rain in your Command Prompt.

Steps To Create A Matrix Rain In Command Prompt

Step 1: Open Notepad.

 

Step 2: Copy and paste the below code in your notepad

@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%.
goto start

Step 3: Click on ” File ” and then ” Save As ” option. Save your file with a ” .bat ” extension i.e ” OnlineCmag.bat “.

Step 4: Run that batch file as an administrator.

How To Create Your Own Computer Clock Using Notepad

Today we are going to show you an interesting notepad trick which lets you create your own computer clock with date and time. You can customize the PC clock

Read More

To enlarge The Screen

Step 5: Right-click on the command prompt and Click on the properties.

Step 6: Click on the Layout tab.

Step 7: Click On the window size section and enter your required resolution.

 

Step 8: To apply changes Click on ok.

Ghost keyboard Typing | Make Your Notepad type Automatically

Today we are going to show you a Cool Notepad Trick ( Prank ) ever. Mostly people use their notepad to type and save the information, Ghost keyboard Typing

Read More

To Stop The Matrix Rain:

Just press CTRL + C, Then you will be asked: ” whether to terminate the job “. Now type ” y ” to stop the program.

Tips :

You can even add colors to your command prompt background and text. This is just by changing color codes i.e if you use  “color A2” or “color 2A” then you will have a light green text on a green background.You may use any combination between 0 to 9 and A to F to change your background and Text colors.

Easy Way To Create A Memory Eating Virus – Just For The Fun Of It

We are going to teach you the easiest way of creating a virus. In this process to create a virus that eats up the computer memory i.e Memory Eating virus

Read More

To See All The Articles On Notepad Tricks Click Here. We Are Sure You Will Be Amazed.

code rain???的更多相关文章

  1. EF深入系列--Code First

    首先是创建DbContext,有两种途径 ①手动编写DbContext代码,同时还要记得去配置文件中添加connectionStrings public class BooksContext : Db ...

  2. LeetCode - 42. Trapping Rain Water

    42. Trapping Rain Water Problem's Link ------------------------------------------------------------- ...

  3. HDOJ 2389 Rain on your Parade

     HK.... Rain on your Parade Time Limit: 6000/3000 MS (Java/Others)    Memory Limit: 655350/165535 K ...

  4. How Much Did It Rain? Winner's Interview: 1st place, Devin Anzelmo

    How Much Did It Rain? Winner's Interview: 1st place, Devin Anzelmo An early insight into the importa ...

  5. Code Complete阅读笔记(二)

    2015-03-06   328   Unusual Data Types    ——You can carry this technique to extremes,putting all the ...

  6. [array] leetcode - 42. Trapping Rain Water - Hard

    leetcode - 42. Trapping Rain Water - Hard descrition Given n non-negative integers representing an e ...

  7. Trapping Rain Water LT42

    The above elevation map is represented by array [0,1,0,2,1,0,1,3,2,1,2,1]. In this case, 6 units of ...

  8. [LeetCode] 42. Trapping Rain Water_hard tag: Two Pointers

    Given n non-negative integers representing an elevation map where the width of each bar is 1, comput ...

  9. LeetCode: Trapping Rain Water 解题报告

    https://oj.leetcode.com/problems/trapping-rain-water/ Trapping Rain WaterGiven n non-negative intege ...

随机推荐

  1. table标签详解

    1.table标签中没有 tbody标签,浏览器会自动加上去的 2.一般表格的布局可以不使用  thead.tfoot 以及 tbody 元素.这样浏览器解析时会自动给一个 tbody标签的. 完整的 ...

  2. Python Elasticsearch api,组合过滤器,term过滤器,正则查询 ,match查询,获取最近一小时的数据

    Python Elasticsearch api   描述:ElasticSearch是一个基于Lucene的搜索服务器.它提供了一个分布式多用户能力的全文搜索引擎,基于RESTful web接口.下 ...

  3. Python的从头再来

    虽然各种视频,文档看了不少.但是都没有系统的总结.现在要把Python从最基础开始总结,回归.也当作自己的复习.

  4. vue中配置可修改的服务器接口api

    https://www.jianshu.com/p/377bfd2d9034?utm_campaign 太坑了,找了全网,几乎都不能用,也不知道哪写错了,这个是可以用的.

  5. Openstack组件部署 — Nova_Install and configure a compute node

    目录 目录 前文列表 Prerequisites 先决条件 Install and configure a compute node Install the packages Edit the etc ...

  6. Java List T 去掉重复对象-java8

    Stream语法详解 Stream当成一个高级版本的Iterator.原始版本的Iterator,用户只能一个一个的遍历元素并对其执行某些操作:高级版本的Stream,用户只要给出需要对其包含的元素执 ...

  7. jquery $用法

    //页面刷新时,根据筛选条件中已有的项给下面条件添加样式 window.onload = function() { $("input.query1").each(function( ...

  8. Spring Boot整合Thymeleaf模板引擎

    什么是Thymeleaf Thymeleaf是一款用于渲染XML.XHTML.HTML5内容的模板引擎.类似Velocity,FreeMaker模板引擎,它也可以轻易的与Spring MVC等Web框 ...

  9. layui中下拉框问题

    <div class="layui-form-item"> <label class="layui-form-label">上级栏目:& ...

  10. 注册页面-使用form模块搭建

    基于Django的form模块,快速的搭建注册页面,每个限制条件,都放在form模块里面,不单独对每一项编写标签,使用模版的 for 循环来渲染. 首先设置form模块 在blogs模块下创建一个bl ...