- Create a new branch and add all of my requirements
- Make a pull request to master
- All of the new requirements are easily shown in the gitlab pull request
- Reviewers would add their comments in gitlab to specific lines.
- Developers would be able to comment back and forth in the comment section of the pull request and then make fixes
- Reviewers can then verify once a fix has been made (Add a new comment to the line saying it is fixed?)
- All changes have been accepted so the branch is merged into master
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
def combo_scrolling(combobox, event): | |
"""Prevent the comboboxes from scrolling.""" | |
combobox.emit_stop_by_name("scroll-event") | |
values = ['item 1', 'item 2', 'item 3'] | |
combo = gtk.combo_box_new_text() | |
# Fill with part type options | |
for val in values: |
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
# Move a subdirectory from 1 repository to another | |
# Source Repo | |
git clone <git repository A url> | |
cd <git repository A directory> | |
git remote rm origin | |
git filter-branch --subdirectory-filter <directory 1> -- --all | |
mkdir <directory 1> | |
git mv <directory 1 contents> <directory 1> | |
git commit |
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
import win32com.client as win32 | |
file_path = 'C:\\File.xlsx' | |
already_open = False | |
# Open excel application and template workbook | |
xl = win32.gencache.EnsureDispatch("Excel.Application") | |
# Check to see if a workbook is already open | |
if len(xl.Workbooks) > 0: |
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
\usepackage [english]{babel} | |
\usepackage [autostyle, english = american]{csquotes} | |
\MakeOuterQuote{"} |
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
find <root_dir> -name "._*" -exec rm '{}' \; -print |
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
=== [xybattlespotdoubles] Poison Tree Frog === | |
Politoed @ Damp Rock | |
Ability: Drizzle | |
EVs: 252 HP / 220 Def / 36 SDef | |
Bold Nature | |
- Ice Beam | |
- Protect | |
- Scald | |
- Toxic |
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
Use Sublime Text Package Installer | |
ctrl+shift+p -> Package Control: Install Package -> Markdown Preview | |
Once its installed, have your current tab be your markdown file you want to parse | |
ctrl+shift+p -> Markdown Preview: Preview in Browser -> github | |
This should open up in your browser. Now print, but save as pdf. |
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/home/robertvanvossen/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes |
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
/dts-v1/; | |
/ { | |
description = "zcu102 FIT Image"; | |
#address-cells = <1>; | |
images { | |
kernel { | |
description = "Kernel"; | |
data = /incbin/("Image"); |