FY21: H1 OKR Planning - [Objective name]
As discussed in today's Docs Weekly post, we're kicking off OKR planning today.
[objective lead]
FY21: H1 OKR Planning - [Objective name]
As discussed in today's Docs Weekly post, we're kicking off OKR planning today.
[objective lead]
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Hello World</title> | |
<script src="script.js"></script> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
</head> | |
<body> | |
Hello World |
var fs = require('fs-extra-promise') //install this package | |
var sm = require('sitemap') // install this package | |
function pagesToSitemap(pages) { | |
var urls = pages.map(function(p) { | |
if (p.path !== undefined) { | |
return { | |
url: p.path, | |
changefreq: 'daily', | |
priority: 0.7 |
I hereby claim:
To claim this, I am signing this object:
let React = require('react'); | |
class ClothingSizePicker extends React.Component { | |
constructor() { | |
super(); | |
this.state = {size: 'S'}; | |
this._handleChange = this._handleChange.bind(this); |
pre { | |
padding: 20px; | |
color: #ffffff; | |
background: #434343; } | |
body .gist .line-data, body .gist .file-data, body .gist .line-numbers { | |
color: #ffffff; | |
background: #434343; } | |
body .gist .gist-meta { | |
color: #ffffff; |
Add this to /etc/exports on your mac
# BOOT2-DOCKER-BEGIN
/Users 192.168.59.103 -alldirs -mapall=501:20
# BOOT2-DOCKER-END
# Tested on Docker 1.5 | |
# make the following the command for docker-compose.yml | |
# You will obviously first need to do a chmod +x on docker-compose-web-up.sh and add it to your docker container. | |
# command: bash docker-compose-web-up.sh | |
# See https://github.com/chiedojohn/django-starter for implementation example. | |
# Wait a couple seconds to make sure this output is the last thing in the console | |
sleep 2 | |
# Get the container ID |
<?php | |
/* | |
* Verifies if the captcha data via Google and redirects to the form page if the captcha does not pass. | |
* | |
* Parameters: | |
* Gcaptcha response - the form data submitted with the request. | |
** Example call if your form used method='get': verify_captcha($_GET['g-recaptcha-response'], "Secret key here"); | |
** Example call if your form used method='post': verify_captcha($_POST['g-recaptcha-response'], "Secret key here"); | |
*/ | |
function verify_google_captcha($gcaptcha_response, $secret) { |
[uwsgi] | |
socket = 127.0.0.1:5000 | |
threads = 2 | |
master = True | |
chdir = PATH TO YOUR APP | |
# The module entry point for your app. For my purposes, it is project:app | |
module = project:app | |
pythonpath = PATH TO YOUR PYTHON EXECTUABLE | |
pythonpath = PATH TO YOUR APP | |
# Add environment variables. |