code rain???
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
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
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
To See All The Articles On Notepad Tricks Click Here. We Are Sure You Will Be Amazed.
code rain???的更多相关文章
- EF深入系列--Code First
首先是创建DbContext,有两种途径 ①手动编写DbContext代码,同时还要记得去配置文件中添加connectionStrings public class BooksContext : Db ...
- LeetCode - 42. Trapping Rain Water
42. Trapping Rain Water Problem's Link ------------------------------------------------------------- ...
- HDOJ 2389 Rain on your Parade
HK.... Rain on your Parade Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 655350/165535 K ...
- 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 ...
- Code Complete阅读笔记(二)
2015-03-06 328 Unusual Data Types ——You can carry this technique to extremes,putting all the ...
- [array] leetcode - 42. Trapping Rain Water - Hard
leetcode - 42. Trapping Rain Water - Hard descrition Given n non-negative integers representing an e ...
- 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 ...
- [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 ...
- LeetCode: Trapping Rain Water 解题报告
https://oj.leetcode.com/problems/trapping-rain-water/ Trapping Rain WaterGiven n non-negative intege ...
随机推荐
- js设计模式——9.装饰器模式
装饰一个圣诞树 // 装饰器模式,让其依次执行 var tree = {}; tree.decorate = function() { console.log('Make sure the tree ...
- JEECG树(TreeGrid)字段的扩展
转载:https://blog.csdn.net/huangzirong822/article/details/38400817 之前使用jeecg集成框架做过一个项目 这里说说框架中树(tree)字 ...
- 将.opt、.frm、.MYD、.MYI文件放入mysql
问题:如果数据库没有给sql脚本而且给的.opt..frm..MYD..MYI这些文件,应该如何加载呢???? 解答:首先需要找到“mysql的安装目录/data/”,怎么找?mysql命令执行“sh ...
- 并发基础篇(六):线程Thread类的start()方法和run()方法【转载】
[转载] 一.初识java的线程是通过java.lang.Thread类来实现的.VM启动时会有一个由主方法所定义的线程.可以通过创建Thread的实例来创建新的线程.每个线程都是通过某个特定Thre ...
- MySQL数据库(六) —— SQL注入攻击、视图、事物、存储过程、流程控制
SQL注入攻击.视图.事物.存储过程.流程控制 一.SQL注入攻击 1.什么是SQL注入攻击 import pymysql conn = pymysql.Connect( user="roo ...
- 2018湘潭大学程序设计竞赛【A】
题目链接:https://www.nowcoder.com/acm/contest/105/A 题意:给你起始和结束的天时分,让你算总秒数. 题解:输入格式.注意long long.签到题. #inc ...
- yes - 不断输出一个字符串,直到杀死其为止
SYNOPSIS(总览) yes [OPTION]... [STRING]... DESCRIPTION(描述) 不断输出包括所有指定STRING(s)的一行,或者是`y'. --help 显示帮助并 ...
- linux 档案 指令(鸟哥私房菜)
[ls -al] [ls -l --full-time] 显示文件完整的日期格式 [ls] 显示非隐藏档的文件信息 [ls -al] 显示所有文档信心.文档前面的 “”.“”表明该文档是隐藏档.eg. ...
- boost 实现读写锁
#include <boost/thread/shared_mutex.hpp> #include <boost/thread/locks.hpp> using BoostMu ...
- vue 监听的使用
watch:{ 监听的属性:function(旧值,新值) { } } 代码: <!DOCTYPE html> <html lang="en" ...