I hereby claim:
- I am MrXyfir on github.
- I am xyfir (https://keybase.io/xyfir) on keybase.
- I have a public key whose fingerprint is 7A15 E56B DCC1 829A A187 026B D75B 6A3C B960 A93C
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
import { StyleSheet, ViewStyle, Animated, View } from 'react-native'; | |
import React from 'react'; | |
import { | |
RotationGestureHandlerStateChangeEvent, | |
PinchGestureHandlerStateChangeEvent, | |
PanGestureHandlerStateChangeEvent, | |
RotationGestureHandler, | |
State as GestureState, | |
PinchGestureHandler, | |
PanGestureHandler, |
// Quick and dirty script to expire all builds in TestFlight | |
// Selectors could probably be improved and simplified | |
// Working as of June 2nd 2020 | |
setInterval(() => { | |
const doneButton = document.querySelector("body > div.tb-modal.tb-default-theme.tb-modal--nofade.tb-modal--show.tb-modal--preshow > div.ng-isolate-scope.tb-modal__box > div > div:nth-child(2) > div.tb-modal__footer > div > button"); | |
if (doneButton) doneButton.click(); | |
const version = document.querySelector("#train\\.id > table > tbody > tr > td:nth-child(2) > a"); | |
if (version) version.click(); |
Hosting Ptorx yourself gives you a greater level of control and privacy (assuming you set everything up correctly) but it does come at a cost: it's not a simple process. If you need a self-hosted Ptorx installation you can either follow this tutorial with no support should you get stuck, or you can hire us to do it for you by sending an email to [email protected]. Some steps will be implied, or vague and generalized, so you'll be expected to know how to fill in the blanks based on your environment and requirements.
Ptorx can run on fairly low-spec servers, but we recommend at least 1GB of RAM with 1-2GB of swap space.
declare module 'remotestoragejs' { | |
export interface Access { | |
/** Claim access on a given scope with given mode. */ | |
claim( | |
/** | |
* An access scope, such as "contacts" or "calendar" or "*". | |
*/ | |
scope: string, | |
/** | |
* Access mode. Either "r" for read-only or "rw" for read/write. |