Everything About code
前往频道在 Telegram
Admin : @Samandar_Anorboyev Hello everyone you can learn interesting facts about coding in this channel 💻 Perfluence
显示更多9 657
订阅者
-524 小时
-207 天
-10330 天
数据加载中...
相似频道
标签云
进出提及
---
---
---
---
---
---
吸引订阅者
八月 '26
八月 '26
+73
在0个频道中
七月 '26
+150
在0个频道中
Get PRO
六月 '26
+132
在0个频道中
Get PRO
五月 '26
+145
在0个频道中
Get PRO
四月 '26
+120
在0个频道中
Get PRO
三月 '26
+67
在0个频道中
Get PRO
二月 '26
+53
在0个频道中
Get PRO
一月 '26
+65
在0个频道中
Get PRO
十二月 '25
+49
在0个频道中
Get PRO
十一月 '25
+89
在0个频道中
Get PRO
十月 '25
+157
在0个频道中
Get PRO
九月 '25
+183
在0个频道中
Get PRO
八月 '25
+191
在0个频道中
Get PRO
七月 '25
+201
在0个频道中
Get PRO
六月 '25
+226
在0个频道中
Get PRO
五月 '25
+235
在1个频道中
Get PRO
四月 '25
+261
在1个频道中
Get PRO
三月 '25
+277
在0个频道中
Get PRO
二月 '25
+438
在1个频道中
Get PRO
一月 '25
+758
在1个频道中
Get PRO
十二月 '24
+991
在1个频道中
Get PRO
十一月 '24
+756
在0个频道中
Get PRO
十月 '24
+703
在0个频道中
Get PRO
九月 '24
+750
在0个频道中
Get PRO
八月 '24
+677
在0个频道中
Get PRO
七月 '24
+411
在0个频道中
Get PRO
六月 '24
+381
在0个频道中
Get PRO
五月 '24
+365
在0个频道中
Get PRO
四月 '24
+431
在1个频道中
Get PRO
三月 '24
+393
在0个频道中
Get PRO
二月 '24
+351
在1个频道中
Get PRO
一月 '24
+313
在1个频道中
Get PRO
十二月 '23
+323
在6个频道中
Get PRO
十一月 '23
+61
在2个频道中
Get PRO
十月 '23
+84
在1个频道中
Get PRO
九月 '23
+134
在0个频道中
Get PRO
八月 '23
+261
在0个频道中
Get PRO
七月 '23
+194
在0个频道中
Get PRO
六月 '23
+330
在0个频道中
Get PRO
五月 '23
+209
在0个频道中
Get PRO
四月 '23
+221
在0个频道中
Get PRO
三月 '23
+180
在0个频道中
Get PRO
二月 '23
+165
在0个频道中
Get PRO
一月 '23
+199
在0个频道中
Get PRO
十二月 '22
+138
在0个频道中
Get PRO
十一月 '22
+120
在0个频道中
Get PRO
十月 '22
+119
在0个频道中
Get PRO
九月 '22
+98
在0个频道中
Get PRO
八月 '22
+127
在0个频道中
Get PRO
七月 '22
+131
在0个频道中
Get PRO
六月 '22
+368
在0个频道中
| 日期 | 订阅者增长 | 提及 | 频道 | |
| 26 八月 | +4 | |||
| 25 八月 | +1 | |||
| 24 八月 | +3 | |||
| 23 八月 | +4 | |||
| 22 八月 | +4 | |||
| 21 八月 | 0 | |||
| 20 八月 | +2 | |||
| 19 八月 | +3 | |||
| 18 八月 | +5 | |||
| 17 八月 | +2 | |||
| 16 八月 | 0 | |||
| 15 八月 | +2 | |||
| 14 八月 | +2 | |||
| 13 八月 | +2 | |||
| 12 八月 | +7 | |||
| 11 八月 | +4 | |||
| 10 八月 | +3 | |||
| 09 八月 | +6 | |||
| 08 八月 | 0 | |||
| 07 八月 | +2 | |||
| 06 八月 | +5 | |||
| 05 八月 | +5 | |||
| 04 八月 | 0 | |||
| 03 八月 | +1 | |||
| 02 八月 | +2 | |||
| 01 八月 | +4 |
频道帖子
| 2 | Which programming language do we use ? | 1 001 |
| 3 | sticker.webp | 1 222 |
| 4 | WHERE IS ACTIVE GUYS | 1 155 |
| 5 | ⌨️ Useful CSS grid cheat sheet
You’ve seen this many times. But practice makes perfect.
@everythingaboutcode | 1 180 |
| 6 | sticker.webp | 1 |
| 7 | Our team has developed lmdb-php, which we would like to introduce to you. It is a PHP 8+ extension that allows developers to use LMDB directly within PHP applications. In other words, it enables PHP projects to benefit from a fast, file-based key-value storage system without relying on a separate database server.
Repository link 👉 https://github.com/yetimdasturchi/php-lmdb
P.S. For those who might say, "But SQLite already exists":
SQLite is a relational database that provides features such as tables, columns, SQL queries, indexes, joins, and constraints. In other words, it is designed for structured data management.
LMDB, on the other hand, is a key-value database. It has no SQL engine and no table-based data model. As a result, it is much simpler and, in many cases, significantly faster. It is especially useful for caches, configuration storage, indexes, | 1 354 |
| 8 | Many projects need small and fast storage, but setting up a separate database server for this purpose often creates unnecessary overhead. Projects such as LMDB were designed to solve this problem. It is an extremely fast key-value database that does not require a server and operates directly on local files.
LMDB was originally developed as part of the OpenLDAP project. Its main purpose was to provide OpenLDAP with a fast, reliable storage backend that supported transactions. Later, LMDB evolved into a widely used standalone embedded database.
Our team has developed lmdb-php, which we would like to introduce to you. It is a PHP 8+ extension that allows developers to use LMDB directly within PHP applications. In other words, it enables PHP projects to benefit from a fast, file-based key-value storage system without relying on a separate database server.
Repository link 👉 https://github.com/yetimdasturchi/php-lmdb
P.S. For those who might say, "But SQLite already exists":
SQLite is a relational database that pr | 1 055 |
| 9 | wazzuuuuuup | 1 065 |
| 10 | wazzuuup........ | 1 |
| 11 | 💡 Why do you need Backlinks?
Focus on building quality links through strategic outreach and exceptional content to boost your site's credibility, traffic, and search rankings. | 1 029 |
| 12 | ✅Skills Animation 🤹
📁download Source code 👇
https://1024terabox.com/s/1yz7-cp3juz8cfrEejwIt8w | 1 133 |
| 13 | ✅Skills Animation 🤹
📁download Source code 👇
https://1024terabox.com/s/1yz7-cp3juz8cfrEejwIt8w | 1 |
| 14 | 🔰 How to Detect orientation in CSS
How to change your styling based on whether you are dealing with a vertical or horizontal viewport in CSS 🔥
This might come in handy for larger layout elements, such as a nav bars, or whether split sections should be split vertically or horizontally.
⚠️ Note that this doesn't give you the physical orientation of the device, just the viewport. | 1 349 |
| 15 | 🔰 CSS Conditional Rules
Write smarter CSS. Use @if rules to switch themes and variants cleanly. | 1 100 |
| 16 | 🔰 Faster Loops in JavaScript
Tired of slow loops in your JS apps?
Let’s fix that.
Here's your crash course on writing faster iterations with real code examples.
Your performance boost starts now. | 1 163 |
| 17 | ✔️Stay connected with all my channel👇
╰┈➤https://t.me/addlist/P9rwCp2apfM1ZWJk
╰┈➤https://t.me/addlist/P9rwCp2apfM1ZWJk | 232 |
| 18 | ⌨️ JavaScript: 5 Useful Regex | 1 258 |
| 19 | ➕ HTTP status codes crash course | 1 203 |
| 20 | 💻 Full stack developer roadmap | 925 |
