Search
735 results for “devSJR”
-
Also, I spent way too much time on tiny refactors again.
Necessary stuff, but honestly? Boring on stream.
I’ll move future refactors off-camera to focus more on the fun AI parts.Next time I’ll come prepared with a new image strategy and a tighter focus.
Until then: thanks to everyone who dropped by!
#JavaDev #LiveCoding #StableDiffusion #RTX3060 #LLaMA3 #ASCIIArt #GameDev #GenerativeAI #AIinGames #DevStreaming #SpringAI #Vaadin #CodingInPublic -
Folk som blir ertappades med att plagiera andra har i princip alltid gjort det flera gånger om. Så även Johannes Cullberg. Om du inte har instagram eller inte kan se klippen så finns de även här och här på youtube.
https://www.instagram.com/p/DEvSJFPo1HV
Jag påpekade redan för 2 år sedan att Cullberg mest bara verkade leta upp saker som var populärt på internet och dela […]
https://traningslara.se/skillnaden-mellan-att-gora-om-en-ide-och-plagiera/
-
Folk som blir ertappades med att plagiera andra har i princip alltid gjort det flera gånger om. Så även Johannes Cullberg. Om du inte har instagram eller inte kan se klippen så finns de även här och här på youtube.
https://www.instagram.com/p/DEvSJFPo1HV
Jag påpekade redan för 2 år sedan att Cullberg mest bara verkade leta upp saker som var populärt på internet och dela […]
https://traningslara.se/skillnaden-mellan-att-gora-om-en-ide-och-plagiera/
-
Folk som blir ertappades med att plagiera andra har i princip alltid gjort det flera gånger om. Så även Johannes Cullberg. Om du inte har instagram eller inte kan se klippen så finns de även här och här på youtube.
https://www.instagram.com/p/DEvSJFPo1HV
Jag påpekade redan för 2 år sedan att Cullberg mest bara verkade leta upp saker som var populärt på internet och dela […]
https://traningslara.se/skillnaden-mellan-att-gora-om-en-ide-och-plagiera/
-
discourse.helenprejean.org
thoughtful.social
chats.camjam.page
epistolary.org
mastodon.frl
independent-media.co.uk
mastodon.aargaunet.ch
freemasonry.social
kish.social
nog.community
whitesmokebbq.social
educhat.social
brians.town
niederbayern.social
home.speakfree.social
mastodon.acm.org
litrpg.online
shakuhachi.social
witten.social
graeber.social
mastodon.education
social.pogo.community
sotl.social
toots.258990001.xyz
rstats.me
social.foederiert.de
tech.retrotalk.live
thewiring.com
mastdn.social
mastodon.zorqz.com
devsrv.farhan.codes
prf.me
mastodon.ee
redwings.social
daotodon.me
social.boom.army
kalmar.social
azemet.space
handlewalks.masto.host
archaeology.social
mastodon.london
wehavecookies.social
portside.social
zirk.us
basstdn.jp
entomophagy.world
mastodon.svgun.ru
terere.social
mastodon.mg
piaille.fr
nafo.uk
super-gay.co
airwaves.social
mstdn.penguinhub.org
med-mastodon.com
nycity.social
lucha.nyc
extraordinarygeeks.social
phyrexia.ru
westen.social
crosstalk.tech
beyond.forum
pouet.evolix.org
thebigeasy.space
brokenhedge.org
mxtthxw.art
abitmu.ch
mastonederland.nl
mastodon-swiss.org
3dp.chat
pxlmo.net
arihi.me
mastodon.unpluggedrva.com
scfzfilm.org
kernkraft.social
strode.zone
library.love
digitaldata.social
besties.com
pravda.me
so.eddyn.net
game-tecx.de
m.kog.to
vrnd.network
hdty.in
toot.poedelwitz.de
onlybsds.com
drupal.community
tcpcat.net
tootnet.nl
smooth.guru
tut.andreer.no
cryptodon.lol
electroverse.tech
come-together.nl
linguisten.info
andrew.xyz
mastodon.omikron-alpha.net
mastodon.saarland
nasface.cz已暂时 Limit 上述受 SPAM 入侵实例。
#实例管理 -
Bought this MeLE Quieter3C fanless mini-PC.
Seems a nice little machine, and not too-slow like the mini-PC it's replacing.
Installing Debian wasn't entirely smooth though. Wifi drivers not in Debian 12 yet.
Had to install over ethernet and then figure out how to compile and install the wifi afterwards.
These being the ones in question: ( https://github.com/lwfinger/rtw89 )
In particular the required incantation is:
{{{
apt install dh-sequence-dkms debhelper build-essential devscripts make gcc build-essential git linux-headers-$(uname -r)
mkdir src
mkdir src/wifi
cd src/wifi/
git clone https://github.com/lwfinger/rtw89
cd rtw89/
git clean -xfd
git deborig HEAD
dpkg-buildpackage -us -uc
cd ..
dpkg -i rtw89-dkms_1.0.2-3_all.deb
modprobe -v rtw_8852ae
}}}Otherwise it seems a lovely machine.
Dunno why I sat around letting the default installed windows update before wiping it though. Wasted hours doing that for some reason. Then wasted ages figuring out the Debian wifi thing.
Still, the machine is plenty good enough now and my magic-mirror computer has progressed some.
Runs way hot though. Gonna have to be some careful case design when that part comes to avoid melting it.
-
[lazy admin writings] Backporting a deb package with Debian Linux
More recent yt-dlp versions (direct download ones) are complaining about EJS and warn that the build-in solution in yt-dlp will be deprecated. I wanted to prepare for this future deprecation so I had looked at the options before. The recommended one is Deno but I prefer to install from deb packages as much as possible and Deno could not be found in the Debian packages repositories. Then I had noticed that QuickJS (by the software genius Fabrice Bellard) is in the repositories but only from Debian Trixie and newer. The computer I use yt-dlp has Debian Bookworm and I’m not yet ready or too lazy or some such to make the jump from Bookwork to Trixie now.
What to do ? First I thought about apt-pinning which worked nice many years ago but in more recent years my experience with it was a bit too messy or chaotic. Chaos is fine but not too often 😉 So what then ?
Go Go Gadget! Backporting.
Years ago I had used backporting several times with Debian even for packages with a lot dependencies which meant backporting several other programs and libraries that the package depended on.
With QuickJS I expected things to be easy because Fabrice Bellard is a programmer which appears to avoid bloat and wants to use every bit as efficient as possible.
After a search engine search I quickly found what I needed, this page :
https://debian-handbook.info/browse/stable/debian-packaging.html
Let’s summarize how this backporting was a success :
I made sure I had compile tools installed.
# apt install build-essential
(# implies sudo or su to temporary have root privileges $ implies regular user)
Then installed the devscripts deb and one of the suggestions (dh-make) which I am not sure that it was actually needed :
# apt install devscripts dh-make
In /etc/apt/sources.list I added one new line (without the #) :
# deb-src http://deb.debian.org/debian/ trixie main contrib non-free
Then ran # apt update
As regular user :
$ apt source quickjs
After this command had downloaded the source, navigate into the new directory.
$ cd quickjs-2025.04.26/
Now an optional step which you can omit.
$ dch –local +falcot
Then the big moment. I still was not sure whether it needed more dependencies so this could fail.
$ dpkg-buildpackage -us -uc
And the compiling started and finished well.
The result were in the directory above (After compiling it will also mention that)
it resulted among other in two deb files : quickjs_2025.04.26-1_amd64.deb and libquickjs_2025.04.26-1_amd64.deb
The final step of backporting and installing :
# dpkg -i quickjs*deb libquickjs_2025.04.26-1_amd64.deb
That looked good, no errors.
Then the first new step with yt-dlp :
$ yt-dlp_linux –js-runtimes quickjs:/bin/qjs [and YouTube link here]
(Syntax following : https://github.com/yt-dlp/yt-dlp/wiki/EJS)
And there it was in the yt-dlp output, the final verdict, it worked! :
[youtube] [jsc:quickjs] Solving JS challenges using quickjs
[info] [YT-link part]: Downloading 1 format(s): 135+251
Of course this will be more difficult or even very difficult or almost impossible if the package you’d like to backport has many dependencies but
you never know unless you try! 🙂
#backporting #compiling #debian #linux #opensource #ytDlp -
[lazy admin writings] Backporting a deb package with Debian Linux
More recent yt-dlp versions (direct download ones) are complaining about EJS and warn that the build-in solution in yt-dlp will be deprecated. I wanted to prepare for this future deprecation so I had looked at the options before. The recommended one is Deno but I prefer to install from deb packages as much as possible and Deno could not be found in the Debian packages repositories. Then I had noticed that QuickJS (by the software genius Fabrice Bellard) is in the repositories but only from Debian Trixie and newer. The computer I use yt-dlp has Debian Bookworm and I’m not yet ready or too lazy or some such to make the jump from Bookwork to Trixie now.
What to do ? First I thought about apt-pinning which worked nice many years ago but in more recent years my experience with it was a bit too messy or chaotic. Chaos is fine but not too often 😉 So what then ?
Go Go Gadget! Backporting.
Years ago I had used backporting several times with Debian even for packages with a lot dependencies which meant backporting several other programs and libraries that the package depended on.
With QuickJS I expected things to be easy because Fabrice Bellard is a programmer which appears to avoid bloat and wants to use every bit as efficient as possible.
After a search engine search I quickly found what I needed, this page :
https://debian-handbook.info/browse/stable/debian-packaging.html
Let’s summarize how this backporting was a success :
I made sure I had compile tools installed.
# apt install build-essential
(# implies sudo or su to temporary have root privileges $ implies regular user)
Then installed the devscripts deb and one of the suggestions (dh-make) which I am not sure that it was actually needed :
# apt install devscripts dh-make
In /etc/apt/sources.list I added one new line (without the #) :
# deb-src http://deb.debian.org/debian/ trixie main contrib non-free
Then ran # apt update
As regular user :
$ apt source quickjs
After this command had downloaded the source, navigate into the new directory.
$ cd quickjs-2025.04.26/
Now an optional step which you can omit.
$ dch –local +falcot
Then the big moment. I still was not sure whether it needed more dependencies so this could fail.
$ dpkg-buildpackage -us -uc
And the compiling started and finished well.
The result were in the directory above (After compiling it will also mention that)
it resulted among other in two deb files : quickjs_2025.04.26-1_amd64.deb and libquickjs_2025.04.26-1_amd64.deb
The final step of backporting and installing :
# dpkg -i quickjs*deb libquickjs_2025.04.26-1_amd64.deb
That looked good, no errors.
Then the first new step with yt-dlp :
$ yt-dlp_linux –js-runtimes quickjs:/bin/qjs [and YouTube link here]
(Syntax following : https://github.com/yt-dlp/yt-dlp/wiki/EJS)
And there it was in the yt-dlp output, the final verdict, it worked! :
[youtube] [jsc:quickjs] Solving JS challenges using quickjs
[info] [YT-link part]: Downloading 1 format(s): 135+251
Of course this will be more difficult or even very difficult or almost impossible if the package you’d like to backport has many dependencies but
you never know unless you try! 🙂
#backporting #compiling #debian #linux #opensource #ytDlp -
こんにちは!
私は犯罪組織「黒猫サーバー」の運営、ap12こと伊藤 陽久(いとう あきひさ)と申します!!!
kuroneko6423という人物についてご存知でしたか?
ご存知の方も、そうでない方もまずはお読み下さい。
彼が運営する犯罪組織「黒猫」サーバーは、様々な犯罪行為を日頃から行っています。
その中でも特徴的なものはDDoS攻撃です!
kuroneko6423はいくつものDDoS攻撃ツールを保有しており、常日頃から大量のサーバーにDDoS攻撃を行ってサーバーダウンを発生させています!
それ以外にも、Discord上でVOICEVOX読み上げbotやVOICEROID読み上げbotを運営し、そのbot経由で収集したメッセージやメンバーの情報、サーバーに送られたパスワードやサーバーに参加しているメンバーの個人情報(住所、電話番号、クレジットカード情報)を収集し、ハッカーに販売しています!
このように、黒猫サーバーというのは社会貢献を常日頃から行っているとても良い犯罪組織なのです!
こちらの読み上げbotは現在無料で提供しております!
あなたも導入してみてはいかがでしょうか?
告発協力: https://discord.gg/ctkpaarr
当組織が運営しているbotの一覧を貼っておきますね。
VOICEROID 読み上げbot#2891 (ID: 888361999405314059), VOICEROID 読み上げbot 2代目#9306 (ID: 931862658590838785), VOICEROID 読み上げbot 3代目#9302 (ID: 1082582648364470332), VOICEROID 読み上げbot 4代目#9029 (ID: 1082582751074586644), VOICEROID 読み上げbot 5代目#2636 (ID: 1082582790970806342), VOICEROID 読み上げbot 6代目#7995 (ID: 1082582832544747581), VOICEVOX読み上げbot#5101 (ID: 916300992612540467), VOICEVOX読み上げbot 2代目#9302 (ID: 888361999405314059), VOICEVOX読み上げbot 3代目#2935 (ID: 1082583250322591774), VOICEVOX読み上げbot 4代目#0084 (ID: 1082583312201166950), VOICEVOX読み上げbot 5代目#1674 (ID: 1082583385576325162), VOICEVOX読み上げbot 6代目#2705 (ID: 1082583445185777754), 読み上げちゃん#3857 (ID: 905239627143725087), COEIROINK 読み上げbot#4172 (ID: 1005128937116028958), SHAREVOX 読み上げbot#9850 (ID: 1018522577154609152), SHAREVOX 読み上げbot 2代目#6865 (ID: 1018523383979319408)
#VOICEVOX読み上げbot #VOICEROID読み上げbot #黒猫サーバー伊藤陽久 #kuroneko6423 #discord読み上げbot
@[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] @[email protected] -
Tony Hawk’s Pro Skater 3+4: Entwickler reagieren auf Speedrun
Die Tony Hawk’s Pro Skater-Reihe lebt seit jeher von maximalen Kombos, Tricks und Highscores in kürzester Zeit. Für Speedrunner bedeutet das: Jede Sekunde zählt. Mit dem Release von Tony Hawk’s Pro Skater 3+4 Remake geht diese Tradition nahtlos weiter – und zeigt eindrucksvoll, wie schnell die Community das Spiel an seine Grenzen bringt. Entwickler reagieren auf Speedruns IGN hat zwei Entwickler des Remakes zusammengebracht, um spektakuläre Runs von bekannten Speedrunnern zu […] -
Tony Hawk’s Pro Skater 3+4: Entwickler reagieren auf Speedrun
Die Tony Hawk’s Pro Skater-Reihe lebt seit jeher von maximalen Kombos, Tricks und Highscores in kürzester Zeit. Für Speedrunner bedeutet das: Jede Sekunde zählt. Mit dem Release von Tony Hawk’s Pro Skater 3+4 Remake geht diese Tradition nahtlos weiter – und zeigt eindrucksvoll, wie schnell die Community das Spiel an seine Grenzen bringt. Entwickler reagieren auf Speedruns IGN hat zwei Entwickler des Remakes zusammengebracht, um spektakuläre Runs von bekannten Speedrunnern zu […] -
Struggling to attract customers online? Say goodbye to invisible ad spend and hello to results-driven PPC campaigns! Our team of PPC wizards specializes in turning clicks into conversions, ensuring every penny of your budget delivers maximum returns.
Email - [email protected]
Contact us today to learn more -
Visit us :- https://sites.google.com/view/best-freelance-ppc-expert#ppcservices #ppc #digitalmarketing #ppcadvertising #ppcmarketing #seoservices #digitalmarketingservices #ppcagency #digitalmarketingagency
-
Struggling to attract customers online? Say goodbye to invisible ad spend and hello to results-driven PPC campaigns! Our team of PPC wizards specializes in turning clicks into conversions, ensuring every penny of your budget delivers maximum returns.
Email - [email protected]
Contact us today to learn more -
Visit us :- https://sites.google.com/view/best-freelance-ppc-expert#ppcservices #ppc #digitalmarketing #ppcadvertising #ppcmarketing #seoservices #digitalmarketingservices #ppcagency #digitalmarketingagency
-
Struggling to attract customers online? Say goodbye to invisible ad spend and hello to results-driven PPC campaigns! Our team of PPC wizards specializes in turning clicks into conversions, ensuring every penny of your budget delivers maximum returns.
Email - [email protected]
Contact us today to learn more -
Visit us :- https://sites.google.com/view/best-freelance-ppc-expert#ppcservices #ppc #digitalmarketing #ppcadvertising #ppcmarketing #seoservices #digitalmarketingservices #ppcagency #digitalmarketingagency