This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://web.archive.org/web/20230531163522/https://sites.google.com/site/astropipp/downloads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yay -S zsh zsh-autosuggestions zsh-syntax-highlighting | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
git clone https://github.com/zsh-users/zsh-autosuggestions.git $ZSH_CUSTOM/plugins/zsh-autosuggestions | |
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $ZSH_CUSTOM/plugins/zsh-syntax-highlighting | |
git clone https://github.com/zdharma-continuum/fast-syntax-highlighting.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/fast-syntax-highlighting | |
git clone --depth 1 -- https://github.com/marlonrichert/zsh-autocomplete.git $ZSH_CUSTOM/plugins/zsh-autocomplete | |
nvim ~/.zshrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
REM CSV file based file mover for windows! | |
REM Take input from user about the from and to directories | |
set /p from_dir="Enter the path of the directory from which you want to move the files: " | |
set /p to_dir="Enter the path of the directory to which you want to move the files: " | |
REM Read all lines from the csv file and move the files from the from_dir to the to_dir | |
for /f "usebackq tokens=*" %%p in ("files.csv") do ( | |
echo Moving %%~p from %from_dir% to %to_dir% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# imports | |
from OpenGL.GL import * | |
from OpenGL.GLU import * | |
import glfw | |
import threading | |
# initialise glfw | |
if glfw.init() == glfw.FALSE: | |
exit() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "application.h" | |
#include "utils.h" | |
#include "mesh.h" | |
#include "texture.h" | |
#include "light.h" | |
#include "volume.h" | |
#include "fbo.h" | |
#include "shader.h" | |
#include "input.h" | |
#include "animation.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# I am just an example for idea files! | |
""" | |
Explain the idea here | |
""" | |
# an example | |
def someIdea(arg): | |
print(arg) | |