Skip to content

Instantly share code, notes, and snippets.

View Silloky's full-sized avatar

Elias Kirkwood Silloky

  • France
  • 13:48 (UTC +01:00)
View GitHub Profile
@rupeshtiwari
rupeshtiwari / main.yaml
Created March 30, 2021 15:01
cache node_modules in github workflow
name: Caching npm packages
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@lafleurh
lafleurh / SyncFolders.ps1
Last active November 18, 2024 08:58
PowerShell script to do a two-way sync of Windows folders
Param (
[string]$LeftFolder,
[string]$RightFolder
)
function CreateFolderStructure([string]$Path)
{
if (-not [string]::IsNullOrWhiteSpace($Path))
{
if (-not (Test-Path $Path))