Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

This article is a Private article. Only a writer and users who know the URL can access it.
Please change open range to public in publish setting if you want to share this article with other users.

OSS vs NIH, github, bin, and the others

Last updated at Posted at 2023-05-01

OSS vs NIH

  • Open source softwareとNot invented here症候群
  • CUI(CLI) とGUI
    • character user interface, command line interface
    • graphical user interface

git and github

  > sudo apt install openssh-client # defaultでは入ってないみたい
  > ssh-keygen # passwordなどをいれず!にdefault選択
  > ls .ssh
  > cat .ssh/id_ed25519.pub | clip.exe # clip boardにcopy, macではpbcopy(paste board)
  > explorer.exe https://github.com
  - make account on Edge
  - ssh config on settings and paste public key
  > git clone git@github.com:daddygongon/comp_a_25s.git

binにくだらない魔法を追加

  > cd comp_a_25s
  > mkdir ~/bin
  > cp bin/open_python ~/bin/open
 # これ以降は$PATHへの'~/bin'の登録手順
  > mkdir ~/.config
  > mkdir ~/.config/fish
  > touch ~/.config/fish/config.fish
  > echo 'set PATH ~/.local/bin ~/bin . $PATH' >>  ~/.config/fish/config.fish
 # Ubuntuを再起動 or fishと入力

the others

# Macはaptの代わりにbrewする
  
> sudo apt install fd-find
> sudo apt install tldr
> sudo apt install bat
> sudo apt install tree
> sudo apt install sl
  • apt: advanced package tool
  • brew: home brewery (密造酒)の略

課題

> aoyamatype -c

での結果をtextにしてLUNAへ提出.

> sudo apt install python3-tk
> pip install PyQt6 #が必要かも...
> aoyamatype -r

で出てきたグラフをpngで保存してLUNAへ提出.

> aoyamatype -c

の結果を前回と比較して,寸評をテキストでLUNAへ報告してください.


  • source ~/Desktop/lecture_25s/comp_a_25s/lectures/d3_oss_vs_nih/readme.org
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?