This is a brief introduction to the tools needed to maintain a personal fork of ZMK (or QMK or really whatever). It covers:
When an image has large bits of white color it may merge with the document background. To avoid this lets add a shadow to the image. We can parse the file path from a image object in Markdown file and send it to ImageMagic.
(defun ig/md-imagemagick-add-shadow ()
"Add shadow to a Markdown image element"
(interactive "@*")
FUHCM_ch0jvjkj3nthUc
Đếm thứ tự từ chữ f đến chữ u và từ u đến c là 7 kí tự thì ta có quy luật
Bắt đầu từ f đếm đến chữ thứ 7 thì ghi lại kế bên, tiếp tục vậy cho đến hết đề
Sau mỗi lần đếm đến cuối thì ghi lại kí tự kế bên chữ f ở đề bài và bắt đầu lập lại với kí tự đó trong đề
f{_coleuwur_l!c4pyce!tr_phn!fm_tag}
fu{_colewur_l!c4pyce!tr_phn!fm_tag}
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSTRUMENTS = [ | |
'Acoustic Grand Piano', | |
'Bright Acoustic Piano', | |
'Electric Grand Piano', | |
'Honky-tonk Piano', | |
'Electric Piano 1', | |
'Electric Piano 2', | |
'Harpsichord', | |
'Clavi', | |
'Celesta', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> | |
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> | |
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> | |
Include file (Java) | |
<%@ include file="/WEB-INF/jsp/common/date.jsp" %> | |
Include file (JSP) | |
<jsp:include page="/WEB-INF/jsp/common/date.jsp"> |
- link via CUSTOM_ID
- CUSTOM_ID is added to heading using
C-c C-x p
(org-set-property
)
- CUSTOM_ID is added to heading using
- link via text search in headings
- Requires exact match to heading text
- Not recommended
- Very fragile against any change to the target heading
- link via autogenerated ID
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
adb root | |
adb remount | |
# | |
# Create a minimal but safe SSH Daemon configuration | |
cat <<EndOfSSHDConfigFile > sshd_config | |
# Minimal OpenSSH daemon configuration for CyanogenMod 10.1+ | |
AuthorizedKeysFile /data/.ssh/authorized_keys | |
ChallengeResponseAuthentication no | |
PasswordAuthentication no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
"""Chương trình chuyển đổi từ Tiếng Việt có dấu sang Tiếng Việt không dấu | |
Chỉnh sửa từ mã nguồn của anh NamNT | |
http://www.vithon.org/2009/06/14/x%E1%BB%AD-ly-ti%E1%BA%BFng-vi%E1%BB%87t-trong-python | |
""" | |
import re | |
INTAB = "ạảãàáâậầấẩẫăắằặẳẵóòọõỏôộổỗồốơờớợởỡéèẻẹẽêếềệểễúùụủũưựữửừứíìịỉĩýỳỷỵỹđẠẢÃÀÁÂẬẦẤẨẪĂẮẰẶẲẴÓÒỌÕỎÔỘỔỖỒỐƠỜỚỢỞỠÉÈẺẸẼÊẾỀỆỂỄÚÙỤỦŨƯỰỮỬỪỨÍÌỊỈĨÝỲỶỴỸĐ" |