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
" Set the leader key to comma for custom mappings | |
let mapleader = "," | |
" Set timeout for key sequences (in milliseconds) | |
set timeout timeoutlen=500 | |
" Use system clipboard for all yank, delete, and put operations | |
set clipboard=unnamedplus | |
" Insert new lines without leaving normal mode |
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
# Lorem ipsum dolor sit amet | |
consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. | |
Laoreet id donec ultrices tincidunt arcu non sodales neque sodales. Lorem ipsum dolor sit amet | |
consectetur adipiscing elit pellentesque. Eget duis at tellus at urna condimentum mattis pellentesque. | |
Cras semper auctor neque vitae tempus quam pellentesque. Nibh tortor id aliquet lectus proin nibh nisl |
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
public static void main(String[] args) throws IOException { | |
System.setProperty("java.net.preferIPv4Stack", "true"); | |
int PORT = 1900; | |
String MULTICAST_GROUP_IPV4 = "239.172.243.75"; | |
InetAddress LOCALHOST = Inet4Address.getByName("127.0.0.1"); | |
byte[] requestBytes = SEARCH_MESSAGE; | |
MulticastSocket socket = new MulticastSocket(new InetSocketAddress(LOCALHOST, 0)); | |
socket.setLoopbackMode(false); | |
socket.setInterface(LOCALHOST); | |
DatagramPacket packet = new DatagramPacket( |
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
# Takes two parameters: target branch and commit message. | |
# Does a hard reset on the target branch then adds a single commit with the diff | |
# between the two branches. Sort of simulates a rebase but without having to | |
# resolve potential conflicts in intermediary commits. | |
function git-hard-rebase() { | |
target_branch=$1 | |
if git rev-parse --quiet --verify ${target_branch} > /dev/null; then | |
else | |
echo "Branch name ${target_branch} does not exist." | |
return 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
Schema: map[string]*schema.Schema{ | |
"name": &schema.Schema{ | |
Type: schema.TypeString, | |
Required: true, | |
}, | |
"region": &schema.Schema{ | |
Type: schema.TypeString, | |
Optional: true, | |
Computed: 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
$ terraform apply | |
google_compute_network.cloud: Refreshing state... (ID: cloud) | |
google_compute_address.cloud: Refreshing state... (ID: projects/XXXXXXXX/regions/us-central1/addresses/cloud-static-ip) | |
google_compute_subnetwork.cloud_subnet: Refreshing state... (ID: us-central1/cloud-subnet) | |
An execution plan has been generated and is shown below. | |
Resource actions are indicated with the following symbols: | |
+ create | |
Terraform will perform the following actions: |
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 1: | |
// MyApp first gets rendered with empty "data", then gets re-rendered with | |
// ajax-fetched data after the stores gets hydrated and triggers the update. | |
import Reflux from 'reflux'; | |
import React from 'react' | |
import $ from 'jQuery' | |
var Actions = Reflux.createActions([ | |
'hydrate' |
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
vagrant@djangocore:~$ runtests3.3-sqlite | |
Testing against Django installed in '/django/django' | |
Creating test database for alias 'default'... | |
Creating test database for alias 'other'... | |
.........................................................................................................................................................................................s........................................................................................................................................x..........................................................................................................................................................................................................................................................ssssssssssss.sssssssss....................................................................................................................................................................ss........................................................................sssssss |
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
from locust import HttpLocust, TaskSet, task | |
from locust import events | |
class UserBehavior(TaskSet): | |
@task | |
def google(self): | |
self.client.get("/") |
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
from django.test import TestCase | |
from django_webtest import WebTest | |
""" | |
WebTest rocks. You should check it out: | |
http://webtest.readthedocs.org/en/latest/ | |
https://pypi.python.org/pypi/django-webtest | |
""" | |
NewerOlder