Skip to content

Instantly share code, notes, and snippets.

View hungrybluedev's full-sized avatar
🎯
Focusing

Subhomoy Haldar hungrybluedev

🎯
Focusing
View GitHub Profile
@hungrybluedev
hungrybluedev / docker-compose.yml
Last active March 1, 2022 18:23
Docker Compose configuration for WoodpeckerCI with PostgreSQL and one agent.
version: "3"
services:
app:
image: woodpeckerci/woodpecker-server:next
container_name: woodpeckerci
restart: always
environment:
- WOODPECKER_OPEN=true
- WOODPECKER_ADMIN=((username))
@hungrybluedev
hungrybluedev / docker-compose.yml
Last active December 8, 2021 10:48
Docker Compose configuration for Gitea with PostgreSQL and SSH Passthrough
version: "3"
networks:
gitea:
external: false
services:
server:
image: gitea/gitea:latest
container_name: gitea
@hungrybluedev
hungrybluedev / GenerateListOfAllFiles.ps1
Last active September 3, 2020 04:42
A 1-liner PowerShell script that can be used to create a complete (recursive) list of all files in a subdirectory
Get-ChildItem -Path . -Recurse -File
@hungrybluedev
hungrybluedev / tsconfig.json
Last active November 4, 2020 19:52
My Typescript compiler configuration file that I use across projects.
{
"include": ["./"],
"compilerOptions": {
"incremental": true,
"target": "ESNext",
"module": "ESNext",
"strict": true,
"removeComments": true,
"watch": true,
"outDir": "../js"
@hungrybluedev
hungrybluedev / clean.py
Created March 15, 2020 06:50
Folder Cleaner - A customisable python script that you can run to clean the temporary, transitional files in your source folders.
"""
Folder Cleaner
--------------
By clean, I mean remove all the temporary, transitional files that are not
necessary. It is intended to exclude the source, documentation and important
build outputs. The extensions can be supplied manually, or the default list
can be edited in the source to suit one's needs.
Author: