=IFERROR(XLOOKUP(C2,'file:///mnt/marks.ods'#$Sheet1.$C$2:$C$115,'file:///mnt/marks.ods'#$Sheet1.$AC$2:$AC$115,""),"")
i.e. some stuff and junk about Python, Perl, Matlab, Ruby, Mac X, Linux, Solaris, ...
Tuesday, October 28, 2025
LibreOffice: Use XLOOKUP instead of VLOOKUP
Labels:
libreoffice
Wednesday, October 08, 2025
vscodium in flatpak golang not found
Install SDK extensions:
and then set env variable `FLATPAK_ENABLE_SDK_EXT`:
https://gist.github.com/pojntfx/2e1ea30df020924e5d40f823adc6ae09
flatpak install flathub org.freedesktop.Sdk.Extension.golang
and then set env variable `FLATPAK_ENABLE_SDK_EXT`:
#in fish in ~/.config/fish/config.fish
set -U FLATPAK_ENABLE_SDK_EXT 'golang'
https://gist.github.com/pojntfx/2e1ea30df020924e5d40f823adc6ae09
Thursday, August 14, 2025
Ansys 25 R2 and SolidWorks plugin not working
Create `SolidWorksAddIn_Ansys252.bat`:
and run as Administrator
@echo on
copy /Y "%AWP_ROOT252%\Framework\bin\Win64\Xalan-C_1_12.dll" "%AWP_ROOT252%\aisol\CADIntegration\SolidWorks\winx64"
copy /Y "%AWP_ROOT252%\Framework\bin\Win64\XalanMessages_1_12.dll" "%AWP_ROOT252%\aisol\CADIntegration\SolidWorks\winx64"
copy /Y "%AWP_ROOT252%\Framework\bin\Win64\xerces-c_3_2.dll" "%AWP_ROOT252%\aisol\CADIntegration\SolidWorks\winx64"
copy /Y "%AWP_ROOT252%\Framework\bin\Win64\zlib1.dll" "%AWP_ROOT252%\aisol\CADIntegration\SolidWorks\winx64"
and run as Administrator
Labels:
ansys,
solidworks,
windows
Friday, August 08, 2025
Friday, August 01, 2025
Wednesday, July 30, 2025
Add Browser MCP to Claude Code
claude mcp add-json browsermcp '{ "type": "stdio", "command": "npx", "args": ["@browsermcp/mcp@latest"]}'
https://github.com/browsermcp/mcp
Labels:
claude code,
Linux
Wednesday, July 23, 2025
Linux: convert docx to markdown using pandoc
pandoc -f docx -t markdown_strict input.docx -o foo.md
From: https://stackoverflow.com/a/33149947/248823
Thursday, June 19, 2025
Linux: join pdf files into one file in a reverse order
pdftk $(ls -r *.pdf) output joined.pdf
Labels:
Linux
Thursday, April 10, 2025
Arch Linux: Failed to start Virtual Console Setup
`/etc/vconsole.conf` should be:
KEYMAP=us
FONT=lat9w-16
Labels:
Arch
Friday, April 04, 2025
Thursday, March 27, 2025
Convert all pdf files to txt files
find . -name '*.pdf' -print0 | xargs -0 -n1 pdftotext
Labels:
Linux
Subscribe to:
Comments (Atom)