Skip to content

Instantly share code, notes, and snippets.

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

Joaquin Acuna JoaquinAcuna97

🏠
Working from home
View GitHub Profile
wily:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2-beta
with:
fetch-depth: 0
- uses: actions/checkout@v2-beta
with:
ref: refs/heads/master
import os
from flask import Flask
from generator import generator
app = Flask(__name__)
@app.route("/")
def generate_buzz():
page = """<html>
<head>
Feature: Counter
Scenario: Initial counter value is 0
Given the app is running
Then i see {'0'} text
Feature: Counter
Scenario: Initial counter value is 0
Given the app is running
Then i see {'0'} text
Scenario: Plus button increase the counter value
Given the app is running
When i tap {Icons.add} icon
Then i see {'1'} text
Feature: Counter
Scenario: Initial counter value is 0
Given the app is running
Then i see {'0'} text
Scenario: Plus button increase the counter value
Given the app is running
When i tap {Icons.add} icon
Then i see {'1'} text
floatingActionButton: Stack(
children: <Widget>[
Align(
alignment: Alignment.bottomLeft,
child: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: const Icon(Icons.add),
),
),
# Run this app with `python app.py` and
# visit http://127.0.0.1:8050/ in your web browser.
import dash
import dash_core_components as dcc
import dash_html_components as html
import plotly.express as px
import pandas as pd
app = dash.Dash(__name__)