71 jounals still available on issuu with great story of netlabels time. debug_mag Publisher Publications - Issuu
Artificial renaissance itself
Thursday, March 21, 2024
Saturday, December 24, 2022
Friday, December 23, 2022
Format Cpp code in Visual Code
I had been convinced that you couldn't do this without installing clang, but it turns out that Microsoft wrote an extension that can format without using a heavyweight package.
C/C++ Extension Pack
Saturday, November 19, 2022
Djvu to Pdf on Ubuntu 22.04
sudo apt instll djvulibre-bin libdjvulibre21 okular-extra-backends evince libevdocument3-4 libevview3-3
sudo apt-get install libtiff-tools
thn in bash script:
for f in /home/evgeniy/Documents/books/*.djvu
do
echo "$f"
ddjvu -format=tiff $f $f.tiff
tiff2pdf -j -o $f.pdf $f.tiff
done
Friday, October 28, 2022
Debian on WSL
wsl --install -d debian
wget --no-check-certificate https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
sudo apt-get update --fix-missing
sudo apt-get install -f #install with dependencies
sudo apt-get update
sudo apt-get install -y dotnet-sdk-5.0
Sunday, October 16, 2022
Retroarch setup
1. Retroarch BIOS Pack copy it content to C:\RetroArch-Win64\system
Wednesday, October 12, 2022
DisposableFixer for Visual Studio
Extension for everyday use, because usually I do not remember to dispose all object I created. This great extension still not ported to Visual Studio 2022 but I can use with previous 2019 version.
Tuesday, October 11, 2022
Tuesday, October 4, 2022
How to track opened file in JetBrains Rider
This iportant option in Visual studio I started to use from 2004, in JetBrains Rider 'Always Select Opened File' option is located in Project Viewer setting:
Monday, August 29, 2022
Fix apt update for Kali Linux on WSL
For lightweight Linux loatform hosted on Windows 10 it is better to use WSL
Avalibale ditstos not so large, but well flawored
PS C:\Windows\system32> wsl --list --online
The following is a list of valid distributions that can be installed.
Install using 'wsl --install -d <Distro>'.
NAME FRIENDLY NAME
Ubuntu Ubuntu
Debian Debian GNU/Linux
kali-linux Kali Linux Rolling
openSUSE-42 openSUSE Leap 42
SLES-12 SUSE Linux Enterprise Server v12
Ubuntu-16.04 Ubuntu 16.04 LTS
Ubuntu-18.04 Ubuntu 18.04 LTS
Ubuntu-20.04 Ubuntu 20.04 LTS
I need to insall Kali
wsl --install -d kali-linux
But of cource, the distro already little bit absolete in package refereces:
eugene@DESKTOP-78QLU8F:~$ sudo apt update
Get:1 http://kali.koyanet.lv/kali kali-rolling InRelease [30.6 kB]
Err:1 http://kali.koyanet.lv/kali kali-rolling InRelease
The following signatures were invalid: EXPKEYSIG ED444FF07D8D0BF6 Kali Linux Repository <devel@kali.org>
Reading package lists... Done
W: GPG error: http://kali.koyanet.lv/kali kali-rolling InRelease: The following signatures were invalid: EXPKEYSIG ED444FF07D8D0BF6 Kali Linux Repository <devel@kali.org>
E: The repository 'http://http.kali.org/kali kali-rolling InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
To fix this problem with brocken repo urls:
# download
wget http://http.kali.org/kali/pool/main/k/kali-archive-keyring/kali-archive-keyring_2022.1_all.deb
# install
sudo dpkg -i kali-archive-keyring_2022.1_all.deb
# remove downloaded file again
rm kali-archive-keyring_2022.1_all.deb
# update
sudo apt-get update
Thank you for an answer!
Sunday, August 21, 2022
Tuesday, July 19, 2022
format code in dotnet 3.1
Fyne on Windows 7
For a cheap, obsolete environment I got a problem, fyne ui does not see my opengl. I remembered, the same problem appears for WFP, it also does not find hardfare graphics acceleration, but it is possible to run UI in software render mode. So do for fyne
after build app, copy software Mesa3D opengl.dll to folder with binaries, then it works.
This fix these crashes on start:
022/07/19 08:19:09 Fyne error: failed to initialise OpenGL
2022/07/19 08:19:09 Cause: glGetBufferParameteri64v
2022/07/19 08:19:09 At: C:/Users/ep/go/pkg/mod/fyne.
/painter/gl/gl_core.go:67
Exception 0xc0000005 0x8 0x0 0x0
PC=0x0
signal arrived during external code execution
---------------------------
Fyne Error
---------------------------
Fyne error: window creation error
Cause:APIUnavailable: WGL: OpenGL ES requested but WGL_ARB_create_context_es2_
At: C:/Users/ep/go/pkg/mod/fyne.
---------------------------
ОК
---------------------------
I also recomend to compile fyne ui app with reduced drahics features to GLES
go build -tags gles .
Reference:
https://github.com/fyne-io/fyne/issues/191
https://github.com/fyne-io/fyne/issues/410
https://github.com/fyne-io/fyne/issues/437
https://github.com/fyne-io/fyne/issues/2046
https://stackoverflow.com/questions/57643992/how-to-install-opengl-for-this-to-run
https://www.pcgamer.com/microsoft-finally-ports-directx-12-to-windows-7-but-only-for-certain-games/
https://github.com/r4wand/go-fyne-desktop-app-demo
Saturday, July 16, 2022
Wednesday, June 15, 2022
Artefacts on the Moon
Decade ago Arthur Berent wrote album Artefacts on the Moon. A sound for a great preparation for a mining on the Moon by Abstract Avenue. Today Chinese Academy of Sciences added large map for future settlements. Map is large 196 Mb jpeg
Tuesday, May 17, 2022
Rosfuscator is Free obfuscator for .Net Core
After reading blog posts about bad progress of free obfuscation in .net core I get found it is possible to hardening of source code using Roslyn. After test if Rosfuscator I have decision variables will be hardened without compilcation errors, it is better then a nothing, classes and methods obfuscation produce compilcation erros. Thank you Melvin L for good work!
Friday, May 6, 2022
Fixed login to GitHub with Visual Code through grdp and vnc
Thursday, March 31, 2022
Thunderbird message filters parser
Small lib for parse plain text in Thunderbirf messge filters file
https://www.npmjs.com/package/@remusao/thunderbird-msg-filters
or simply export filders to new workstation with instruction
http://kb.mozillazine.org/Filters_(Thunderbird)#Creating_and_editing_filters
Tuesday, March 29, 2022
copilot
1. For first classes it did not realize context properly and it is good because he operate only names.
2. After read some logic that I use for app he can think logically already
3. For math equations he generateright code.
4. He start to know relations in object oriented model in time I wrote half of class decomposition
5. Lates class in screenshot he implemented without any moderation by his name. He dot the cnowledge about context and models to realize full group of rules and logic.
Despite a lot of jokes copilot from Microsoft works great for people that think.
debug magazine archive
71 jounals still available on issuu with great story of netlabels time. debug_mag Publisher Publications - Issuu
-
For a cheap, obsolete environment I got a problem, fyne ui does not see my opengl. I remembered, the same problem appears for WFP, it also ...
-
This iportant option in Visual studio I started to use from 2004, in JetBrains Rider 'Always Select Opened File' option is located ...
-
71 jounals still available on issuu with great story of netlabels time. debug_mag Publisher Publications - Issuu