Jun Makita
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# Hamamatsu.rb #169 ## 自己紹介 - 司会担当の方。普段は製造業でC++ - 2014年からSEになった方。豊橋から参加。Rubyはずっと使っています。職場は人が足りない。 - 楽しい話をしたい - 主にC++。音楽が趣味。学生時代にHmrbに参加したことがある。 - 社会人になって遊び飽きたので勉強している。資格も増やしたい。 - ホームページ、ECサイトの編集とか更新を担当している方。php、js、VBA、pythonとか - Rubyは本業では使っていない - 仕事ではC#。議事録担当の人 - 仕事初めてまだ1年たったぐらい。Rubyは今年1月から触るようになった。 - 1人しゃべれない - 今日は参加者が多い(喜) ## 前回ふりかえり - 前回議事録を参照 ## 今回のネタ - frozen_string_literal: true/false が指定されていないファイルで文字列に破壊的な変更を加えると警告が出るようになった - https://qiita.com/jnchito/items/49827d5ce7154ad86bad - 3.4から警告が出るようになった(-wオプションか環境変数を設定すると出る) - いずれこれが許されなくなる ```ruby= a = "ruby" a.frozen? #=> true a.upcase! #=> can't modify frozen String: "ruby" (FrozenError) ``` - 動かさずにこれを発見するにはどうすればいいか?rubocopとか? - rubocopで発見できるはず - Railsではデフォルトでfreezeされるはず - freezeしてると結構パフォーマンスが違うらしい - frozen_string_literal: true/false が指定されていないファイルで、 String#+@ メソッドを使うと複製された文字列を返すようになった - プラスマイナスの書き方は人間にはわかりずらい気がする - 何か歴史があるのかもしれない - Symbol#to_s で返ってくる文字列がチルド文字列になった - 将来的に Symbol#to_s で返ってくる文字列は凍結状態になる予定 - RubyのGVLを消し去りたいあなたへ(翻訳)|TechRacho by BPS株式会社 - https://techracho.bpsinc.jp/hachi8833/2025_03_03/148712 - TechRachoのネタ多い - GVLは「グローバルVMロック」の略ですが、「ジャイアントVMロック」とされることもあります。 - マルチスレッドでロックがかかるという話 - この記事長くて難しいな - 今日参加する前に読んだ(Rails8セットアップするときにこけて見つけた) - こけるとここに行き着くことがある - TypeScript、パフォーマンス改善のためにネイティブ実装の取り組みを発表 ——ネイティブ実装にGo言語を使い、ビルド時間(tsc)は10倍の速度改善 | gihyo.jp - https://gihyo.jp/article/2025/03/typescript-native-port - 早くなったらうれしいが、それほどでかいプロジェクトを持ってない - https://github.com/microsoft/typescript-go/discussions/411 - 話が長いw - ![image](https://hackmd.io/_uploads/SyNAP1k3ye.png) - Rustだと固すぎるからかな… - 早いことはいいことだ。スピードは正義 - VS Code本体の1,505,000LOCってすごいな - RubyKaigi 2025 - https://rubykaigi.org/2025/ - いわゆるRuby学会のようなもの - 基調講演3名 - スピーカーたくさん - 今年の予定表はまだ - Ruby会議は夜のパーティーが本番といううわさ。前回の沖縄は盛り上がったそうです - 日本語の発表が多い(行くたびに英語勉強しようと思うらしい) - なかなか仕事3日間休んでいくのは大変だが価値はある - 昔より有給は取りやすくなった - 愛媛県観光してきます - Ruby会議でも音楽系の発表で盛り上がりたい - 浜松はRubyの生まれた街…ということで - いずれRuby会議が浜松で行われるであろう(という妄想) - Pythonはリアルタイム処理でもわりと実績がある - RubyよりもC言語の発表の方が多い説 - 参加費は15,000円以上 - https://ti.to/rubykaigi/2025 - 以前フロッピーディスク配りました(kosappi) - https://tech-blog.yayoi-kk.co.jp/entry/build-the-ruby-from-a-floppy-disk ## 本の宣伝 - 『伝わるコードレビュー 開発チームの生産性を高める「上手な伝え方」の教科書』 - snoozer05's blog - https://snoozer05.hatenablog.jp/entry/2025/03/04/172517 - コードレビューいつかゆっくり相談したいな…コードレビュー回用意したい - ちゃんとやってないところもある… - コードレビュープロセスが厳格すぎてリリースできない…みたいなことも - Web IT系だと比較的進んでるのかも ## 次回以降のネタ - コードレビュー回用意したい ## LT ### PicoRuby/R2P2で作るMIDIコントローラー「PRMC-1」開発進捗報告(10~15分) - ABC記譜法 - Wikipedia - HackMDはABC記譜法に対応している - https://ja.wikipedia.org/wiki/ABC%E8%A8%98%E8%AD%9C%E6%B3%95 ```abc M:2/4 L:1/8 K:F M:4/4 L:1/8 Q:1/4=120 K:C treble c d e f e d c d || ``` - @risgk のLT準備(募集用の資料)について相談させてください。 - ハードウェアを作るのは楽しいぞ、といった内容を前に押し出したタイトルがいいかも - ハードウェア構成が変わりました。 - https://risgk.github.io/midi-controller-prmc-1/midi-controller-prmc-1-1920x1080.jpg - ロータリーエンコーダーに代わってます。360度回る! - 押しボタンが付いた - ネタが被らないか不安… - あるか? - おそらく全く同じネタで重なることはないと思うが、USB-MIDIコントローラー出してくる人がいるかも - PicoRuby = mruby/c - PicoRubyはmrubyより小さいのでより小さい環境で動く - HW上のVMでRubyが動くかんじ - 落ちても落ちなくてもHamamatsu.rbで発表するよ - おそらく音も出せるのでは - リジェクト会議がかつてはあったらしい - RubyKaigi 2025、LT募集が始まりました。3/30締切です。 - 募集サイトはここ - https://cfp.rubykaigi.org/events/2025LT - いまんとこ10人の枠に数10人募集が来ると思われる ## KPT - http://firekpt.jacoyutorius.com/board/?id=-OL91FSRSqToS87VgBGk&title=Hamamatsu.rb%20%23169 - 今日はなぜか爆速 ### KEEP - てすと ★4 - はじめて参加できた - 話してる間に3.4.2を入れれた ★1 - 久しぶりの参加 ★1 - LTの相談ができた ★2 - 参加者が多い! ★2 - 超適当に発言できた - 参加者が多い ### PROBLEM - あんまりしゃべれなかったのかもしれん - 3.4.2入れ忘れてた - 30分遅刻した(´・ω・`) ★2 - 少ししゃべりすぎ ★1 - Mac に Ruby 3.4 入らなかった。。 ★2 ### TRY - 次回 #169、4/9(水)19:30 - 21:00 オンライン開催 ★2 - コードレビュー回 ★2 - hamamatsu.jsに出る ★2 - Ruby 3.4 - R2P2楽しそう ★1 - 次は何かネタを持ってくる ★1 - プロポーザル楽しそう ## 告知 - 次回 #169、4/9(水)19:30 - 21:00 オンライン開催 - 4/16(水)- 18(金)RubyKaigi 2025 @ 愛媛県民文化会館 - https://rubykaigi.org/2025/ - JAWS-UG浜松+Hamamatsu.js 勉強会202504 - https://jawsug-hamamatsu.connpass.com/event/348230/ - typescriptの話もあり? - もちろんありです

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully