Skip to content

Instantly share code, notes, and snippets.

View asd142513's full-sized avatar
πŸ‡°πŸ‡·

Donghyeon Lee asd142513

πŸ‡°πŸ‡·
View GitHub Profile
@philoskim
philoskim / vscode-on-ubuntu.adoc
Last active April 26, 2025 13:42
Ubuntuμ—μ„œ Visual Studio Code ν•œκΈ€ μž…λ ₯ μ•ˆλ˜λŠ” ν˜„μƒ 해결법

Ubuntuμ—μ„œ Visual Studio Code ν•œκΈ€ μž…λ ₯ μ•ˆλ˜λŠ” ν˜„μƒ 해결법

Ubuntu 19.10μ—μ„œ Visual Studio Code μ‚¬μš© 쀑 ν•œμ˜ μ „ν™˜ν‚€λ₯Ό λˆ„λ₯΄κ³  ν•œκΈ€μ„ μž…λ ₯ν•˜λ € ν–ˆλ”λ‹ˆ, ν•œκΈ€ μž…λ ₯이 μ•ˆλ˜κ³  μ˜μ–΄λ§Œ 계속 μž…λ ₯λ˜λŠ” ν˜„μƒμ„ λ°œκ²¬ν–ˆλ‹€. κ·Έλž˜μ„œ 인터넷을 검색해 λ΄€λ”λ‹ˆ snap ν˜•μ‹μ˜ Visual Studio Codeλ₯Ό μ„€μΉ˜ν•œ κ²½μš°μ—, Ubuntu의 μž…λ ₯기인 IBus와 μΆ©λŒν•΄μ„œ μΌμ–΄λ‚˜λŠ” ν˜„μƒμ΄λΌκ³  ν•œλ‹€. 그런데 .deb ν˜•μ‹μ˜ Visual Studio Codeλ₯Ό μ„€μΉ˜ν•œ κ²½μš°μ—λŠ” 그런 λ¬Έμ œκ°€ μ—†λ‹€λŠ” 사싀을 μ•Œκ²Œ λ˜μ–΄, μ„€μΉ˜ν•΄ λ΄€λ”λ‹ˆ ν•œκΈ€ μž…λ ₯이 μ •μƒμ μœΌλ‘œ μ΄λ£¨μ–΄μ§€λŠ” 것을 ν™•μΈν–ˆλ‹€. κ·Έλž˜μ„œ 같은 문제λ₯Ό κ²ͺλŠ” μ‚¬λžŒλ“€μ„ μœ„ν•΄ 이 해결법을 κ³΅μœ ν•˜κ³ μž ν•œλ‹€.

  • λ¨Όμ € 이미 μ„€μΉ˜λ˜μ–΄ μžˆλŠ” snap ν˜•μ‹μ˜ Visual Studio Codeλ₯Ό μ œκ±°ν•œλ‹€.

@YumaInaura
YumaInaura / VIM.md
Last active April 17, 2025 14:53
Vim β€” What is the name of "q and colon" mode? ( A. command-line window )

Vim β€” What is the name of "q and colon" mode? ( A. command line window )

Or named "command window".

I mean "q and colon" ( q: ).

Not "colon and q" means quit vim ( :q ).

image

@fay59
fay59 / Quirks of C.md
Last active April 3, 2025 02:27
Quirks of C

Here's a list of mildly interesting things about the C language that I learned mostly by consuming Clang's ASTs. Although surprises are getting sparser, I might continue to update this document over time.

There are many more mildly interesting features of C++, but the language is literally known for being weird, whereas C is usually considered smaller and simpler, so this is (almost) only about C.

1. Combined type and variable/field declaration, inside a struct scope [https://godbolt.org/g/Rh94Go]

struct foo {
   struct bar {
 int x;
@CMCDragonkai
CMCDragonkai / regular_expression_engine_comparison.md
Last active May 9, 2025 10:44
Regular Expression Engine Comparison Chart

Regular Expression Engine Comparison Chart

Many different applications claim to support regular expressions. But what does that even mean?

Well there are lots of different regular expression engines, and they all have different feature sets and different time-space efficiencies.

The information here is just copied from: http://regular-expressions.mobi/refflavors.html