Real unit test (isolation, no children render)
Calls:
- constructor
- render
| package main | |
| import ( | |
| "context" | |
| "crypto/tls" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "net/url" | |
| "time" |
Many people struggle with this question. Some just try to make as much as a full-time employee makes (and ignore that they won't be able to bill as many days). Others follow tips on startup related websites that suggest to ask for 20% to 50% more than an salary would yield (and ignore the additional risk and expenses they have).
Below you will find some numbers to help you calculate how high your hourly or daily rate should be.
| { | |
| "name": "npm-scripts-example", | |
| "version": "1.0.0", | |
| "description": "npm scripts example", | |
| "scripts": { | |
| "clean": "rimraf ./dist && mkdir dist", | |
| "prebuild": "npm run clean", | |
| "build": "cross-env NODE_ENV=production webpack" | |
| } | |
| } |
| var beep = require('beepbeep'); | |
| var colors = require('colors'); | |
| var onError = function(err) { | |
| beep([200, 200]); | |
| var formatOutput = function(context) { | |
| var msg, file, line, description; | |
| if(context == 'gulp-babel') { |
| FROM alpine | |
| ENV \ | |
| APP_DIR="/app" \ | |
| APP_PORT="80" | |
| # the "app" directory (relative to Dockerfile) containers your Laravel app... | |
| COPY app/ $APP_DIR | |
| RUN apk add --update \ |
A lot of important government documents are created and saved in Microsoft Word (*.docx). But Microsoft Word is a proprietary format, and it's not really useful for presenting documents on the web. So, I wanted to find a way to convert a .docx file into markdown.
On a mac you can use homebrew by running the command brew install pandoc.
| <?php namespace App\Providers; | |
| use Illuminate\Support\ServiceProvider; | |
| /** | |
| * If the incoming request is an OPTIONS request | |
| * we will register a handler for the requested route | |
| */ | |
| class CatchAllOptionsRequestsProvider extends ServiceProvider { |