Skip to content

Instantly share code, notes, and snippets.

View Subangkar's full-sized avatar
☺️
Beauty in the Chaos

Subangkar Karmaker Shanto Subangkar

☺️
Beauty in the Chaos
View GitHub Profile
@Subangkar
Subangkar / git-commands.sh
Last active May 16, 2020 13:08
Git basic commands to use it from terminal
# init git repo
git init
# start git ignore
touch .gitignore
# clone repo
git clone <remote-repo-link> <local-repo-folder-name>
# mount annonymous smb share
mount -t cifs //<your shareserver name or ip>/sharefolder -o username=guest,password="" /path_to_mountpoint
# access annonymous smb share
smbclient //host/share -U " "%" "
smbclient //host/share -U guest%
@Subangkar
Subangkar / .gitignore
Last active August 21, 2019 10:16
Some Common global git ignore patterns
### https://www.gitignore.io/ ###
## git config --global core.excludesfile ~/.gitignore_global ##
# LaTeX
*.aux
*.synctex.gz
*.gz
*.log
*.toc
@Subangkar
Subangkar / Python-Snippets.py
Last active August 5, 2019 18:45
Useful python snippets like using shell, command line args
print("------")
// for each loop
var a = ["a", "b", "c"];
a.forEach(function(entry) {
console.log(entry);
return true; // works like break
});
@Subangkar
Subangkar / CMakeList.txt for OpenGL
Created June 3, 2019 11:32
CMake configuration for running opengl project
cmake_minimum_required(VERSION 3.14)
project(ProjectName)
set(CMAKE_CXX_STANDARD 14)
include_directories(OpenGL)
include_directories(OpenGL/include) # OpenGL/include has to contain the required OpenGL's .h files
include_directories(OpenGL/lib) # OpenGL/lib has to contain the required OpenGL's .lib files
# glut32.dll must be present in "project-directory/OpenGL/dll/"
add_custom_target(glutdlllib