Skip to content

Instantly share code, notes, and snippets.

View NilsBacke's full-sized avatar

Nils Backe NilsBacke

View GitHub Profile

In order to delete your data from our records, please send an email to nils.backe@gmail with your email address used in your LiveBar account.

Privacy Policy

Nils Backe built the LiveBar app as a Free app. This SERVICE is provided by Nils Backe at no cost and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I 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 LiveBar unless otherwise defined in this Privacy Policy.

/* eslint-disable func-names */
/* eslint-disable no-console */
const Alexa = require('ask-sdk-core');
const axios = require('axios');
const JSON = require('circular-json');
const baseURL = 'https://api.amazonalexa.com';
const LaunchRequestHandler = {
@NilsBacke
NilsBacke / firebase_authentication_example.dart
Created July 23, 2018 19:40
A example of using firebase authentication in a flutter application.
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:firebase_auth/firebase_auth.dart';
void main() => runApp(new MaterialApp(
title: "Auth Demo",
home: Home(),
));
final FirebaseAuth _auth = FirebaseAuth.instance;
@NilsBacke
NilsBacke / alert_dialog_example.dart
Created June 24, 2018 23:50
An example of an alert dialog in flutter.
// user defined function
void _showDialog() {
// flutter defined function
showDialog(
context: context,
builder: (BuildContext context) {
// return object of type Dialog
return AlertDialog(
title: new Text("Alert Dialog title"),
content: new Text("Alert Dialog body"),