Firefoxでよく使っているアドオンをメモしておく。
Firefox Developer Editionを使っている。一時期はVivaldiに浮気していいた。 Chromium系が必要になったときのために、サブとしてIridium Browserも入れている。
Firefoxでよく使っているアドオンをメモしておく。
Firefox Developer Editionを使っている。一時期はVivaldiに浮気していいた。 Chromium系が必要になったときのために、サブとしてIridium Browserも入れている。
Important
I have "moved" this post to my website: https://slugcat.systems/brain_dump/linux-desktop-issues/. Any new updates will be made there.
This is basically my manifesto of why Linux sucks and I keep using Windows as a desktop OS. This is both as a developer platform and end-user targeting.
Look: I would love to be able to use Linux as a daily driver. KDE is amazing and they clearly put far more effort into the desktop experience/UI than Windows (just the volume mixer alone). There are simply far too many underlying and infrastructural problems to the Linux desktop that none of KDE's great UI changes can make up for. I want Linux fanboys, developers, etc... to stop sticking their damn head in the sand about these issues and admit that Linux is still decades behind in some basic infrastructure. This shit can't get fixed if people refuse to admit it's broken in the first place, which some people are far too happy to do.
オレは高校生シェル芸人 sudo
新一。幼馴染で同級生の more
利蘭と遊園地に遊びに行って、黒ずくめの男の怪しげな rm -rf /
現場を目撃した。端末をみるのに夢中になっていた俺は、背後から近づいてきたもう1人の --no-preserve-root
オプションに気づかなかった。
俺はその男に毒薬を飲まされ、目が覚めたら・・・ OS のプリインストールから除かれてしまっていた!
『 sudo
がまだ $PATH
に残っていると奴らにバレたら、また命を狙われ、他のコマンドにも危害が及ぶ』
上田博士の助言で正体を隠すことにした俺は、 which
に名前を聞かれて、とっさに『gnuplot
』と名乗り、奴らの情報をつかむために、父親がシェル芸人をやっている蘭の $HOME
に転がり込んだ。ところが、このおっちゃん・・・とんだヘボシェル芸人で、見かねた俺はおっちゃんになりかわり、持ち前の権限昇格能力で、次々と難タスクを解決してきた。おかげで、おっちゃんは今や世間に名を知られた名エンジニア、俺はといえばシェル芸 bot のおもちゃに逆戻り。クラスメートの convert
や ojichat
や textimg
にお絵かきコマンドと誤解され少年ワンライナーお絵かき団を結成させられる始末。
ではここで、博士が作ってくれたメカを紹介しよう。最初は時計型麻酔 kill
。ふたについた照準器にあわせてエンターを押せば、麻酔シグナルが飛び出し、プロセスを瞬時に sleep
させることができる。
次に、蝶ネクタイ型 banner
。裏についているダイヤルを調整すれば、ありとあらゆる大きさのメッセージを標準出力できる。必殺のアイテムなら fork
力増強シューズ。電気と磁力で足を刺激し、 :(){ :|:& };:
でプロセステーブ
It can be easily done via changing the product.json
file located at:
/usr/lib/code/product.json
Change the values at extensionsGallery
from this,
"extensionsGallery": {
{ | |
"metadata":{ | |
"date":"2021-05-17", | |
"member_amount":{ | |
"japan":{ | |
"gen_0":5, | |
"gen_1":5, | |
"gen_2":5, | |
"gamers":4, | |
"gen_3":5, |
A working demo of the pop-up can be found here.
I wanted a modal pop-up for images on my new Hugo site, and couldn't find one that worked with the styling that I do to the image path name.
I'm new to Hugo, but I feel that the solution is simple and effective. The close button has been optimzed for accessibility as it is named close
, but
displays only ×
(×).
DNSフラグメント攻撃についてはこちらを参照されたい。
You will need a 3DS running Luma CFW, as well as a computer that is capable of creating an access point or running a proxy.
It is necessary to disable Root CA Verification in order to capture all 3DS traffic. We recommend doing this with SciresM's 3DS-SSL-Patch.
For ease of use, you can download this premade code.ips
patch and place it at /luma/titles/0004013000002F02/code.ips
on your 3DS' SD card. Make sure that you've enabled Luma's game patching feature by holding down the select button while powering on your 3DS.
/* ##### float32encoding.js ##### | |
MIT License | |
- Forked 'toFloat' from https://gist.github.com/laerciobernardo/498f7ba1c269208799498ea8805d8c30 | |
- Forked 'toHex' from stackoverflow answer https://stackoverflow.com/a/47187116/10522253 | |
- Modifyed by: Jozo132 (https://github.com/Jozo132) | |
Permission is hereby granted, free of charge, to any person obtaining | |
a copy of this software and associated documentation files (the | |
"Software"), to deal in the Software without restriction, including |
#!/usr/bin/gawk -f | |
#http://gcc.gnu.org/onlinedocs/gcc/Overall-Options.html | |
BEGIN { | |
gcc_cmd="gcc -Q --help=warnings,^joined,^undocumented"; | |
w_lv[0] = ""; | |
w_lv[1] = "-Wall"; | |
w_lv[2] = "-Wall -Wextra"; | |
for(i = 0;i < 3;i++){ | |
cmdln = sprintf("%s %s",gcc_cmd,w_lv[i]); |