-
The handbook of Redis TOP NEW
Redis is an in-memory data structure store, used as a distributed, in-memory key–value database. Here is an easy handbook for your reference to quickly start it. Setup You can configure Redis Server by below configuration file. sudo vi /etc/redis.conf Redis CLI arguments: # Connect to a Redis server (e.g. Default is DB 0) $ redis-cli [-n d... Read More
-
The keyboard shortcuts in Windows TOP NEW
Win: Open or close Start Win-A: Open Quick Settings Win-B: Set focus for the Show hidden icons dropdown menu Win-D: Display and hide the desktop Win-E: Open File Explorer Win-G: Open Xbox Game Bar when a game is open Win-H: Open Voice Typing Win-I: Open settings Win-J: Set focus to a Windows tip when one is available Win-K: ... Read More
-
The handbook of Windows Batch TOP NEW
Batch of Windows’ hidden secrets for productivity. With just a bit of work, you can automate monotonous tasks and never worry about them again. Power users should learn all about batch scripting (a set of commands) sooner rather than later. Here is a easy note for you to quickly learn about it. Output :: Echo an empty line echo. echo, echo: e... Read More
-
The handbook of UML TOP NEW
The UML (Unified Modeling Language) is a general-purpose, developmental, modeling language in the field of software engineering that is intended to provide a standard way to visualize the design of a system. This article is a guide for us to learn this important tool in software engineering. Tools There are many tools for implementing UML, h... Read More
-
The Common Idiomatic Expressions in English TOP NEW
This post is a collection for us to learn and study idioms in English, when used appropriately, idioms can convey emotions more fully, express meaning vividly, and make the other party feel more familiar and authentic. A A bird in the hand is better than two in the bush A bird of a different feather A blessing in disguise A code day i... Read More
-
Emacs Cheat Sheet TOP NEW
‘C-‘ means use the CTRL key. ‘M-‘ means use the Meta (or Alt) key. C-x C-c: Exit Emacs session C-x k: Kill buffer C-x u: Undo changes C-x C-f: Find file C-x b: Switch buffer C-x 0: Delete window C-x 1: Delete other windows C-x 2: Split the current window horizontally C-x 3: Split the current window ... Read More
-
The differences between American and British English TOP NEW
There is an old saying that America and Britain are “two nations divided by a common language.” No one knows exactly who said this, but it reflects the way many Brits feel about American English. Pronunciation after (ˈæftər / ˈɑːftə) beta (ˈbeɪtə / biːtə) common (ˈkɑː.mən / ˈkɒm.ən) computer (kəmˈpjuːtər / kəmˈpjuːtə) current (ˈkɜːr... Read More
-
Restart SSH Sessions and Tunnels Automatically TOP NEW
How many times have your SSH session suddenly interrupted while using SSH, and then you have to reconnect it. Of course, the simplest solution is to use the arrow keys to retrieve the previous command, and then press the Enter key. This trick you have enjoyed for many years, is there a more elegant solution? Today, I will introduce you a better... Read More
-
My Database Theory Handbook TOP NEW
History SQL-92 Standard It’s tied to the relational idea, and consists of 2 important sub ideas. 1.Relational Data Model (Schema Design) “Atomic” types (Domain) Table with rows and columns consist of cells Each cell is one value of an atomic type (string, number, date…) Schema independent of processing purposes ... Read More