Skip to content

Instantly share code, notes, and snippets.

@that0n3guy
that0n3guy / gist:eb0ced5a12789b035eefb0c888199b35
Created November 28, 2023 22:26
5 thing to survive residency
0:02
hi guys welcome back to my channel thank
0:04
you so much for tuning in today's videos
0:06
about the five most essential items for
0:09
surviving residency this is a video that
0:11
I put together after years of trial and
# Monthly review
- Quite time & Pray
- Review yearly goals & 7 areas (reviews current progress & metrics)
- Review quarter (90d) goals & initiatives
- Review last MONTH's focus, goals, and initiatives
- Migrate "monthly focus" tasks/actionable to new month (don't do weekly stuff yet)
- Journal and evaluate progress & changes
- Last month's focus questions - Thoughts
- the tag: my/focusQuestions
@that0n3guy
that0n3guy / gist:ebcb574407183964195b26c9508e13a6
Created October 28, 2021 03:06
Electronjs R10 with GSPro - basic start and connection
// Modules to control application life and create native browser window
const { app, BrowserWindow } = require('electron')
const path = require('path')
const url = require('url')
// const WebSocket = require('ws')
// const wss = new WebSocket.Server({ port: 2483 });
var net = require('net');
var client = new net.Socket();
title: 'Long Form Post'
sections:
main:
display: Main
fields:
-
handle: title
field:
type: text
localizable: true
@that0n3guy
that0n3guy / gist:0af2647c5c59a8b27ab11567b316bca4
Created December 8, 2017 16:34
Thor ragnarok Lowest rated film
.... of all time.
Nuf said
@that0n3guy
that0n3guy / docker-compose.yml
Created April 25, 2017 20:50
Using jwilder/nginx-proxy for local development
version: '2'
services:
nginx-proxy:
image: jwilder/nginx-proxy
container_name: nginx-proxy
ports:
- "80:80"
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
@that0n3guy
that0n3guy / main.php
Created September 29, 2016 18:21
x2crm 5.0.4 main.php config file with rollbar, Dotenv, and composer autoload
<?php
// This file is to contain custom modifications to the $config array returned by
// protected/config/main.php via protected/config/web.php to construct the web
// application.
// this file is custom/protected/config/web.php
// this is for php composer integration
require_once dirname(__FILE__)."/../../../vendor/autoload.php";
// Use this to automagically load our .env file into the env for development environments
@that0n3guy
that0n3guy / console.php
Created September 29, 2016 18:15
x2crm from 5.0.4
<?php
// this file is in:
// custom/protected/config/console.php
// This file is to contain custom modifications to the $config array returned by
// protected/config/main.php via protected/config/console.php to construct the
// console application.
//Just use the web file... no need to have a different config for console at this point.
require('web.php');
unset($config['controllerMap']); // Fix weird error when running console commands. Some where proConfig.php is getting included.
@that0n3guy
that0n3guy / gist:38a958aa970024036635
Created December 14, 2015 19:04
mautic nginx config
server {
# see: http://wiki.nginx.org/Pitfalls
# see: http://wiki.nginx.org/IfIsEvil
listen 80;
root /app;
index index.html index.htm index.php;
error_page 404 /index.php;
# Make site accessible from http://set-ip-address.xip.io
@that0n3guy
that0n3guy / gist:905c812c0f65e7ffb5ec
Last active December 20, 2023 11:13
Mautic nginx config
server {
# see: http://wiki.nginx.org/Pitfalls
# see: http://wiki.nginx.org/IfIsEvil
listen 80;
root /app;
index index.html index.htm index.php;
error_page 404 /index.php;
# Make site accessible from http://set-ip-address.xip.io