Create two batch files as below. They need to be in the same directory as the .ovpn
OpenVPN configuration file
(eg. \Users\Wtower\OpenVPN) and be named with the same name filename, but appending _up
and _down
.
WordPress is popular because it's easy to setup without much technical know-how. However, to build a more robust PHP project with command line deployments, updates and ongoing maintenance, working with WordPress out-of-the-box raises specific challenges:
- How can we make our WordPress projects portable between developers?
What to after installing Ubuntu Gnome 17.04.
Due to a known bug with this version of network manager, Gnome can't connect to wifi networks:
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
import xlwings as xl | |
import xlwings.constants | |
s = xl.Book('doc.xlsx').sheets[0] | |
RR2 = s.api.Cells.Find(What="*", | |
After=s.api.Cells(1, 1), | |
LookAt=xlwings.constants.LookAt.xlPart, | |
LookIn=xlwings.constants.FindLookIn.xlFormulas, | |
SearchOrder=xlwings.constants.SearchOrder.xlByRows, | |
SearchDirection=xlwings.constants.SearchDirection.xlPrevious, |
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
/** | |
* List unique CSS properties for all DOM elements | |
* Initially created to list unique font stacks on a page | |
* @see {@link http://stackoverflow.com/a/35022690/ Inspired by this StackOverflow answer} | |
* | |
* @see {@link https://gist.github.com/macbookandrew/f33dbbc0aa582d0515919dc5fb95c00a/ URL for this file} | |
* | |
* @author AndrewRMinion Design (https://andrewrminion.com) | |
* @version 1.1 | |
* |
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
#!/bin/bash | |
# install programs: | |
sudo apt-get install gksu gtkterm | |
# run terminal: | |
gksu gtkterm | |
# extract image iso: | |
bzip2 -d Colibri_VF_LinuxImageV2.6Beta2_20160630.tar.bz2 |
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
# -*- coding: utf-8 -*- | |
import collections | |
import yaml | |
from rest_framework import fields | |
""" | |
Convert rest_framework.fields classes to Swagger data types according to http://swagger.io/specification/ | |
Return 'string' by default. |
Based on the article `Related ManyToManyField in Django admin site`_,
the file forms.py
contains a summary of the recommended code.
The file manytomany.py
contains a generic base class in order to
be DRY and avoid repeating the same code in many form classes.
An example of how to use can be found in the NineCMS_ project commit 52c710f_.
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
# Greeting prologue | |
echo "Welcome to "(uname -a | awk '{print $1 " " $2 " " $3 " " $4 " " $12}') | |
uptime | |
# ansible | |
. ~/workspace/ansible/ansible/hacking/env-setup.fish -q > /dev/null ^&1 | |
set -Ux ANSIBLE_INVENTORY ~/workspace/ansible/play/hosts | |
echo "Now using "(ansible --version | head -n 1 | awk '{print $1 " " $2}') | |
# Load virtual fish |
NewerOlder