This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title: 'Long Form Post' | |
sections: | |
main: | |
display: Main | |
fields: | |
- | |
handle: title | |
field: | |
type: text | |
localizable: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.... of all time. | |
Nuf said |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
NewerOlder