Skip to content

Instantly share code, notes, and snippets.

View faustoct1's full-sized avatar
🌍
Indie hacker

Fausto Torres faustoct1

🌍
Indie hacker
View GitHub Profile
#Analyze image
media = "https://i.ytimg.com/vi/DGU1awKrNiA/hqdefault.jpg"
params = {
"requests":
[
{
"features":
[
{ "maxResults": 50, "type": "TEXT_DETECTION" },
],
@faustoct1
faustoct1 / Proxy.js
Last active May 14, 2019 06:06
proxy interface to react-native-navigation
import React, { Component } from 'react';
let Current=null
class Proxy extends Component {
static navigationOptions = ({ navigation, navigationOptions }) => {
const { params } = navigation.state;
return {
title: params.title,
headerStyle: { backgroundColor: '#fff' },
import React, { Component, View, ScrollView, Text } from 'react';
import { createBottomTabNavigator, createStackNavigator, createAppContainer, StackActions, NavigationActions } from 'react-navigation';
import { Constants } from 'react-native-unimodules'
import Splash from './../views/Splash.js'
import Login from './../views/Login.js'
import CodeConfirmation from './../views/CodeConfirmation.js'
import Share from './../views/Share.js'
import Content from './../views/Content.js'
import Main from './../views/Main.js'
import React, { Component } from 'react';
import { FlatList, View, Text } from 'react-native';
class List extends Component {
/*
essa abordagem ajuda carregar componentes mais rapido de forma async ao msm tempo q List inicializa :)
*/
initAsync = async () => {
}
@faustoct1
faustoct1 / UsageProxySnippet.js
Last active May 14, 2019 05:31
Exemplo de uso do proxy
<TouchableOpacity onPress={()=>{Views.navigator.navigate({
routeName: 'Proxy',
params: {component:'List', title: 'Curtidas'},
key: Backend.uuid() })}}>
<Text style={{fontSize: 16, margin:10}}>Curtidas</Text>
</TouchableOpacity>
@faustoct1
faustoct1 / ComponentDate.js
Last active May 14, 2019 06:35
react native component example
import React, { Component } from 'react';
import { Text, View } from 'react-native';
let moment = null
class Date extends Component {
initAsync = async () => {
moment = require('moment')
}
constructor(props) {
@faustoct1
faustoct1 / UsageComponentDate.js
Last active May 30, 2019 05:02
using date component
import React, { Component } from 'react';
import Date from require('./components/Date.js')
export default class App extends Component {
initAsync = async (that) => {
}
constructor(props) {
super(props)
@faustoct1
faustoct1 / helper.rb
Created July 22, 2019 00:45
handle distributed user session
def auth_user user=nil
#token = JWT.decode(params[:token], hmac_secret, true, { :algorithm => 'HS256' })
token = request.env["HTTP_TOKEN"]
halt 401, "token + user are nil" if (token.blank? && user.blank?)
@user ||= CACHE.get(token)
unless @user.blank?
halt 400, "existent user for a blank token" if token.blank?
@faustoct1
faustoct1 / redis_init.rb
Created July 22, 2019 00:49
init redis
uricache = URI.parse(ENV["REDIS_URL"])
CACHE = Redis.new(:host => uricache.host, :port => uricache.port, :password => uricache.password)
@faustoct1
faustoct1 / jwt_init
Created July 22, 2019 00:53
session jwt init
sha256 = Digest::SHA256.hexdigest "some key goes here you should generate yours"
HMAC_SECRET = sha256