Skip to content

Instantly share code, notes, and snippets.

@Derewith
Derewith / changelog.md
Last active June 26, 2024 12:03
Mobbin Design - Tampermonkey userscript OR bookmarklet

26-06-2024 - v0.0.1

  • Initial release
@Derewith
Derewith / example.jsx
Created January 25, 2023 14:59
React Native Ref Memoization
import React, { useRef, useCallback } from 'react';
import {
SafeAreaView,
View,
ScrollView,
Button,
Dimensions,
} from 'react-native';
const { height: screenHeight } = Dimensions.get('window');
const ChildComponent = ({ onPress = () => {} }) => {
@Derewith
Derewith / privacy.md
Last active January 2, 2021 16:06
BS

Privacy Policy

BIZZARRO WEB GROUP built the BeautyShop Staging app as a Commercial app. This SERVICE is provided by BIZZARRO WEB GROUP and is intended for use as is.

This page is used to inform visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service.

If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at BeautyShop Staging unless otherwise defined in this Privacy Policy.

@Derewith
Derewith / Activation from iPhone
Created October 23, 2014 14:36
Fiddler2 deviceactivation
<xmlui>
<script><![CDATA[function enableNextButton(){
var fieldPassword = xmlui.getFieldValue('password');
if (fieldPassword && fieldPassword.length >= 3)
return true;
return false;
}
function validateForm() {
var fieldLogin = xmlui.getFieldValue('login');
var fieldPassword = xmlui.getFieldValue('password');