Skip to content

Instantly share code, notes, and snippets.

View StevenJDH's full-sized avatar
🎯
Focusing

Steven Jenkins De Haro StevenJDH

🎯
Focusing
View GitHub Profile
@Kontorted
Kontorted / tssp crack.md
Last active April 11, 2018 06:10
Tangible Software Solutions Crack - Hex Patch

Tool : Any hex editor, one example is HxD

Step :

  • Go to file tab and press open. Alternatively use Ctrl + O
  • Navigate to Software location, usually in C:\Program Files\Tangible Software Solutions
  • Open EXE file
  • Press Ctrl + F, switch Datatype to Hex-values, and Search for "16FE0180"
  • Modify the 16 to 17
  • Go to file tab and press save. Alternatively use Ctrl + S

THIS DOCUMENT

IS OUT OF

DATE

C++ Coding Standards Part 0: Automated Code Analysis

Automated analysis is the main advantage to working with a modern statically typed compiled language like C++. Code analysis tools can inform us when we have implemented an operator overload with a non-canonical form, when we should have made a method const, or when the scope of a variable can be reduced.

@rob-murray
rob-murray / add_intellij_launcer
Last active June 10, 2024 20:32
Add Intellij launcher shortcut and icon for ubuntu
// create file:
sudo vim /usr/share/applications/intellij.desktop
// add the following
[Desktop Entry]
Version=13.0
Type=Application
Terminal=false
Icon[en_US]=/home/rob/.intellij-13/bin/idea.png
Name[en_US]=IntelliJ
@CristinaSolana
CristinaSolana / gist:1885435
Created February 22, 2012 14:56
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream