Category: Technology

Greenpeace opposes nuclear energy. Young climate activists say that’s ‘old-fashioned’ – CBC News [2023-09-07]

Young climate activists in Europe are calling on Greenpeace to drop its “old-fashioned” stance against nuclear energy. Activists from five EU countries have launched the Dear Greenpeace campaign, asking the…

By canadianguy

Elon Musk ‘likes’ trending #BanTheADL posts as white supremacist ad runs on platform – Mashable [2023-09-01]

Over the past 24 hours, the hashtag #BanTheADL has been trending on X, the platform formerly known as Twitter. The trending hashtag refers to the Anti-Defamation League, the Jewish anti-extremism civil rights…

By canadianguy

Meta’s news block hits Indigenous communities harder, Six Nations publisher says – CBC News [2023-08-29]

The publisher of a First Nations newspaper based in Six Nations of the Grand River, Ont., says she’s “extremely concerned” about the impact on Indigenous communities of Meta blocking news content in Canada.…

By canadianguy

Lubuntu on Vbox

This is the fastest Linux so i have install it on Virtual Box. I have selected 4 cores, 4GB RAM and 3D acceleration, so that’s fine to run this distro, fast as possible. There is not much to test on, well you can…

By ipristy

EFCoreでカスケード削除を扱う

ちょっとハマったのでメモがてら。 EFCoreでカスケード削除を扱うには、ビルダーの構成が必要になります。…

By 10nin

WSLが立ち上がらなかったときに行ったことのメモ

今日久しぶりにWSL環境を使おうとしたところ Error: 0x8004326 ErrorCode: Wsl/Service/0x8004326…

By 10nin

From 66MHz to 4GHz

Back than there were clone CPUs or x86 compatible, like AMD 486 DX2 66MHz, that what we had in first family PC. System had 8MB of RAM, 1MB graphics card and 420MB hard drive. Later on there was multimedia upgrade with…

By ipristy

C#: Statelessライブラリを使う

先日、図のような状態遷移を扱う設計だったところに、if文やswitch文を多用して状態遷移を実現しているコードに出会いました。 今回議論の対象にする状態遷移…

By 10nin

chmod +x with git on Windows

Sometimes you need to set the executable flag for files in a git project when you're on Windows. To do that, use git update-index:…

By cwansart

Selenium + WebDriverをさわる

先日から空き時間を見つけてちょこちょこと作っているツール、FSharp.DataのHttpクライアントを使ったPOST処理では、外部からの不正なリクエストとみなされてしまう状況が改善しないようなので、WebDriver + Seleniumを使ってアクセスをしてみることにしました。 そこで、まずはSeleniumの使い方を調べます。…

By 10nin

意図しないリクエストとされて悪戦苦闘

「ブラウザ操作の自動化をしたい」訳なのだけれども、ツール化すると不正なリクエストとして処理されてしまう問題に悩まされている。 こういうのは、いっそPowerAutomateとかSelenium的なツールを使って自動化した方が良いのだろうか?…

By 10nin

PowerShellスクリプトで日本語を扱う

先日、ちょっとした作業をPowerShellでスクリプト化する仕事をしました。 いつもの調子でUTF-8(BOMなし)で書いてチームメンバーに共有したところ、相手の環境では文字化けが発生してしまってまともに動かない状態に。文字化けの状況からSJISで保存すれば動きそうだなと判断して、SJISで保存し直してもらってスクリプト自体は無事に動いたのですが、手元ではUTF-8で動いているし、なんだか納得いかないので調べてみることにしました。… …

By 10nin