When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}| Host | Up | Valid | Likes | Accounts |
|---|---|---|---|---|
| https://twitt.re | ✅ | ✅ | ✅ | ? |
| https://nitter.dashy.a3x.dn.nyx.im | ✅ | ✅ | ✅ | ? |
| http://46.250.231.226:8889 | ✅ | ✅ | ✅ | 1 |
| https://nitter.privacydev.net | ✅ | ✅ | ✅ | 5 |
| http://198.46.203.183:8089 | ✅ | ✅ | 1 | |
| http://5.78.115.92:8081 | ✅ | ✅ | 1 |
| # -*- coding: utf-8 -*- | |
| # File: __init__.py (FINAL VERSION - BUG FIXED) | |
| import json | |
| import os | |
| import re | |
| from typing import Any, Tuple, List, Dict | |
| from aqt import mw | |
| from aqt.editor import Editor |
| # -*- coding: utf-8 -*- | |
| # File: __init__.py (FINAL VERSION - MODIFIED FOR REVIEWER WORKFLOW) | |
| import json | |
| import os | |
| import re | |
| from typing import Any, Tuple, List, Dict | |
| from aqt import mw | |
| from aqt.editor import Editor |
| # -*- coding: utf-8 -*- | |
| # ReMemorize - Atualizado para Anki 2.1.50+ | |
| # Baseado no addon original de Lovac42 | |
| import random | |
| import time | |
| from datetime import datetime | |
| from typing import List, Optional | |
| from aqt import mw, gui_hooks |
| from aqt import gui_hooks | |
| from aqt.editor import Editor | |
| from anki.notes import Note | |
| def on_add_note_will_be_added(problem: str, note: Note) -> str: | |
| if problem and "first field" in problem.lower(): | |
| return "" | |
| return problem |
| import json | |
| import re | |
| from collections import Counter | |
| from aqt import mw | |
| from aqt.utils import tooltip | |
| from aqt.gui_hooks import editor_will_load_note | |
| from aqt.qt import * | |
| # --- CONFIGURAÇÕES --- |
Kami memiliki aturan yang sangat tepat tentang bagaimana pesan git commit kami dapat diformat. Ini mengarah ke pesan yang lebih mudah dibaca yang mudah diikuti ketika melihat melalui history proyek. Dan juga, kami menggunakan pesan git commit untuk menghasilkan log perubahan pada Angular.
Setiap pesan komit terdiri dari header, konten, dan catatan kaki. Judul memiliki format khusus yang mencakup jenis, cakupan, dan subjek:
<type>(<scope>): <subject>
<BLANK LINE>
| /* | |
| Hanyang Univ. a script for skipping safetyedu courses | |
| http://safetyedu.hanyang.ac.kr/ | |
| [교육 영상 스킵] | |
| 1. '수강하기' 버튼을 눌러 안전교육 창을 띄운다. | |
| 2. 개발자도구(F12 버튼을 눌러)를 열어 'console' 탭에 이동해 아래 스크립트를 붙여넣는다. | |
| 3. 6과목에 대해 반복한다. |