cat introspection_query.json
{
"query": "query IntrospectionQuery {
__schema {
queryType { name }
mutationType { name }
Hi Github users,
You can now signed your commits on Github using at least Git 2.18.0 and Github Desktop 1.6.1.
Generate a GPG key and add it to Github: https://help.github.com/articles/generating-a-new-gpg-key (if you don't want to type a passphrase on every commit, you need to press "Enter" when the console will prompt you to type a passphrase)
Configure Git properly by editing the .gitconfig
file using the command line git config --global --edit
in a terminal, then replace YOUR_GITHUB_EMAIL, YOUR_SIGNING_KEY and GPG_BINARY_PATH with your data
Hi Github users,
You can now signed your commits on Github using at least Git 2.18.0 and Github Desktop 1.6.1.
Generate a GPG key and add it to Github: https://help.github.com/articles/generating-a-new-gpg-key (if you don't want to type a passphrase on every commit, you need to press "Enter" when the console will prompt you to type a passphrase)
Configure Git properly by editing the .gitconfig
file using the command line git config --global --edit
in a terminal, then replace YOUR_GITHUB_EMAIL, YOUR_SIGNING_KEY and GPG_BINARY_PATH with your data
# coding: utf-8 | |
$silentMode = false | |
$answer = "" | |
ARGV.each do|a| | |
if a == "--silentMode" | |
$silentMode = true | |
$answer = "a" | |
end | |
end |
import { AppiumDriver, createDriver, SearchOptions } from 'nativescript-dev-appium' | |
import { runType } from 'nativescript-dev-appium/lib/parser' | |
import { Direction } from 'nativescript-dev-appium/lib/direction' | |
import { assert } from 'chai' | |
describe('E2E Specs', () => { | |
let driver: AppiumDriver | |
before(async () => (driver = await createDriver())) |
import { AppiumDriver, createDriver, SearchOptions } from 'nativescript-dev-appium' | |
import { runType } from 'nativescript-dev-appium/lib/parser' | |
import { Direction } from 'nativescript-dev-appium/lib/direction' | |
import { assert } from 'chai' | |
const isAndroid: string = runType.includes('android') | |
describe('E2E Specs', () => { | |
let driver: AppiumDriver |
document.getElementsByTagName('*').length |
#!/bin/bash | |
function useStableChromeVersion { | |
curl -L -o google-chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb; | |
sudo dpkg -i google-chrome.deb; | |
sudo sed -i 's|HERE/chrome\"|HERE/chrome\" --disable-setuid-sandbox|g' /opt/google/chrome/google-chrome; | |
rm google-chrome.deb | |
} | |
useStableChromeVersion |
// Namespace creation method | |
function setNamespace (ns_string, ns) { | |
var parts = ns_string.split('.'), | |
parent = ns; | |
if (parts[0] === "App") { | |
parts = parts.slice(1); | |
} | |
var pl = parts.length; | |
for (var i = 0; i < pl; i++) { | |
//create a property if it doesnt exist |
// Finds total size of objects attached to the scopes | |
(function ngScopeSize() { | |
var i, data, scope, | |
count = 0, | |
all = document.all, | |
len = all.length, | |
test = {}, | |
scopes = 0; |