Skip to content

Instantly share code, notes, and snippets.

View mateeyow's full-sized avatar
🌍

Matthew Torres mateeyow

🌍
View GitHub Profile
@mateeyow
mateeyow / README.md
Created September 14, 2023 16:11 — forked from kfox/README.md
TCP echo server for Node.js

TCP echo server for Node.js

Usage

  1. Make sure you have a modern-ish version of Node.js installed.
  2. Type npx https://gist.github.com/kfox/1280c2f0ee8324067dba15300e0f2fd3
  3. Connect to it from a client, e.g. netcat or similar: nc localhost 9000
@mateeyow
mateeyow / ISO
Created October 24, 2019 02:48
Download links
https://filedn.com/lvm6y2PtpjGHDoBBMATwwLQ/rhel-atomic-installer-7.6.1.1-1.x86_64.iso
// We'll use Puppeteer is our browser automation framework.
const puppeteer = require('puppeteer');
// This is where we'll put the code to get around the tests.
const preparePageForTests = async (page) => {
// Pass the User-Agent Test.
const userAgent = 'Mozilla/5.0 (X11; Linux x86_64)' +
'AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.39 Safari/537.36';
await page.setUserAgent(userAgent);
@mateeyow
mateeyow / Dockerfile
Created May 24, 2017 06:06
Dockerizing node with minimal docker image size and with gyp dependency
FROM node:6-alpine
RUN apk update
RUN apk add --no-cache --virtual .gyp \
python \
make \
g++
COPY package.json /tmp/package.json
RUN cd /tmp && yarn
RUN apk del .gyp
@mateeyow
mateeyow / startup.sh
Created October 31, 2016 13:12
Startup node on low memory server
#!/bin/bash
#
# This script supports the following environment vars:
# - WEB_MEMORY: the amount of memory each
# process is expected to consume, in MB.
# - NODEJS_V8_ARGS: any additional args to
# pass to the v8 runtime.
# Replace this with the path to your main startup file.
# The `--color` flag ensures that any log output is
@mateeyow
mateeyow / gist:5b31aa0c5ac6a260683e572447a3d917
Created May 5, 2016 08:54 — forked from arun-gupta/gist:4d3e5243dac244dc8c9e8ca07b0c9f2a
Create Docker Swarm with Rescheduling Containers
# Docker Machine for Consul
docker-machine \
create \
-d virtualbox \
consul-machine
# Start Consul
docker $(docker-machine config consul-machine) run -d --restart=always \
-p "8500:8500" \
-h "consul" \
@mateeyow
mateeyow / .bash
Created March 30, 2016 07:57
Kubernetes Dev on local
dev_k8s(){
local choice=$1
K8S_VERSION=1.2.0
if [ ! -f /usr/bin/kubectl ] && [ ! -f /usr/local/bin/kubectl ]; then
echo "No kubectl bin exists! Install the bin to continue :)."
return 1
fi
if [[ $choice == "up" ]]; then
@mateeyow
mateeyow / trello-css-guide.md
Created January 7, 2016 08:23 — forked from bobbygrace/trello-css-guide.md
Trello CSS Guide

Trello CSS Guide

“I perfectly understand our CSS. I never have any issues with cascading rules. I never have to use !important or inline styles. Even though somebody else wrote this bit of CSS, I know exactly how it works and how to extend it. Fixes are easy! I have a hard time breaking our CSS. I know exactly where to put new CSS. We use all of our CSS and it’s pretty small overall. When I delete a template, I know the exact corresponding CSS file and I can delete it all at once. Nothing gets left behind.”

You often hear updog saying stuff like this. Who’s updog? Not much, who is up with you?

This is where any fun you might have been having ends. Now it’s time to get serious and talk about rules.

Writing CSS is hard. Even if you know all the intricacies of position and float and overflow and z-index, it’s easy to end up with spaghetti code where you need inline styles, !important rules, unused cruft, and general confusion. This guide provides some architecture for writing CSS so it stays clean and ma

@mateeyow
mateeyow / docker-compose-install.sh
Created December 2, 2015 04:59 — forked from marszall87/docker-compose-install.sh
Simple script for installing latest Docker Compose on CoreOS >= 717.0.0
#!/bin/bash
mkdir -p /opt/bin
curl -L `curl -s https://api.github.com/repos/docker/compose/releases/latest | jq -r '.assets[].browser_download_url | select(contains("Linux") and contains("x86_64"))'` > /opt/bin/docker-compose
chmod +x /opt/bin/docker-compose
@mateeyow
mateeyow / send-mail.php
Created October 7, 2015 03:18
Sending mail function on wordpress
$headers = 'From: Team Pasalubong <[email protected]>' . "\r\n";
wp_mail('[email protected]', 'Test Mail After Purchase', 'TESTING', $headers);