Skip to content

Instantly share code, notes, and snippets.

View pferreirafabricio's full-sized avatar
🔥

Fabrício Pinto Ferreira pferreirafabricio

🔥
View GitHub Profile
Shader "PostProcess/HeightFog"
{
Properties
{
[HideInInspector] _MainTex ("Texture", 2D) = "white" {}
_FogColor ("FogColor", Color) = (1,1,1,1)
_FogDensity ("FogDensity", Range(0,1)) = 0.2
_FogHeight ("FogHeight", float) = 5.0
}
SubShader
@pferreirafabricio
pferreirafabricio / first-docker-compose.yml
Created April 14, 2021 01:19
🥳 My first docker compose
version: "3.6"
services:
db:
image: postgres
environment:
POSTGRES_PASSWORD: mysecretpassword
wordpress:
image: wordpress
depends_on:
- db
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
TypeScript 6 hrs 14 mins █████████░░░░░░░░░░░░ 43.1%
C# 5 hrs 26 mins ███████▉░░░░░░░░░░░░░ 37.5%
PHP 47 mins █▏░░░░░░░░░░░░░░░░░░░ 5.4%
JavaScript 27 mins ▋░░░░░░░░░░░░░░░░░░░░ 3.2%
Vue.js 24 mins ▌░░░░░░░░░░░░░░░░░░░░ 2.9%
@pferreirafabricio
pferreirafabricio / createSystemScheduledTask.ps1
Last active December 6, 2020 00:15
Create a scheduled task that will run a PowerShell script at 1:00 AM, in this example a script that will make a backup of a MongoDB Database
$scriptToExecutePath = "C:\Path\To\dump-script.ps1";
$taskName = "MongoDB Backup - <databaseName>"
$taskDescription = "Make a dump of <databaseName> database"
$action = New-ScheduledTaskAction `
-Execute 'C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe' `
-Argument "-NoProfile -NoLogo -NonInteractive -ExecutionPolicy Bypass -File $scriptToExecutePath"
$trigger = New-ScheduledTaskTrigger -Daily -At 1am
@pferreirafabricio
pferreirafabricio / game-dev-setup.sh
Last active December 3, 2020 15:30
Install generic and common tools for game development in Ubuntu 20.04
#!/bin/bash
# Author: Fabrício Pinto Ferreira
# This is a simple script that aims install generic and common tools
# for game development in Ubuntu 20.04
sudo apt update
echo 'Installing Snap...'
sudo apt install snapd
@pferreirafabricio
pferreirafabricio / backupMongoDatabase.ps1
Last active September 16, 2021 14:33
Create a backup in a .zip file with all collections of a MongoDB Database
#region Variables
<# Set the MongoDB access variables #>
$databaseName = "databaseName"
# $username = ""
# $password = ""
# $authenticationDatabase = ""
$mongoDbHost = "localhost:27017"
# $uri = ""