This account is not set to public on notestock.
This account is not set to public on notestock.
Storage 8TB
Memory 128GB
M3 Max
40 Core cpu
の構成のmacbook pro買ってくれる方いませんか!??!?!?!
Storage 8TB
Memory 128GB
M3 Max
40 Core gpu
16 core cpu
の構成のmacbook pro買ってくれる方いませんか!??!?!?!
This account is not set to public on notestock.
猫モードのノートが見れないバグのfixの仕方
nyaize.ts の
export function nyaize(text: string): string {
return text
// ja-JP
.replaceAll('な', 'にゃ').replaceAll('ナ', 'ニャ').replaceAll('ナ', 'ニャ')
// en-US
.replace(/(?<=n)a/gi, x => x === 'A' ? 'YA' : 'ya')
.replace(/(?<=morn)ing/gi, x => x === 'ING' ? 'YAN' : 'yan')
.replace(/(?<=every)one/gi, x => x === 'ONE' ? 'NYAN' : 'nyan')
// ko-KR
.replace(/[나-낳]/g, match => String.fromCharCode(
match.charCodeAt(0)! + '냐'.charCodeAt(0) - '나'.charCodeAt(0),
))
.replace(/(다$)|(다(?=\.))|(다(?= ))|(다(?=!))|(다(?=\?))/gm, '다냥')
.replace(/(야(?=\?))|(야$)|(야(?= ))/gm, '냥');
}
ってのの //en-us のとこのを .replace(/na/gi, (match) => match === 'NA' ? 'NYA' : 'nya')
.replace(/morning/gi, (match) => match === 'MORNING' ? 'MORNYAN' : 'mornyan')
.replace(/everyone/gi, (match) => match === 'EVERYONE' ? 'EVERYNYAN' : 'everynyan')
This account is not set to public on notestock.