Skip to content

Instantly share code, notes, and snippets.

View catalinmiron's full-sized avatar
🎥
https://www.youtube.com/c/catalinmirondev

Catalin Miron catalinmiron

🎥
https://www.youtube.com/c/catalinmirondev
View GitHub Profile
@catalinmiron
catalinmiron / info.plist
Created September 15, 2016 20:45 — forked from mlynch/info.plist
Disable App Transport Security in iOS 9
<!--
This disables app transport security and allows non-HTTPS requests.
Note: it is not recommended to use non-HTTPS requests for sensitive data. A better
approach is to fix the non-secure resources. However, this patch will work in a pinch.
To apply the fix in your Ionic/Cordova app, edit the file located here:
platforms/ios/MyApp/MyApp-Info.plist
And add this XML right before the end of the file inside of the last </dict> entry:
@catalinmiron
catalinmiron / Appfile
Created January 20, 2017 19:39 — forked from mmazzarolo/Appfile
Simple Fastlane setup for React-Native (Android - iOS)
# iOS
app_identifier "com.myapp.app" # The bundle identifier of your app
apple_id "[email protected]" # Your Apple email address
team_id "1234ABCD" # Developer Portal Team ID
# Android
json_key_file "./google-play-api-secret.json" # Path to the json secret file - Follow https://github.com/fastlane/supply#setup to get one
package_name "com.myapp.app" # Your Android app package
@catalinmiron
catalinmiron / RadioButton.js
Created January 20, 2017 19:44 — forked from mmazzarolo/RadioButton.js
Simple animated stateless React-Native radio button
import React, { PropTypes } from 'react'
import { StyleSheet, TouchableOpacity } from 'react-native'
import { View } from 'react-native-animatable'
const DEFAULT_SIZE_MULTIPLIER = 0.7
const DEFAULT_OUTER_BORDER_WIDTH_MULTIPLIER = 0.2
const RadioButton = ({ size, innerColor, outerColor, isSelected, onPress, ...props }) => {
const outerStyle = {
borderColor: outerColor,
@catalinmiron
catalinmiron / heartbeats.js
Created February 21, 2017 22:28 — forked from andrewvc/heartbeats.js
simple canvas heartbeat monitor
function Heartbeat(context,width,height) {
var h = this;
h.context = context;
h.width = width;
h.height = height;
h.baseline = Math.round(h.height / 2);
h.context.moveTo(h.x, h.y);
h.context.strokeStyle = "#668CFF";
@catalinmiron
catalinmiron / mailchimp-firebase.js
Created July 19, 2017 16:45 — forked from eibrahim/mailchimp-firebase.js
A node worker for firebase to add a user to mailchimp
var mcapi = require('./node_modules/mailchimp-api/mailchimp');
var usersRef = db.ref('users');
var mc = new mcapi.Mailchimp('xxxxxxxxxx-api-key-us4');
usersRef.orderByChild('added_to_mailchimp').equalTo(null).on('child_added',function(snapshot){
var user = snapshot.val();
var key = snapshot.key;
if(user && user.email){
var listId = 'xxxx-list-id-xxxx';
var name = user.displayName || '';
@catalinmiron
catalinmiron / mailMananger.js
Created July 19, 2017 16:48 — forked from eibrahim/mailMananger.js
A node worker for firebase to send emails using mandrill
var mandrill = require('mandrill-api/mandrill');
var mandrill_client = new mandrill.Mandrill('YOUR MANDARILL KEY');
var FROM_EMAIL = '[email protected]';
var FROM_NAME = 'Our Standup';
var db = require('./database');
var invitationsRef = db.ref("invitations");
var teamsRef = db.ref("teams");
var usersRef = db.ref("users");
@catalinmiron
catalinmiron / index.js
Last active August 8, 2018 11:08
My reset css (colors + font-family)
var element = document.body;
var colors = ['--blue',
'--indigo',
'--purple',
'--pink',
'--red',
'--orange',
'--yellow',
'--green',
Project link: https://github.com/graphql-boilerplates/react-fullstack-graphql/tree/master/advanced
yarn add --dev dotenv graphql-cli nodemon npm-run-all prisma
yarn add bcryptjs graphql-yoga jsdom jsonwebtoken page-metadata-parser prisma-binding
@catalinmiron
catalinmiron / DrawerControl.tsx
Created November 28, 2018 15:02 — forked from erictraut/DrawerControl.tsx
ReactXPDrawerWithConstantWidth
/*
* This file implements a basic drawer control.
*/
import RX = require('reactxp');
interface MainPanelProps extends RX.CommonStyledProps<RX.Types.ViewStyleRuleSet> {
renderDrawer: () => JSX.Element;
renderContent: () => JSX.Element;
}
@catalinmiron
catalinmiron / App.js
Created January 15, 2019 10:53
No need for constructor example
import React from "react";
import { StyleSheet, StatusBar, View, Dimensions } from "react-native";
import posed from "react-native-pose";
const { width, height } = Dimensions.get("screen");
const GridItem = posed.View({
RIGHT: { rotate: "45deg" },
LEFT: { rotate: "-45deg" }
});
const LINE_WIDTH = 3;