Skip to content

Instantly share code, notes, and snippets.

View murilonerdx's full-sized avatar
🏹

Murilo P. S murilonerdx

🏹
View GitHub Profile
@murilonerdx
murilonerdx / .gitlab-ci.yml
Created January 8, 2025 01:32 — forked from antoninbouchal/.gitlab-ci.yml
Deploy APP through SSH to VPS with Gitlab CI
stages:
- build
- deploy
before_script:
- |
# docker variables for name and tag of new image
export DOCKER_TAG="${CI_COMMIT_SHA:0:8}"
export DOCKER_REPO="$CI_REGISTRY_IMAGE"
export DOCKER_IMAGE="${DOCKER_REPO}:${DOCKER_TAG}"
@murilonerdx
murilonerdx / 0 Figma Keyboard Shortcuts for windows.md
Created April 6, 2023 03:00 — forked from guillermo/0 Figma Keyboard Shortcuts for windows.md
Figma keyboard shortcuts for windows cheat sheet
@murilonerdx
murilonerdx / 01 Converting Strings to int and int to String
Created February 9, 2022 23:52 — forked from x812/01 Converting Strings to int and int to String
20 Very Useful Java Code Snippets For Java Developers
String a = String.valueOf(2); //integer to numeric string
int i = Integer.parseInt(a); //numeric string to an int
@murilonerdx
murilonerdx / HashTableLinear.java
Created September 7, 2021 16:13 — forked from divanibarbosa/HashTableLinear.java
Hash Table Linear - Tabela Hash com colisoes linear em Java
/* Criado por: profa. Divani Barbosa Gavinier
Curriculo Lattes: http://lattes.cnpq.br/8503400830635447
divanibarbosa@gmail.com
*/
import java.io.*; // pacote contem classe Scanner
import java.util.*; // pacote contem System.in
import java.lang.*;
class Hash {
public double item;
@murilonerdx
murilonerdx / nodejs-cheatsheet.js
Created September 15, 2020 02:20 — forked from LeCoupa/nodejs-cheatsheet.js
Complete Node.js CheatSheet --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
/* *******************************************************************************************
* THE UPDATED VERSION IS AVAILABLE AT
* https://github.com/LeCoupa/awesome-cheatsheets
* ******************************************************************************************* */
// 0. Synopsis.
// http://nodejs.org/api/synopsis.html