Skip to content

Commit 4b8b649

Browse files
committed
chore: some copies have been modified.
1 parent 04ab180 commit 4b8b649

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

_config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
# Site
66
title: CheatSheets.zip
7-
subtitle: "Quick Reference Cheat Sheet"
7+
subtitle: "Ultimate Cheat for Developers"
88
description: "Share quick reference and cheat sheet for developers"
9-
keywords: reference,cheatsheet,code table,snippets,linux
9+
keywords: cheat,sheet,cheatsheets,reference,programming,code table,snippets,linux,command,shortcuts,developers
1010
author: CheatSheets.zip
1111
language: en
1212
timezone: ""

source/_posts/java.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ String s = 3 + 3 + 23; // Incompatible types
227227
### Comparison
228228

229229
```java
230-
String s1 = new String("QuickRef");
231-
String s2 = new String("QuickRef");
230+
String s1 = new String("cheatsheets.zip");
231+
String s2 = new String("cheatsheets.zip");
232232

233233
s1 == s2 // false
234234
s1.equals(s2) // true

source/_posts/php.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -984,8 +984,8 @@ See also: [Nullsafe Operator](https://wiki.php.net/rfc/nullsafe_operator)
984984
### Regular expressions
985985

986986
```php
987-
$str = "Visit Quickref.me";
988-
echo preg_match("/qu/i", $str); # => 1
987+
$str = "Visit cheatsheets.zip";
988+
echo preg_match("/ch/i", $str); # => 1
989989
```
990990

991991
See: [Regex in PHP](/regex#regex-in-php)

source/_posts/python.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,9 @@ message += "Part 2."
155155
### f-Strings (Python 3.6+)
156156

157157
```python
158-
>>> website = 'Quickref.ME'
158+
>>> website = 'cheatsheets.zip'
159159
>>> f"Hello, {website}"
160-
"Hello, Quickref.ME"
160+
"Hello, cheatsheets.zip"
161161

162162
>>> num = 10
163163
>>> f'{num} + 10 = {num + 10}'
@@ -509,9 +509,9 @@ True
509509
### f-Strings usage
510510

511511
```python
512-
>>> website = 'Quickref.ME'
512+
>>> website = 'cheatsheets.zip'
513513
>>> f"Hello, {website}"
514-
"Hello, Quickref.ME"
514+
"Hello, cheatsheets.zip"
515515

516516
>>> num = 10
517517
>>> f'{num} + 10 = {num + 10}'

source/about/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: About
33
date: 2020-03-26 20:45:53
44
---
55

6-
Welcome to [QuickRef] – your go-to resource for [describing content]. Designed with [developers/students/professionals]
6+
Welcome to [CheatSheets] – your go-to resource for [describing content]. Designed with [developers/students/professionals]
77
in mind, our quick reference provides a comprehensive collection of [topics/sections] to help you [solve problems/learn
88
efficiently/etc.].
99

@@ -24,12 +24,12 @@ Key Features:
2424
- By avoiding the need to seek through lengthy documentation, cheat sheets save users valuable time during tasks or
2525
learning.
2626
- Digital cheat sheets are easily searchable, and users can quickly find what they need by using keywords or phrases.
27-
- QuickRef Cheat sheets act as a rapid review tool, allowing users to refresh their memory on topics they've previously
27+
- Cheat sheets act as a rapid review tool, allowing users to refresh their memory on topics they've previously
2828
learned.
2929

3030
Our team of experts has meticulously crafted this reference to provide instant information. We're committed to evolving
3131
our content to meet your needs and bring out fascinating upgrades in the future.
3232

33-
Start exploring now and make [https://quickref.me/] your trusted companion in [area/topic]!!
33+
Start exploring now and make [https://cheatsheets.zip] your trusted companion in [area/topic]!!
3434

3535
Have feedback or suggestions? Reach out to us at [https://twitter.com/FechinLi].
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<section class="w-full flex flex-col bg-blue-500 dark:bg-slate-800 text-center pt-14">
22
<div class="max-container lg:w-3/4">
3-
<h1 class="text-4xl md:text-5xl text-slate-50 dark:text-slate-300 leading-relaxed">Quick Reference</h1>
3+
<h1 class="text-4xl md:text-5xl text-slate-50 dark:text-slate-300 leading-relaxed">Ultimate Cheat for Developers</h1>
44
<h2 class="text-xl md:text-2xl text-slate-200 dark:text-slate-300 leading-tight font-extralight tracking-wide text-base mt-6 mb-20">
5-
Here are some cheatsheets and quick references contributed by open source angels.
5+
Welcome the ultimate repository of sheets and quick references meticulously crafted by the open community.
66
</h2>
77
</div>
88
</section>

0 commit comments

Comments
 (0)