anthony / Sublime crack 2
0 喜欢
0 派生
2 文件
最后活跃于
Taken from https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47
Note
- If you can, please purchase the genuine license through the official channel and support the software developer.
- All crack methods here are implemented by @leogx9r.
- All data is not guaranteed to be authoritative or correct, nor has it been tested across the platform, nor is it responsible for any errors, lost data, etc. in practice! Please assess yourself!!!
- I am only within the ability to update the information based on the existing crack methods until the existing rules fail.
Sublime Patcher Script for personal use
anthony / Sublime crack 1
0 喜欢
0 派生
1 文件
最后活跃于
Taken from https://gist.github.com/lugrus2000/1fc55158b87f94d799392a6dd1ac0ce2
How to Crack Sublime Text Build 4113 and Sublime Merge 2.0.59
Thanks to @leogx9r for providing cracking methods.
https://gist.github.com/JerryLokjianming/71dac05f27f8c96ad1c8941b88030451#gistcomment-3762200 https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47#gistcomment-3802197 https://gist.github.com/maboloshi/feaa63c35f4c2baab24c9aaf9b3f4e47#gistcomment-3803204
Note: ARM platform is not supported
Win64 ↓
Оглавление
- Предпосылки к проектированию ПО
- Процесс проектирования ПО
- Архитектура. Архитектурные шаблоны
- Модель предметной области. Предметно-ориентированное проектирование
- Переработка знаний
- Коммуникация и язык
- Связь между моделью и реализацией
- Структурные элементы предметной-ориентированного проектирования
- Модель, выраженная в программе
anthony / Docker compose -- общие переиспользуемые части
0 喜欢
0 派生
1 文件
最后活跃于
1 | x-common-env: &common-env |
2 | env_file: |
3 | - .env |
4 | |
5 | services: |
6 | svc1: |
7 | <<: *common-env |
8 | container_name: service_1 |
9 | # ... |
anthony / ltrim(), rtrim(), and trim() in awk
0 喜欢
0 派生
1 文件
最后活跃于
1 | function ltrim(s) { sub(/^[ \t\r\n]+/, "", s); return s } |
2 | function rtrim(s) { sub(/[ \t\r\n]+$/, "", s); return s } |
3 | function trim(s) { return rtrim(ltrim(s)); } |
4 | BEGIN { |
5 | # whatever |
6 | } |
7 | { |
8 | # whatever |
9 | } |
10 | END { |
anthony / Minimal nginx reverse-proxy
0 喜欢
0 派生
1 文件
最后活跃于
1 | server { |
2 | listen 80; |
3 | listen [::]:80; |
4 | server_name example.com; # replace with your domain |
5 | |
6 | access_log /var/log/nginx/access.log; |
7 | error_log /var/log/nginx/error.log; |
8 | #client_max_body_size 100M; |
9 | |
10 | location / { |
上一页
下一页