「Projects」修訂間的差異

出自Tan Kian-ting的維基
跳至導覽 跳至搜尋
 
(未顯示同一使用者於中間所作的 23 次修訂)
行 1: 行 1:
{{Nav|程式語言、邏輯學}}
{{Nav|程式語言、邏輯學}}
 
List of my side projects stored here.
Since I've decited to decrease the usage of Github which is both commercial and controlled by Microsoft, the git repos has been moved to here.


{| class="wikitable"
{| class="wikitable"
|+ List of my projects
|+ List of my side projects
|-
|-
! Side Project's name !! Description !! Gitweb viewer & History !! Source code's git bundle<br/>('''[[Projects/Git bundles|HOW TO CLONE IT]]''') !! Wiki !! Issue-tracking forum !! Orig. page
! Project !! Description !! Start/Migrate Date !! Notes
|-
|-
| '''Ataabu''' || toy-language proposal  || [https://kianting.info/gitweb/gitweb.cgi?p=Ataabu;a=summary Gitweb viewer] || [https://kianting.info/git/Ataabu.bundle Git bundle] || [[Ataabu]] || [https://kianting.info/git/Clochur.bundle Git bundle] || (None)
| [[Project:ArchivesOfToyLang]] || Personal toy language draughts || 2023-09-30 ||  
It contains the language drafts:
* tshunhue
* uann
* uahli (typesetting)
* tsulip (typesetting)
|-
|-
| '''Clochur''' ||  A Scheme-like typesetting LISP editor that using SILE typesetting Engine.  || [https://kianting.info/gitweb/gitweb.cgi?p=Clochur/.git;a=summary Gitweb viewer] ||   [[Clochur]] || 〃  || [https://kianting.info/projectforum/ Forum] || [https://github.com/Yoxem/Clochur Orig. page]
| [[Project:Uann]] || A personal toy language forked from [[Project:Clo|Clo]] || 2023-09-30 ||  
|-
|-
| '''Uiahoe''' || converting POJ (Pe̍h-ōe-jī, a Romanization of Min Nan (aka. Hokkien) Chinese) with tone numbers to the formal form  || [https://kianting.info/gitweb/gitweb.cgi?p=uiahoe/.git;a=summary Gitweb viewer] || [https://kianting.info/git/uiahoe.bundle Git bundle] || [[Uiahoe]] || || [https://github.com/Yoxem/uiahoe Orig. page]
| [[Project:Taikoothong]] || Stock viewing page || 2023-09-22 ||  
|-
|-
| '''findarray30code''' ||  Code-searcher for Array30, a chinese input method. under X11 license (instead of the tables that is under Array Input Method Public License) || [https://kianting.info/gitweb/gitweb.cgi?p=findarray30code/.git;a=summary Gitweb viewer] || [https://kianting.info/git/findarray30code.bundle Git bundle] || [[findarray30code]] || || [https://github.com/Yoxem/findarray30code Orig. page]
| [[Project:Typst-dictionary-template]] || Glossary/dictionary for Typst || 2023-11-22 ||  
|-
|-
| '''Sligeach-font''' || A reprint font of a 19th Gaelic type font. || [https://kianting.info/gitweb/gitweb.cgi?p=Sligeach-font/.git;a=summary Gitweb viewer] || [https://kianting.info/git/Sligeach-font.bundle Git bundle] || [[Sligeach-font]] || || [https://github.com/Yoxem/Sligeach-font Orig. page]
| [[Project:Clo]] || A personal little typesetter written in TypeScript || 2023-09-20 ||  
|-
| [[ProgProject:Pakkau]] || Converter from lomaji to hanji in Taiwanese (Hokkien) || 2024-03-20 ||
|-
| [[ProgProject:Pakkau-webapp]] || web app wrapper for [[ProgProject:Pakkau|Pakkau]] || 2024-04-08 ||  
|}
|}


==Personal notes (in Mandarin Chinese)==
==Personal notes (in Mandarin Chinese)==
===在遠端新增repo===
* [[專案相關的筆記|Project-related notes]]
You have to set the ssh key between server and client first.
<pre>
cd /var/www/git;
mkdir repo;
cd repo;
git init --bare;
</pre>
然後在本機端新增:
<pre>
git commit -m "example";
git remote add origin user@example.info:/var/www/git;
git push origin master;
</pre>
 
===在遠端新增bundle===
<pre>
cd /var/www/git/repo;
git bundle create ../repo.bundle --all
</pre>


==其他==
* [[Another Taiwanese Tutorial]] is also on the gitweb viewer but without bundle.


[[category:資訊]]
[[category:Projects|*]]

於 2024年4月8日 (一) 01:09 的最新修訂

List of my side projects stored here.

List of my side projects
Project Description Start/Migrate Date Notes
Project:ArchivesOfToyLang Personal toy language draughts 2023-09-30

It contains the language drafts:

  • tshunhue
  • uann
  • uahli (typesetting)
  • tsulip (typesetting)
Project:Uann A personal toy language forked from Clo 2023-09-30
Project:Taikoothong Stock viewing page 2023-09-22
Project:Typst-dictionary-template Glossary/dictionary for Typst 2023-11-22
Project:Clo A personal little typesetter written in TypeScript 2023-09-20
ProgProject:Pakkau Converter from lomaji to hanji in Taiwanese (Hokkien) 2024-03-20
ProgProject:Pakkau-webapp web app wrapper for Pakkau 2024-04-08


Personal notes (in Mandarin Chinese)