lua

Basic lua intro - lua์†Œ๊ฐœ: ์™œ lua์ธ๊ฐ€ lua install - lua ์„ค์น˜ํ•˜๊ธฐ, hello world lua interactive - ๋ฃจ์•„ ์ธํ„ฐ์—‘ํ‹ฐ๋ธŒ lua quick quide - lua ๊ธฐ๋ณธ ๋ฌธ๋ฒ• ๊ฐ€์ด๋“œ Lua Modules luarocks - lua ํ™•์žฅ ๋ชจ๋“ˆ ํŒจํ‚ค์ง€ ๊ด€๋ฆฌ luastatic - lua ์ปดํŒŒ์ผ ๋‹จ๋… ์‹คํ–‰ํŒŒ์ผ ๋งŒ๋“ค๊ธฐ lua-csv - lua csv ๋ชจ๋“ˆ lua-json - lua json ๋ชจ๋“ˆ LuaJit luaJit - LuaJit, Just in Time Compiler luajit lfs-ffi - LuaJit lua file system ๋ชจ๋“ˆ luafun - LuaJit Functions Module (ํ™•์žฅ๋ชจ๋“ˆ) Graphic & Game lua love - lua love 2D ๊ฒŒ์ž„ ๋งŒ๋“ค๊ธฐ gimp-glua - gimp์˜ ์ด๋ฏธ์ง€ ํ”„๋กœ์„ธ์‹ฑ ํ”Œ๋Ÿฌ๊ทธ์ธ IoT nodemcu - Lua base firmware esp32, esp8266 Science & Math gsl shell - Luajit GNU Scientific Library Shell WWW openresty - ์›น๊ฐœ๋ฐœ ์ธํ„ฐํŽ˜์ด์Šค: luajit + nginx luakit - A fast, extensible, and customizable web browser ์‘์šฉ lua pi - Raspberry Pi์—์„œ Lua ๊ฐœ๋ฐœ ๋ฐ ์„ค์น˜ ํ™˜๊ฒฝ ๋งŒ๋“ค๊ธฐ nvim lua - nvim์„ lua๋กœ ์„ค์ • ๋ฐ ๊ด€๋ฆฌํ•˜๊ธฐ alpine lua language server - Lua Language Server Install Links Lua Sample Code https://lua-users.org/wiki/SampleCode Awesome Luahttps://github.com/LewisJEllis/awesome-lua Awesome Restyhttps://github.com/LewisJEllis/awesome-lua

2022-08-27 ยท 166 words

Bash readlines how to

Method 1 for read -r line do echo $line done < input_file.txt > out_file.txt Method 1 file=$(cat input_file.txt) for line in $file do echo $line done < input_file.txt > out_file.txt Links https://www.geeksforgeeks.org/bash-scripting-how-to-read-a-file-line-by-line/

2022-08-26 ยท 32 words