Skip to content

Instantly share code, notes, and snippets.

View geeksilva97's full-sized avatar
🏠
Working from home

Edy Silva geeksilva97

🏠
Working from home
View GitHub Profile
@geeksilva97
geeksilva97 / ProfileController.cs
Last active June 13, 2020 23:15
Uploading Files with progress monitoring in VanillaJS, Vue and Angular.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
namespace UploadAPI.Controllers
{
import 'package:flutter/material.dart';
class RatingDialog extends StatefulWidget {
@override
_RatingDialogState createState() => _RatingDialogState();
}
class _RatingDialogState extends State<RatingDialog> {
int _stars = 0;
@geeksilva97
geeksilva97 / main.dart
Created March 8, 2020 14:38
Rating Dialog - main.dart
import 'package:flutter/material.dart';
import 'package:rating_dialog/src/screens/home_screen.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
import 'package:flutter/material.dart';
import 'package:rating_dialog/src/widgets/rating_dialog.dart';
class HomePage extends StatefulWidget {
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
@override
@geeksilva97
geeksilva97 / home.page.ts
Created February 18, 2020 15:33
SignIn with Google
import { Component } from '@angular/core';
import { GooglePlus } from '@ionic-native/google-plus/ngx';
@Component({
selector: 'app-home',
templateUrl: 'home.page.html',
styleUrls: ['home.page.scss'],
})
export class HomePage {
@geeksilva97
geeksilva97 / index.js
Created December 2, 2019 10:56
Functions used in Emulators
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp();
exports.addDate = functions.firestore.document('users/{userId}')
.onCreate(async (snapshot, context) => {
try {
return await admin.firestore().doc(snapshot.ref.path)
.update({
createdAt: 'today'
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Medium - Emulators Suite</title>
</head>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Medium - Emulators Suite</title>
</head>
<body>
@geeksilva97
geeksilva97 / main.dart
Last active October 21, 2019 19:25
Example of fluttet app for play Songs
import 'package:flutter/material.dart';
import 'package:sales_force/screens/tony/songs.dart';
import 'screens/home/home_screen.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@geeksilva97
geeksilva97 / 404.html
Created June 29, 2019 00:47
Handle SPA routing
<script>
const path = window.location.pathname.slice(1);
localStorage.setItem('path', path);
window.location.href='../';
</script>