Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
ncursesを学ぼう
Search
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
poccariswet
November 11, 2018
Programming
0
80
ncursesを学ぼう
ncurses
poccariswet
November 11, 2018
Tweet
Share
More Decks by poccariswet
See All by poccariswet
rust for web app
poccariswet
2
370
APNG maker on wasm
poccariswet
1
200
past and future
poccariswet
0
82
shorterql
poccariswet
0
95
i_and_go
poccariswet
0
68
editor
poccariswet
0
100
さぁ、深夜ラジオを聴こう!
poccariswet
0
120
Aizu-Go
poccariswet
1
170
Other Decks in Programming
See All in Programming
LangChain4jとは一味違うLangChain4j-CDI
kazumura
1
140
DSPy入門 Pythonで実現する自動プロンプト最適化 〜人手によるプロンプト調整からの卒業〜
seaturt1e
1
480
Rubyと楽しいをつくる / Creating joy with Ruby
chobishiba
0
200
今、アーキテクトとして 品質保証にどう関わるか
nealle
0
200
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
180
モジュラモノリスにおける境界をGoのinternalパッケージで守る
magavel
0
3.4k
Railsの気持ちを考えながらコントローラとビューを整頓する/tidying-rails-controllers-and-views-as-rails-think
moro
4
370
Geminiの機能を調べ尽くしてみた
naruyoshimi
0
190
maplibre-gl-layers - 地図に移動体たくさん表示したい
kekyo
PRO
0
150
Python’s True Superpower
hynek
0
200
ふつうの Rubyist、ちいさなデバイス、大きな一年
bash0c7
0
110
CSC307 Lecture 11
javiergs
PRO
0
590
Featured
See All Featured
Crafting Experiences
bethany
1
75
The Invisible Side of Design
smashingmag
302
51k
Neural Spatial Audio Processing for Sound Field Analysis and Control
skoyamalab
0
200
Testing 201, or: Great Expectations
jmmastey
46
8.1k
Agile Leadership in an Agile Organization
kimpetersen
PRO
0
97
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
287
14k
Building Experiences: Design Systems, User Experience, and Full Site Editing
marktimemedia
0
430
The State of eCommerce SEO: How to Win in Today's Products SERPs - #SEOweek
aleyda
2
9.7k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
49
9.9k
Bash Introduction
62gerente
615
210k
The Spectacular Lies of Maps
axbom
PRO
1
580
Redefining SEO in the New Era of Traffic Generation
szymonslowik
1
230
Transcript
ncursesを学ぼう
自己紹介
は知っていると思うのですっ飛ばします!
今日やること〜! ・ncursesとは一体なんなのか... ・どうゆうことに使われてるの〜? ・あなたはそれで何をして来るの?
3本立てでお送りいたします。
ncurses?
スクリーン、キー入力、カーソルなどを管理 するライブラリのこと
また、ncurses を使用することで端末が違っていて も同じように画面(cui)の制御が出来る!
簡単に言うと
ncurses を使えば、cui の画面制御が簡単にできるってことです
実用例をみましょい!
ncurses 実用例 zsh などなど...
ncurses の名前の由来は、curses ライブラリ(UNIX系システムでの端末 制御ライブラリ)の後続で作成されたため、’new curses’ を略して ncurses になったみたいです! (curses自体の開発はすでに終了している) ちょっとした豆知識
また、最近新しい version が追加されたらしく... 【6.1のポイント】 ・バージョン6系の登場から2年半ぶりのポイントリリース ・性能を強化 ・カラーペア管理を簡素化する関数強化 ・RGB拡張の強化
基本文法
None
みたいな感じです!
で、僕がこの技術を使って何をするかと言うと
簡易的なテキストエディタを作って来ます。