Skip to content

Instantly share code, notes, and snippets.

View FrendaWinter's full-sized avatar

Frenda FrendaWinter

View GitHub Profile
@FrendaWinter
FrendaWinter / neovim.md
Last active September 16, 2024 04:40
NeoVim setup and config
@FrendaWinter
FrendaWinter / Snzip_Install.md
Last active September 11, 2024 14:59
Install Snzip on linux

Ruby devkit error

Error:

  • extconf.rb failed
  • conftest.c:5:10: fatal error: prism/extension.h: No such file or directory
  • conftest.c:5:10: fatal error: prism.h: No such file or directory
  • ERROR: Failed to build gem native extension.

On Windows, Ruby devkit

@FrendaWinter
FrendaWinter / DotNetOnWin7.md
Created May 15, 2024 08:01
Install .Net 4.7.2 on Windows 7
@FrendaWinter
FrendaWinter / Nitro.md
Created May 3, 2024 07:53
Nitro Pro slient installation with language option
@FrendaWinter
FrendaWinter / Note.md
Created April 2, 2024 10:41
Python testcontainers note

Install package

pip install testcontainers

Start docker

sudo systemctl status docker

sudo systemctl start docker

@FrendaWinter
FrendaWinter / ruby2d_errors.md
Last active March 5, 2024 17:30
Install ruby2d error with msys2

Open Msys2 shell

pacman -Syu

1. make error

pacman -S make

2. undefined reference to __intrinsic_setjmpex

pacman -S mingw-w64-ucrt-x86_64-SDL2_mixer

3. Collect2.exe error ld.exe return 37 exit code

@FrendaWinter
FrendaWinter / downloadAndInstall.cpp
Last active May 3, 2024 07:33
Download MSi file and install it (Replace the code with correct URL and silent install param, run as administrator if needed)
#include <iostream>
#include <windows.h>
#include <urlmon.h>
#pragma comment(lib, "urlmon.lib")
int main()
{
std::string downloadUrl = "https://www.uvnc.eu/download/1400/UltraVnc_1409_X64.msi"; // Replace with the actual download URL
std::string filePath = "D:\\Download\\UltraVnc_1409_X64.msi"; // Replace with the desired download path

1. ssh-keygen error while loading shared libraries: msys-crypto-3.dll

# Full error: 
# C:/msys64/usr/bin/ssh-keygen.exe: error while loading shared libraries: msys-crypto-3.dll: cannot open shared object file: No such file or directory

# Solution: Install missing library
pacman -S libopenssl