See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
rsync (Everyone seems to like -z, but it is much slower for me)
| <!DOCTYPE NETSCAPE-Bookmark-file-1> | |
| <!-- This is an automatically generated file. | |
| It will be read and overwritten. | |
| DO NOT EDIT! --> | |
| <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> | |
| <TITLE>Bookmarks</TITLE> | |
| <H1>Bookmarks</H1> | |
| <DL><p> | |
| <DT><H3 ADD_DATE="1576816453" LAST_MODIFIED="1578776782">CKAD</H3> | |
| <DL><p> |
In this tutorial, we will setup GUI in WSL2, and access it using VNC. No additional software outside WSL (like VcXsrv) is required, except, of course, a VNC Viewer (RealVNC, TightVNC, TigerVNC, UVNC, etc, all of them might work flawlessly).
The key components we need to install are tigervnc-standalone-server and systemd-genie.
For this setup, I will use Ubuntu 20.04 LTS (Focal Fossa), and install GNOME Desktop. Since the key components aren't bound to Ubuntu or GNOME, you can use your favorite distro and GUI. Check the Sample screenshots section for examples.
So let's go. First, we need a working [WSL2](https://docs.microsoft.com/pt-br/windows/wsl/w
| AREA PROG1, CODE ;This code is written by: 406500578 YENG, LI-CHUNG | |
| ENTRY | |
| ;1. To put even parity for bits 6, 8, 10 of r0 into bit 1 of r1(with the other bits of r1 unchanged) | |
| ;2. To compare bit 10 of r1 with bit 9 of r0; if different, put 1 in r6; otherwise, put 0 in r6 | |
| LDR R0, =0xABCD | |
| LDR r1, =0xBBFF | |
| LDR r2, =0xBBAA | |
| LDR r3, =0xFFDD | |
| ;--------------------------------------------------------------------- | |
| ;Generate parity bit for bits 6, 8, 10 |
| AREA HAMMING, CODE ; This homework is written by: | |
| ENTRY ; 406500578 YENG, LI-CHUNG | |
| ; 407507010 LIN,YEN-HSUAN | |
| ; 406210061 YEN,TSAI-TING | |
| ; 8bit -> 12bit | |
| ; 0xC6 -> 0xC38 | |
| ; | |
| ; 1 checksum bit wrong: C0 = 0xA3F | |
| ; C1 = 0xA3C |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| # WSL2 network port forwarding script v1 | |
| # for enable script, 'Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope CurrentUser' in Powershell, | |
| # for delete exist rules and ports use 'delete' as parameter, for show ports use 'list' as parameter. | |
| # written by Daehyuk Ahn, Aug-1-2020 | |
| # Display all portproxy information | |
| If ($Args[0] -eq "list") { | |
| netsh interface portproxy show v4tov4; | |
| exit; | |
| } |
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\Directory\Background\shell\wt] | |
| @="Windows Terminal here" | |
| "Icon"="%USERPROFILE%\\AppData\\Local\\terminal\\wt_32.ico" | |
| [HKEY_CLASSES_ROOT\Directory\Background\shell\wt\command] | |
| @="C:\\Users\\a2902\\AppData\\Local\\Microsoft\\WindowsApps\\wt.exe -d ." | |
| [HKEY_CLASSES_ROOT\Directory\shell\wt] |
| #!/bin/sh | |
| find ~/ -name “*.cdslck” -exec rm {} \; | |
| # Source: https://www.cade.utah.edu/faqs/can-you-explain-how-to-remove-cadence-lock-files/ |