Skip to content

Instantly share code, notes, and snippets.

View gcollazo's full-sized avatar

Giovanni Collazo gcollazo

View GitHub Profile
@kamilogorek
kamilogorek / _screenshot.md
Last active April 9, 2024 21:18
Clutter-free VS Code Setup
image
@sarensw
sarensw / SwiftNioSshWrapper.swift
Last active April 15, 2023 09:28
A wrapper for the NIOSSHClient example found in the apple/swift-nio-ssh repo. It can be used to call commands on the connected ssh server.
import Foundation
import Dispatch
import NIO
import NIOSSH
public class SwiftNioSshWrapper {
let host: String
let port: Int
let user: String
let password: String
@thomaspoignant
thomaspoignant / Makefile
Last active April 5, 2024 08:50
My ultimate Makefile for Golang Projects
GOCMD=go
GOTEST=$(GOCMD) test
GOVET=$(GOCMD) vet
BINARY_NAME=example
VERSION?=0.0.0
SERVICE_PORT?=3000
DOCKER_REGISTRY?= #if set it should finished by /
EXPORT_RESULT?=false # for CI please set EXPORT_RESULT to true
GREEN := $(shell tput -Txterm setaf 2)

PHP Web Developer

We are looking for a friendly, motivated back-end PHP Developer to join our team of contractors. Must be available to work onsite - when necessary.

Desired Experience: PHP, MySQL, HTML, CSS, JavaScript, Git, Wordpress and WooCommerce.

Strong written and verbal skills to communicate with team members effectively a must!!  

Desirable Skills:

  • Advanced experience with back-end web development - PHP, PHP frameworks, - LAMP stack (Linux, Apache, MySQL, PHP), AJAX, XML, and other modern web technologies, protocols, and services.
@Neo23x0
Neo23x0 / audit.rules
Last active January 13, 2024 14:12
Linux Auditd Best Practice Configuration
# IMPORTANT!
# This gist has been transformed into a github repo
# You can find the most recent version there:
# https://github.com/Neo23x0/auditd
# ___ ___ __ __
# / | __ ______/ (_) /_____/ /
# / /| |/ / / / __ / / __/ __ /
# / ___ / /_/ / /_/ / / /_/ /_/ /
# /_/ |_\__,_/\__,_/_/\__/\__,_/
@junosuarez
junosuarez / index.js
Last active June 21, 2019 01:32
async cli app boilerplate
#!/usr/bin/env node
if (process.mainModule === module) setImmediate(() => main(process.argv).catch(e => console.log(e.stack) && process.exit(1)))
async function main(argv) {
console.log(argv.slice(2))
}
@zkat
zkat / index.js
Last active March 10, 2024 14:32
npx is cool
#!/usr/bin/env node
console.log('yay gist')
@gcollazo
gcollazo / 01-run.sh
Last active April 12, 2018 11:48
Testing npm5
# curl -s https://gist.githubusercontent.com/gcollazo/93853987c5e1fa362494315478cd0608/raw/01-run.sh | bash
echo ""
mkdir testnpmyanrnpm5
cd testnpmyanrnpm5
curl -s https://gist.githubusercontent.com/gcollazo/93853987c5e1fa362494315478cd0608/raw/npm-test.sh | bash
curl -s https://gist.githubusercontent.com/gcollazo/93853987c5e1fa362494315478cd0608/raw/yarn-test.sh | bash
cd ..
@Masquerade-Circus
Masquerade-Circus / getRoutes.js
Last active December 3, 2019 22:01
Log all express routes including those on sub routers.
import express from 'express';
let App = express(),
app_port = process.env.app_port || 11337,
app_host = process.env.app_host || '127.0.0.1';
App.listen(app_port, () => {
console.log(`Server app running on http://${app_host}:${app_port}`);
});