last_response
.body
last_request
.path
.url
.session
.cookies
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| ## | |
| # This files shows some possible implementations of the Singleton pattern | |
| # in Ruby. I'm not a huge fan of the Singleton pattern, but it's nice | |
| # in some cases. In this file I'm going to implement a simple logger. | |
| # | |
| ## | |
| # The first implementation that can come to our minds is to create a class | |
| # that holds an instance as a class variable that can be accessed through |
| #!/bin/bash -e | |
| curl -O http://ftp.heanet.ie/pub/centos/7.0.1406/isos/x86_64/CentOS-7.0-1406-x86_64-Minimal.iso | |
| export VM="MASTER" | |
| export VMDISK="$VM-disk" | |
| export REDHAT_IMAGE="/Users/user/Downloads/CentOS-7.0-1406-x86_64-Minimal.iso" | |
| VBoxManage hostonlyif create | |
| VBoxManage hostonlyif ipconfig vboxnet0 --ip 192.168.20.1 |
| # install perlbrew | |
| sudo yum install -y perl perl-CPAN perl-CPAN-Meta | |
| sudo cpan App::cpanminus | |
| sudo cpanm install App::perlbrew | |
| # install cpanm and perl latest | |
| perlbrew install-cpanm | |
| perlbrew install-patchperl | |
| perlbrew install 5.22.0 |
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.
elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent| const initialData = { | |
| servers: [ | |
| { | |
| url: 'https://1.example.com/', | |
| title: 'Server 1', | |
| online: null, | |
| }, | |
| { | |
| url: 'https://2.example.com/', | |
| title: 'Server 2', |
| import PackageDescription | |
| import Foundation | |
| import Swift | |
| extension PackageDescription.Product { | |
| public static func iOSApplication( | |
| name: Swift.String, | |
| targets: [Swift.String], | |
| bundleIdentifier: Swift.String? = nil, | |
| teamIdentifier: Swift.String? = nil, |
| var lightScheme = { | |
| cursor: "rgba(146, 146, 146, 0.5)", // #929292 | |
| foreground: "#000000", | |
| background: "#FFFFFF", | |
| normalBlack: "#000000", | |
| normalRed: "#FC2025", | |
| normalGreen: "#29C732", | |
| normalYellow: "#FC820A", | |
| normalBlue: "#0B5FFE", | |
| normalMagenta: "#463BCC", |