Skip to content

Instantly share code, notes, and snippets.

View domagojhack's full-sized avatar
🤪

Domagoj K. Hackenberger domagojhack

🤪
View GitHub Profile
@domagojhack
domagojhack / tut.md
Created November 8, 2024 10:00 — forked from rain1024/tut.md
Install pdflatex ubuntu

PdfLatex is a tool that converts Latex sources into PDF. This is specifically very important for researchers, as they use it to publish their findings. It could be installed very easily using Linux terminal, though this seems an annoying task on Windows. Installation commands are given below.

  • Install the TexLive base
sudo apt-get install texlive-latex-base
  • Also install the recommended and extra fonts to avoid running into the error [1], when trying to use pdflatex on latex files with more fonts.
@domagojhack
domagojhack / cuda_installation_on_ubuntu_18.04
Last active August 13, 2018 05:40 — forked from Mahedi-61/cuda_11.8_installation_on_Ubuntu_22.04
cuda 9.0 complete installation procedure for ubuntu 18.04 LTS
#!/bin/bash
## This gist contains step by step instructions to install cuda v9.0 and cudnn 7.1 in ubuntu 18.04
## see official guide: http://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html
### steps ####
# verify the system has a cuda-capable gpu
# verify the system has gcc installed
# download and install the nvidia cuda toolkit and cudnn
# setup environment variables
# verify the system
@domagojhack
domagojhack / remi_without_pywebview.py
Created March 8, 2018 13:14
OpenlayersMap in REMI GUI framework and CEFpython
import remi
import webview
import threading
from cefpython3 import cefpython as cef
import platform
import sys
class test(remi.App):
def __init__(self, *args):