万年素人からHackerへの道

万年素人がHackerになれるまで殴り書きするぜ。

  • ・資産運用おすすめ
    10万円は1000円くらい利益
    資産運用ブログ アセマネ
    • ・寄付お願いします
      YENTEN:YYzNPzdsZWqr5THWAdMrKDj7GT8ietDc2W
      BitZenny:ZfpUbVya8MWQkjjGJMjA7P9pPkqaLnwPWH
      c0ban:8KG95GXdEquNpPW8xJAJf7nn5kbimQ5wj1
      Skycoin:KMqcn7x8REwwzMHPi9fV9fbNwdofYAWKRo

    2023-09-01から1ヶ月間の記事一覧

    2つのUIViewControllerを交換する拡張メソッド

    /// Swaps the display order of two child view controllers within their parent view controller. /// /// This method is used to adjust the z-ordering of the views associated with two child view controllers. /// It's particularly useful when …

    Xcode 15 - Unable to install iOS 17 Simulator runtime

    Unable to install iOS 17 Simulator runtimeみたいなエラーが出た。 https://developer.apple.com/forums/thread/737648 iOS_17_Simulator_Runtime.dmg をダウンロードする。 その後ダウンロードしたフォルダで以下のコマンド。 xcrun simctl runtime add i…

    bonfireでのExample

    https://github.com/RafaelBarbosatec/bonfire v3.0.0を使うのがいい。 bonfireでのExampleのメモ

    Godot試し

    Godot(ゴドー)試す。 今から始める『Godot Engine』 を参考にした。 ダウンロード https://godotengine.org/download/macos/ 2つあった。.NETなしでいいや。 Godot Engine with .NET Support: .NETを使用してスクリプトを書くことができます(主にC#)。 …

    MAUIを始めるのに参考になる

    Getting started with .NET MAUI (iOS) on an M1 Mac.

    miro pluginのドキュメント

    https://developers.miro.com/docs

    UICollectionViewCompositionalLayoutはUICollectionViewFlowLayoutと競合するもの

    iOS 13から登場した以下の方法 ※今回 _ にしているが、実際の値は(sectionIndex, environment) self.collectionView.collectionViewLayout = UICollectionViewCompositionalLayout { _, _ in // セルの高さ let cellHeight: CGFloat = 54.0 // セルの上下左…

    XcodeへのGitHubアカウントの設定

    XcodeへのGitHubアカウントの設定 | 現役のプログラマーが書くプログラミング情報 なんだこれ? https://github.com/settings/tokens?type=beta

    go install によってインストールされた実行可能ファイルが使えない場合のトラブルシューティング

    go

    go get -d github.com/作者の名前/ツールの名前でいつもGitHubとかからインストールしているかと思うが、 ローカルに git clone したものはカレントディレクトリに移動して go install でインストールできる。 $GOPATH/bin が $PATH に含まれているか確認 Go…

    TypeScriptをサポートしているECサイトのフレームワーク

    TypeScriptをサポートしているECサイトのフレームワークやライブラリはいくつか存在します。以下は主なものをいくつか挙げてみました: Next.js with Commerce.js: Next.js はReactベースのフレームワークで、サーバーサイドレンダリングや静的サイト生成が…