tohokuaikiのチラシの裏

技術的ネタとか。

2024-12-01から1ヶ月間の記事一覧

acmephp/sslを使ってPHPでSSLの秘密鍵ファイル・CSRファイルを発行する方法

このライブラリであっという間にできてしまった。 acmephp.github.io acmephp/sslはバージョン2.1、PHPは8.3.6でopensslモジュールは必須。 やりたいこと 以下の2つ 秘密鍵ファイルの発行(パスフレーズ有・パスフレーズ無) CSRの発行 使い方 使い方という…

TypeScriptでデータを元に重複を見てループする方法

俺のコード type Job = Record<'area' | 'act' | 'type' | 'num' | 'days' | 'limit', string>; type Filter = Record<'area' | 'act' | 'type', string[]>; const filter:Filter = { area: [], act: [], type: [] }; (async () => { const resp = await fet…

ReactでModalを消すときにフォーカスが消える要素に当たってますよってエラーが出たので何とかしてもらった。

こんなエラーが出た。 Blocked aria-hidden on an element because its descendant retained focus. The focus must not be hidden from assistive technology users. Avoid using aria-hidden on a focused element or its ancestor. Consider using the in…

React Google Mapsを使ってて、PINを打とうとするとなんか微妙にずれる件

visgl.github.io Pinを使ってラップするとうまい具合に中のピンも寄ってくれるので、GoogleマップのPinの要素は全部透明化してやればOK <AdvancedMarker position={{ lat: point.lat, lng: point.lng }} ref={ref} onClick={handleClick}> <Pin borderColor="transparent" background="transparent" glyphColor="transparent"> <div className="landmark"> </div></pin></advancedmarker>