Skip to content

Instantly share code, notes, and snippets.

View sturmenta's full-sized avatar
🌌

Nicolas Sturm sturmenta

🌌
  • Argentina
  • 04:45 (UTC -03:00)
View GitHub Profile
@sturmenta
sturmenta / firestore2json.js
Last active October 28, 2022 19:03
firestore to json & json to firestore
const admin = require('firebase-admin');
const fs = require('fs');
const serviceAccount = require('../../../../../../Private/myschool-data_transfer-key.json');
admin.initializeApp({ credential: admin.credential.cert(serviceAccount) });
const schema = require('./schema').schema;
const firestore2json = (db, schema, current) => {
@sturmenta
sturmenta / comments.md
Last active October 1, 2021 17:52
Firebase Functions Send Mail
@sturmenta
sturmenta / snippets.json
Last active March 25, 2024 13:22
VSCode snippets
{
// TODO: remember: save changes of this on https://gist.github.com/sturmenta/eb93a8e1367d445b2bb81f5263db05f7
//
// ─── rust ─────────────────────────────────────────────────────────────────────────────
//
"println": {
"prefix": "prt",
"body": [
"println!(\"$1 = {:#?}\", $1);"
],
@sturmenta
sturmenta / DottedLine.js
Last active August 29, 2019 22:26
react native - android - dotted line
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
const styles = StyleSheet.create({
container: {
width: '100%',
alignItems: 'center',
height: 1,
marginBottom: 10,
marginTop: 10,
@sturmenta
sturmenta / ObjectsArrayutils.ts
Last active November 9, 2020 11:24
remove object from array in javascript, add, and replace
export const arrayRemoveObject = (array: Object[] = [], toRemove: Object): Array<Object> => {
const tempArray = array.slice();
if (JSON.stringify(tempArray).includes(JSON.stringify(toRemove))) {
return JSON.parse(
JSON.stringify(tempArray)
.replace(JSON.stringify(toRemove), '')
.split('},]')
.join('}]')
.split('",]')
@sturmenta
sturmenta / readme.md
Last active January 11, 2024 10:27
use "react-native-vector-icons" in "create-react-app" with "react-app-rewired"

guide of how to use react-native-vector-icons on web with webpack and react-app-rewired

  1. yarn add react-native-vector-icons react-native-web
  2. yarn add react-app-rewired -D
  3. update package.json scripts (before react-scripts start/build/test)
    "start": "react-app-rewired start",
    "build": "react-app-rewired build",
    "test": "react-app-rewired test --env=jsdom",
@sturmenta
sturmenta / formatBigNumber.js
Created July 22, 2019 22:36
Parse big numbers
const values = [
{ K: 1000 },
{ M: 1000000 },
{ B: 1000000000 },
{ Qd: 1000000000000 },
{ Qt: 1000000000000000 },
{ St: 1000000000000000000 },
{ Sp: 1000000000000000000000 },
{ O: 1000000000000000000000000 },
{ N: 1000000000000000000000000000 },
@sturmenta
sturmenta / dimensions.js
Last active September 9, 2019 14:04
JS Media Queries for Desktop, Tablet, Mobile.
const w = window.innerWidth;
export const isPhone = w >= 320 && w < 480;
export const isTablet = w >= 480 && w < 768;
export const isLargeTablet = w >= 768 && w < 1024;
export const isDesktop = w >= 1024 && w < 1280;
export const isLargeDesktop = w >= 1280;
@sturmenta
sturmenta / App.js
Last active September 11, 2019 03:08
react native KeyboardContext
import React, { PureComponent } from 'react';
import { AppNavigator, setTopLevelNavigator } from './navigation';
import { KeyboardProvider } from './utils/keyboardContext';
export default class App extends PureComponent {
render() {
return (
<KeyboardProvider>
<AppNavigator ref={navigationRef => setTopLevelNavigator(navigationRef)} />
@sturmenta
sturmenta / dist2GPS.ts
Last active June 16, 2023 23:29
Distance between two gps locations
const numToRad = (num) => (num * Math.PI) / 180;
export const getDistFrom2GpsLocations = ({ lat1, long1, lat2, long2 }) => {
lat1 = parseFloat(lat1);
long1 = parseFloat(long1);
lat2 = parseFloat(lat2);
long2 = parseFloat(long2);
const R = 6371e3;
const φ1 = numToRad(lat1);