$ y -Ql gamja
gamja /etc/
gamja /etc/webapps/
gamja /etc/webapps/gamja/
gamja /etc/webapps/gamja/config.json
gamja /usr/
gamja /usr/share/
gamja /usr/share/doc/
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
| //!DESC acme-0.5x | |
| //!HOOK LUMA | |
| //!BIND HOOKED | |
| //!WIDTH HOOKED.w 2 / | |
| //!HEIGHT HOOKED.h 2 / | |
| //!WHEN HOOKED.w 2 % ! HOOKED.h 2 % ! * | |
| //!OFFSET 0.25 0.25 | |
| vec4 hook() { | |
| return HOOKED_texOff(vec2(-0.25,-0.25)); | |
| } |
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
| -- Q. 리스트가 빈 리스트([])인지, 또는 첫 번째 요소가 빈 리스트인지([[]], ['a','b']]와 같은)를 확인하는 표현식을 작성하세요. | |
| -- hasOnlyOneElement t = null t || null (head t) | |
| hasOnlyOneElement :: [[a]] -> Bool | |
| hasOnlyOneElement [] = True | |
| hasOnlyOneElement [[]] = True | |
| hasOnlyOneElement _ = False | |
| -- Q. 다른 리스트 안에 주어진 두 리스트를 연결하는 표현식을 작성하세요. 예를 들어, ["abc","de"]에 대해 "abcde"를 반환해야 합니다. | |
| -- concatTwoElement t = head t ++ head (tail t) | |
| concatTwoElement :: [[a]] -> [[a]] -> [a] |
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
| 9월 02 02:06:00 a-macbookair systemd[1]: Started FlareSolverr. | |
| 9월 02 02:06:00 a-macbookair flaresolverr[34023]: 2025-09-02 02:06:00 INFO FlareSolverr 3.4.0 | |
| 9월 02 02:06:00 a-macbookair flaresolverr[34023]: 2025-09-02 02:06:00 INFO Testing web browser installation... | |
| 9월 02 02:06:00 a-macbookair flaresolverr[34023]: 2025-09-02 02:06:00 INFO Platform: Linux-6.15.10-asahi-3-2-ARCH-aarch64-with-glibc2.41 | |
| 9월 02 02:06:00 a-macbookair flaresolverr[34023]: 2025-09-02 02:06:00 INFO Chrome / Chromium path: /usr/bin/chromium | |
| 9월 02 02:06:01 a-macbookair flaresolverr[34023]: 2025-09-02 02:06:01 INFO Chrome / Chromium major version: 139 | |
| 9월 02 02:06:01 a-macbookair flaresolverr[34023]: 2025-09-02 02:06:01 INFO Launching web browser... | |
| 9월 02 02:06:01 a-macbookair systemd-coredump[34089]: Process 34050 (undetected_chro) of user 959 dumped core. | |
| Stack trace of thread 34050: |
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
| ╭─ ~/Videos/Youtube ───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── 21:51:29 | |
| ╰─❯ l 30\ years\ of\ authentic\ New\ Jack\ Swing\ style\ \[j_ZpMQ0WCEw\].webm | |
| '30 years of authentic New Jack Swing style [j_ZpMQ0WCEw].webm'* | |
| ╭─ ~/Videos/Youtube ───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── 21:51:41 | |
| ╰─❯ l 30\ years\ of\ authentic\ New\ Jack\ Swing\ style\ \[j_ZpMQ0WCEw\].webm > /tmp/t.m3u8 | |
| ╭─ ~/Videos/Youtube ───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── 21:51:57 | |
| ╰─❯ cat /tmp/t.m3u8 | |
| '30 years of authentic New Jack Swing style [j_ZpMQ0WCEw].webm' |
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
| Updating and loading repositories: | |
| Repositories loaded. | |
| Problem 1: installed package asymptote-3.01-1.fc42.aarch64 requires libOSMesa.so.8()(64bit), but none of the providers can be installed | |
| - package mesa-libGL-25.1.0~asahipre20250425-3.fc42.aarch64 from copr:copr.fedorainfracloud.org:group_asahi:mesa obsoletes mesa-libOSMesa < 25.1.0~rc2-1 provided by mesa-libOSMesa-25.1.0~asahipre20250221-1.fc42.aarch64 from @System | |
| - package mesa-libGL-25.1.0~asahipre20250425-3.fc42.aarch64 from copr:copr.fedorainfracloud.org:group_asahi:mesa obsoletes mesa-libOSMesa < 25.1.0~rc2-1 provided by mesa-libOSMesa-25.0.4-2.fc42.aarch64 from updates | |
| - package mesa-libGL-25.1.0~asahipre20250425-3.fc42.aarch64 from copr:copr.fedorainfracloud.org:group_asahi:mesa obsoletes mesa-libOSMesa < 25.1.0~rc2-1 provided by mesa-libOSMesa-25.1.0~asahipre20250221-1.fc42.aarch64 from copr:copr.fedorainfracloud.org:group_asahi:mesa | |
| - package mesa-libGL-25.1.0~asahipre20250425-3.fc42.aarch64 from copr:copr.fedorainfracloud.org:group_asa |
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
| $ stack --no-system-ghc build | |
| dungeon> configure (exe) | |
| Configuring dungeon-0.1.0.0... | |
| /home/a/.stack/programs/aarch64-linux/ghc-tinfo6-9.6.6/lib/ghc-9.6.6/bin/./ghc-9.6.6: /lib64/libtinfo.so.6: no version information available (required by /home/a/.stack/programs/aarch64-linux/ghc-tinfo6-9.6.6/lib/ghc-9.6.6/bin/../lib/aarch64-linux-ghc-9.6.6/libHShaskeline-0.8.2.1-ghc9.6.6.so) | |
| /home/a/.stack/programs/aarch64-linux/ghc-tinfo6-9.6.6/lib/ghc-9.6.6/bin/./ghc-9.6.6: /lib64/libtinfo.so.6: no version information available (required by /home/a/.stack/programs/aarch64-linux/ghc-tinfo6-9.6.6/lib/ghc-9.6.6/bin/../lib/aarch64-linux-ghc-9.6.6/libHSterminfo-0.4.1.6-ghc9.6.6.so) | |
| dungeon> build (exe) with ghc-9.6.6 | |
| Preprocessing executable 'dungeon-exe' for dungeon-0.1.0.0.. | |
| Building executable 'dungeon-exe' for dungeon-0.1.0.0.. | |
| /home/a/.stack/programs/aarch64-linux/ghc-tinfo6-9.6.6/lib/ghc-9.6.6/bin/./ghc-9.6.6: /lib64/libtinfo.so.6: no version information available (required by /home/a/.stack/programs/aarch64-linux/ghc-ti |
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
| execve("/usr/local/bin/qman", ["qman", "-T"], 0xffffc8bb7158 /* 135 vars */) = 0 | |
| brk(NULL) = 0x3d228000 | |
| faccessat(AT_FDCWD, "/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
| openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 | |
| fstat(3, {st_mode=S_IFREG|0644, st_size=156171, ...}) = 0 | |
| mmap(NULL, 156171, PROT_READ, MAP_PRIVATE, 3, 0) = 0xffff0c4ac000 | |
| close(3) = 0 | |
| openat(AT_FDCWD, "/lib64/libz.so.1", O_RDONLY|O_CLOEXEC) = 3 | |
| read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0\267\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 | |
| fstat(3, {st_mode=S_IFREG|0755, st_size=267984, ...}) = 0 |
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
| EXA_LD_OPTIONS=--only-dirs | |
| EXA_LAAI_OPTIONS=--all --all --binary --icons | |
| EXA_LO_OPTIONS=--oneline | |
| KITTY_PUBLIC_KEY=1:mi`@nF%GoghhJL)p`yX+@?IA)tK=fkIDzonJ{~+V | |
| PERL_LOCAL_LIB_ROOT=/home/a/perl5 | |
| DEBUGINFOD_URLS=https://debuginfod.fedoraproject.org/ | |
| NVM_BIN=/home/a/.nvm/versions/node/v22.9.0/bin | |
| COLORTERM=truecolor | |
| XDG_VTNR=1 | |
| XKB_DEFAULT_LAYOUT=us |
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
| execve("/usr/local/bin/qman", ["qman", "ls"], 0xffffd649c248 /* 135 vars */) = 0 | |
| brk(NULL) = 0x276a0000 | |
| faccessat(AT_FDCWD, "/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
| openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 | |
| fstat(3, {st_mode=S_IFREG|0644, st_size=156171, ...}) = 0 | |
| mmap(NULL, 156171, PROT_READ, MAP_PRIVATE, 3, 0) = 0xfffec9b5c000 | |
| close(3) = 0 | |
| openat(AT_FDCWD, "/lib64/libz.so.1", O_RDONLY|O_CLOEXEC) = 3 | |
| read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0\267\0\1\0\0\0\0\0\0\0\0\0\0\0"..., 832) = 832 | |
| fstat(3, {st_mode=S_IFREG|0755, st_size=267984, ...}) = 0 |
NewerOlder