Skip to content

Instantly share code, notes, and snippets.

Avatar
:octocat:
;)

Nordes Ménard-Lamarre Nordes

:octocat:
;)
View GitHub Profile
@Nordes
Nordes / notes.md
Last active October 18, 2022 02:39
DevX Notes and references
View notes.md

!WIP!

DevX - DEVeloper eXperience

Basically this bring us to the developer experience or in other words, how to make a perfect environment for the developer so that he can focus on his main job (Thinking + Coding). Think of it as the "iPhone" UX that ever existed which kind of broke the pre-existing "known" design for phone.

I first heard about it at work and then started to look for what it can be. I was already doing most of it as part of my DevOps experience in many different companies. In fact, my role often consisted of removing the clutter and the repetitive job from myself and my team. If you see an opportunity to automate or simplify your life, my phylosophie is to simply "Just do it!".

@Nordes
Nordes / vscode-settings.json
Last active November 29, 2019 15:20
PC-Basic Settings (VS Code terminal, Windows Terminal, powertoys, powershell core)
View vscode-settings.json
// code %APPDATA%\Code\User\settings.json
// Download powershell core at https://github.com/PowerShell/PowerShell/releases (You can do the setup following hanselman) Simply
// find the fonts online. They are free.
{
"window.zoomLevel": 0,
"terminal.integrated.shell.windows": "C:\\Program Files\\PowerShell\\7-preview\\pwsh.exe",
"terminal.integrated.fontFamily": "Cascadia Mono PL",
"terminal.integrated.fontSize": 13
}
@Nordes
Nordes / vscode-settings.json
Created November 29, 2019 04:25
PC-Basic Settings (VS Code terminal, Windows Terminal, powertoys, powershell core)
View vscode-settings.json
// code %APPDATA%\Code\User\settings.json
{
"window.zoomLevel": 0,
"terminal.integrated.shell.windows": "C:\\Program Files\\PowerShell\\7-preview\\pwsh.exe",
"terminal.integrated.fontFamily": "Cascadia Mono PL",
"terminal.integrated.fontSize": 13
}
@Nordes
Nordes / semaphoreslim_sample.cs
Created July 24, 2018 11:37
Example of semaphoreslim and wait timeout.
View semaphoreslim_sample.cs
using System;
using System.Threading;
using System.Threading.Tasks;
using System.Collections.Generic;
namespace ConsoleApplication
{
public class Program
{
public static void Main(string[] args)
@Nordes
Nordes / .gitlab-ci.yml
Created January 24, 2018 05:57 — forked from zerda/.gitlab-ci.yml
Gitlab CI for ASP.Net Core project
View .gitlab-ci.yml
image: microsoft/aspnetcore-build:1.1
variables:
PROJECT_DIR: "app"
cache:
key: "$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME"
paths:
- .nuget/
@Nordes
Nordes / create node express webserver.md
Last active August 30, 2017 02:27
NodeJS > create a quick web server and serve files
View create node express webserver.md