Skip to content

Instantly share code, notes, and snippets.

@jterral
jterral / .gitconfig
Last active January 30, 2024 10:38
Some git configurations
[user]
name = __MY_NAME__
email = __MY_MAIL__
[alias]
p = pull
co = checkout
cob = checkout -b
br = branch
ci = commit
@jterral
jterral / windows.terminal.json
Created October 4, 2021 19:28
Windows Terminal + Cmder ❤
// This file was initially generated by Windows Terminal 1.10.2383.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
@jterral
jterral / arrangeactassert.snippet
Created September 29, 2021 08:49
VS Snippet - Arrange Act Assert
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>Arrange Act Assert</Title>
<Shortcut>aaa</Shortcut>
<Description>Code snippet for an automatically write Arrange Act Assert.</Description>
<Author>Jonathan Terral</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
@jterral
jterral / azure-pipelines__ios__.yaml
Last active January 21, 2024 09:34
Azure Pipelines to build and deploy iOS appplication with AppCenter
#
# Azure Pipelines
trigger:
batch: true
name: $(Build.BuildId)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r)
variables:
- group: my-group-var
@jterral
jterral / throwifnull.snippet
Last active July 12, 2019 07:07
[Snippet][C#] Throw ArgumentNullException is parameter if null.
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>throwifnull</Title>
<Shortcut>tin</Shortcut>
<Description>Code snippet for an automatically implemented throw if null.</Description>
<Author>Microsoft Corporation</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>