- open pyCharm project (e.g., a directory of work)
- for my Dell Windows, select the python interpreter that is in cldf folder (that has the .venv folder)--selecting this interpreter already activate the .venv
- then in the terminal, click the dropdown arrow and select the
Command Prompt
- in the terminal, test by running
cldfbench
to check that it reads thecldfbench
module (which it works)
This file contains hidden or 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
The case is the Enolex repo I forked from engganolang | |
If the forked repo in gederajeg/enolex (main branch) is n-commits behind the upstream engganolang/enolex (main branch), and we want to sync, I'll do (with GitHub CLI): | |
gh repo sync gederajeg/enolex -b main | |
# results: ✓ Synced the "gederajeg:main" branch from "engganolang:main" | |
Tutorial: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork |
This gist provides my personal note and experience (as a non-Python [but a long-term R] user) in trying to provide clts-conformant initial orthography profile from a cldf dataset using the profile
command as part of the lingpy
Python package.
- The tutorial to generate initial orthography profile (after generating a valid cldf dataset under the cldf directory) is available here
- I have created a valid cldf dataset for Enggano Holle List using R
The code below provides a personal note to filter SQLite database using the regular expression via activating REGEXP function in SQL. Accepted SQL regex patterns are available here. In general, it appears that SQL regex does not accept look-ahead and look-behind (?).
library(DBI)
#> Warning: package 'DBI' was built under R version 4.3.3
library(tidyverse)
library(RSQLite)
#> Warning: package 'RSQLite' was built under R version 4.3.3
See here for the way to put disconnecting code from the sqlite.
OlderNewer