Skip to content

Instantly share code, notes, and snippets.

@nsdub
nsdub / Postmodern EULA.md
Last active January 6, 2021 16:10
Postmodern EULA

End-User License Agreement (EULA) of Postmodern

This End-User License Agreement ("EULA") is a legal agreement between you and Postmodern

This EULA agreement governs your acquisition and use of our Postmodern software ("Software") directly from Postmodern or indirectly through a Postmodern authorized reseller or distributor (a "Reseller").

Please read this EULA agreement carefully before completing the installation process and using the Postmodern software. It provides a license to use the Postmodern software and contains warranty information and liability disclaimers.

If you register for a free trial of the Postmodern software, this EULA agreement will also govern that trial. By clicking "accept" or installing and/or using the Postmodern software, you are confirming your acceptance of the Software and agreeing to become bound by the terms of this EULA agreement.

@nsdub
nsdub / Postmodern Support.md
Created January 4, 2021 19:02
Postmodern Support
@nsdub
nsdub / Postmodern Terms of Service.md
Created January 4, 2021 13:02
Postmodern Terms of Service

Terms & Conditions

By downloading or using the app, these terms will automatically apply to you – you should make sure therefore that you read them carefully before using the app. You’re not allowed to copy, or modify the app, any part of the app, or our trademarks in any way. You’re not allowed to attempt to extract the source code of the app, and you also shouldn’t try to translate the app into other languages, or make derivative versions. The app itself, and all the trade marks, copyright, database rights and other intellectual property rights related to it, still belong to Citrus Industries Ltd..

Citrus Industries Ltd. is committed to ensuring that the app is as useful and efficient as possible. For that reason, we reserve the right to make changes to the app or to charge for its services, at any time and for any reason. We will never charge you for the app or its services without making it very clear to you exactly what you’re paying for.

The Postmodern app stores and processes personal data that

@nsdub
nsdub / Postmodern Privacy Policy.md
Created January 4, 2021 13:00
Postmodern Privacy Policy

Privacy Policy

Citrus Industries Ltd. built the Postmodern app as a Free app. This SERVICE is provided by Citrus Industries Ltd. at no cost 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 Postmodern unless otherwise defined in this Privacy Policy.

@nsdub
nsdub / gist:e129b775b3c8e790646d4e817baf49b4
Created December 3, 2018 12:44
Using FlatList in place of ListView
import React, {Component} from 'react'
import {View, StyleSheet, Text, FlatList} from 'react-native'
import CircleImage from '../components/circleImage'
export default class App extends Component {
_keyExtractor = (item, index) => item.id
renderItem({ item, index }) {
@nsdub
nsdub / compare.py
Created November 9, 2013 07:42 — forked from astanin/compare.py
#!/usr/bin/env python
"""Compare two aligned images of the same size.
Usage: python compare.py first-image second-image
"""
import sys
from scipy.misc import imread
from scipy.linalg import norm