Skip to content

Instantly share code, notes, and snippets.

View buildbro's full-sized avatar

Pius Aboyi Ea buildbro

View GitHub Profile

How to use the Booking Assist Browser Extension (Desktop)

Get the Chrome Extension from https://chromewebstore.google.com/detail/free-uk-practical-driving/mcnoomopffdidcjfcdddikalnngejmil?authuser=0&hl=en

Step 1: Login to DVSA Website

This tool helps you find your preferred test centre from the DVSA test centre results page. So, you'll have to be on the test centre results page before you start your search in the tool.

Step 2: Launch Extension

Open the Extension, then enter the name of your preferred test centre in the search field. Then, click on the Search and Click button so that the tool can search the DVSA results page.

  1. If an available date is found, the tool will auto click on it an take you to the next page to confirm the date and time for your test.
  2. If no date is found, clicking on the Search button does nothing.

How to use the Booking Assist Android app

Step 1: Download the App

Download the app from https://play.google.com/store/apps/details?id=com.buildbrothers.dvsa_helper.

Step 2: Login to DVSA Website

Open the app and use the Book New (for a new test) or Change Test (to change a test you've already booked) button to login to the the DVSA website.

Step 3: Get to the Test Centre Results Page

Navigate the DVSA Website till you get to the Test Centre results page.

<script>
import firebase from "firebase";
import { useLoadInventory } from "@/firebase";
import { onMounted, reactive } from "vue";
export default {
name: "HomeView",
setup() {
const inventoryData = useLoadInventory();
@buildbro
buildbro / index.html
Last active January 23, 2023 10:49
BB-Web Dev class CSS Page Layout design D1 - Navbar
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/style.css">
</head>
@buildbro
buildbro / add_bootstrap_to_vue.md
Last active November 7, 2022 13:34
Add bootstrap to vue

Here's a simple way to add bootstrap to your vue 3 project

Step 1 - Install bootstrap package

cd to your vue project's root directory and run the following command:

npm install bootstrap

Step 2 - Import bootstrap in main.js

@buildbro
buildbro / main.dart
Created March 20, 2022 03:25
Dart code for a flutter hello world app
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.

#End User License Agreement (EULA) For An Awesome Demo App.

1.Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

  1. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidun
package com.buildbrothers.poster2action
import android.Manifest
import android.annotation.SuppressLint
import android.content.pm.PackageManager
import android.net.Uri
import android.os.Build
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.util.Log
@buildbro
buildbro / main.dart
Created December 24, 2019 00:44
Air Note demo app for connecting flutter app to firebase post
import 'package:flutter/material.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(