Developer | Developer with certificates | AppManager | AppManager with certificates | Admin | Account Holder | |
---|---|---|---|---|---|---|
App Features | ||||||
Upload Builds | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
Edit App Store Details (Read) | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
Create Apps and Submit Versions | ✅ | ✅ | ✅ |
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
@supports (padding-top: constant(safe-area-inset-top)) { | |
body { | |
padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left); | |
} | |
} | |
@media (display-mode: fullscreen) { | |
body { | |
padding: 0; | |
} |
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
-- Author: Krisjan Oldekamp | |
-- https://stacktonic.com/article/enrich-a-single-customer-view-with-google-analytics-4-big-query-data | |
declare lookback_window int64 default 365; -- how many days to lookback into the ga4 dataset to calculate profiles | |
-- udf: channel grouping (you could put this in a permanent function) | |
-- also see https://stacktonic.com/article/google-analytics-4-and-big-query-create-custom-channel-groupings-in-a-reusable-sql-function | |
create temporary function channel_grouping(tsource string, medium string, campaign string) as ( | |
case | |
when (tsource = '(direct)' or tsource is null) |
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
-- Author: Krisjan Oldekamp | |
-- https://stacktonic.com/article/create-a-user-mapping-table-based-on-the-google-analytics-4-big-query-dataset | |
declare lookback_window int64 default 90; -- how many days to lookback into the dataset to search for ids (compared to today) | |
-- udf: deduplicate array of struct | |
create temp function dedup(arr any type) as (( | |
select | |
array_agg(t) | |
from ( |
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 {remote} from "webdriverio"; | |
const capabilities = { | |
platformName: 'iOS', | |
platformVersion: '13.6', | |
deviceName: 'DEVICE_NAME', // Change this to the device you want to run | |
automationName: 'XCUITest', | |
bundleId: 'com.apple.mobilesafari', | |
autoAcceptAlerts: 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
@supports (padding-top: constant(safe-area-inset-top)) { | |
body { | |
padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left); | |
} | |
} | |
@media (display-mode: fullscreen) { | |
body { | |
padding: 0; | |
} |
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
function (user, context, callback) { | |
if (context.clientMetadata && context.clientMetadata.shopify_domain && context.clientMetadata.shopify_multipass_secret) | |
{ | |
const RULE_NAME = 'shopify-multipasstoken'; | |
const CLIENTNAME = context.clientName; | |
console.log(`${RULE_NAME} started by ${CLIENTNAME}`); | |
const now = (new Date()).toISOString(); | |
let shopifyToken = { | |
email: user.email, |
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
require('expect-puppeteer'); | |
const isCI = require('is-ci'); | |
const path = require('path'); | |
const { mkdirp, writeFile } = require('fs-extra'); | |
const screenshotsPath = path.resolve(__dirname, '../reports/screenshots'); | |
const toFilename = s => s.replace(/[^a-z0-9.-]+/gi, '_'); |
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
Puma::Plugin.create do | |
def production? | |
ENV.fetch('RACK_ENV', 'development') == 'production' | |
end | |
def log(msg) | |
if production? | |
Rails.logger.info msg | |
else | |
puts msg |
NewerOlder