Skip to content

Instantly share code, notes, and snippets.

View guillaumelamb's full-sized avatar
๐ŸŽฏ
Focusing

Guillaume Lambert guillaumelamb

๐ŸŽฏ
Focusing
View GitHub Profile
@guillaumelamb
guillaumelamb / SlideMasterCleanup.vbs
Created June 29, 2020 08:26 — forked from martinctc/SlideMasterCleanup.vbs
[PowerPoint Slide Master Clean Up] #PowerPoint
Sub SlideMasterCleanup()
' This macro cleans up all the unused slide layouts in your Slide Master.
' Primarily used for reducing file size, especially if slide layouts make use of large HD images.
' Should ideally be used once the contents are near-complete, to ensure that you do not need those additional slide layouts.
Dim i As Integer
Dim j As Integer
Dim oPres As Presentation
Set oPres = ActivePresentation

To initialize a Git repository here, type the

git init

Initialized empty Git repository in /.git/

Success!

Checking the Status

to see what the current state of our project is

@guillaumelamb
guillaumelamb / PkpassGenerator3000.cs
Created December 29, 2018 21:56 — forked from MathildeRoussel/PkpassGenerator3000.cs
Pkpass Generator for Wallet
using System;
using System.Configuration;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Security.Cryptography;
using System.Security.Cryptography.Pkcs;
@guillaumelamb
guillaumelamb / gist:b805987f2ac90718f992da23ade354e2
Created December 12, 2018 09:30 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: ๐Ÿ˜„ :smile: ๐Ÿ˜† :laughing:
๐Ÿ˜Š :blush: ๐Ÿ˜ƒ :smiley: โ˜บ๏ธ :relaxed:
๐Ÿ˜ :smirk: ๐Ÿ˜ :heart_eyes: ๐Ÿ˜˜ :kissing_heart:
๐Ÿ˜š :kissing_closed_eyes: ๐Ÿ˜ณ :flushed: ๐Ÿ˜Œ :relieved:
๐Ÿ˜† :satisfied: ๐Ÿ˜ :grin: ๐Ÿ˜‰ :wink:
๐Ÿ˜œ :stuck_out_tongue_winking_eye: ๐Ÿ˜ :stuck_out_tongue_closed_eyes: ๐Ÿ˜€ :grinning:
๐Ÿ˜— :kissing: ๐Ÿ˜™ :kissing_smiling_eyes: ๐Ÿ˜› :stuck_out_tongue:
@guillaumelamb
guillaumelamb / GitCommitEmoji.md
Created December 12, 2018 09:30 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji

Inspired by dannyfritz/commit-message-emoji

See also gitmoji.

Commit type Emoji
Initial commit ๐ŸŽ‰ :tada:
Version tag ๐Ÿ”– :bookmark:
New feature โœจ :sparkles:
Bugfix ๐Ÿ› :bug:

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

1. Clone your fork:

git clone [email protected]: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
matrix:
include:
- language: node_js
node_js:
- "stable"
cache:
directories:
- "node_modules"
before_script:
- "cd src/AwesomeCMSCore/AwesomeCMSCore"