Taehyung icons indie kid
seen from China
seen from South Africa

seen from United Kingdom

seen from United States

seen from United Kingdom

seen from United States

seen from United States
seen from Switzerland

seen from Türkiye

seen from United States
seen from Switzerland

seen from United States
seen from United States
seen from Russia
seen from Saudi Arabia
seen from United States
seen from Türkiye
seen from South Africa
seen from United States
seen from United States
Taehyung icons indie kid
˗ˏˋ taehyung pack ꒰ •ᴗ•。꒱
↳ like if you save
↳ don’t repost
Error: /lib64/libc.so.6: version 'GLIBC_2.14' not found
Sometimes on your node.js project you have seen problems like “Error: /lib64/libc.so.6: version ‘GLIBC_2.14’ not found” by some npm modules.
Error: /lib64/libc.so.6: version ‘GLIBC_2.14’ not found
This error comes when the available version of glibc is not compatible by the node module.
So, if you still want to work with that module, you need to rebuild that module on your project.
To do this simply go to Github, Clone a repo for node module where its installed in project, may be in node_modules directory.
Inside the node_modules directory clone that repo:
Example- git clone https://github.com/node-xmpp/node-expat.git
Now go to the cloned module, cd node-expat
Then install all node module dependencies. – npm install
After installing it to a clean build for that module: – node-gyp rebuild
Voila! Use the module in your project now.
Translation: Even computers struggle
Translation: Even computers struggle
unsplash-logo Hannah Wright
As I’ve mentioned before, I’ve been working on the mainframe for a long time. I have had to contend with the reality that on z/OS we speak EBCDIC. Almost everywhere else people speak ASCII. ASCII literate folks are moving into the z/OS neighbourhood, but the old timers are most comfortable in EBCDIC. I like to think I’m relatively bilingual. Especially if you compare…
View On WordPress
Convert Little-endian UTF-16 to ASCII
Convert Little-endian UTF-16 to ASCII
Photo by Markus Spiske temporausch.com on Pexels.com
I generated some text files working with Get-Acl Powershell, but I did not know how to get Powershell to do some advanced features. (Basically, I wanted to the Select-String to include the next 2 lines and see whether a specific group was in that list. And maybe some exclusions.) So, I copied the files over to my Linux home to check there.
The…
View On WordPress
cp949로 되어있는 자막을 utf8로 변환
for F in ./*.smi ; do iconv -f cp949 -t utf8 $F > $F.tmp && mv $F.tmp $F ;done
UTF-8 , ISO-8859-9 karaktersetli dosyaların dönüşümü, iconv , replace
Linux’da faydalı konsol araçlarından biri de iconv, genellikle windowsda oluşturulmuş ve karakterseti iso-8859-9 olan html yada sql dosyalarını kolaylıkla utf-8 e çevirebilirsiniz, tabiki terside mümkün…
#conv -c -f euc-kr -t utf-8 test.txt > test-utf8.txt
위로그 > 서버관리 > linux > 리눅스에서 euc-kr 파일을 utf-8 파일로 변환 명령어