Skip to content

Instantly share code, notes, and snippets.

View devBamidele's full-sized avatar
🎯
Focusing

Bamidele Ajewole devBamidele

🎯
Focusing
View GitHub Profile

Privacy Policy for Rehearse Coach

Last Updated: January 3, 2026

Introduction

Rehearse Coach ("we", "our", or "us") is committed to protecting your privacy. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our mobile application (the "App"). The App provides AI-powered interview practice with real-time feedback to help users improve their interview skills.

Please read this privacy policy carefully. If you do not agree with the terms of this privacy policy, please do not access the App.

@devBamidele
devBamidele / main.dart
Last active November 25, 2022 15:47
Bamidele Ajewole
import 'dart:io'; // Dart pad does not support this library
void main(){
// Instantiate the class
Account bank = Account();
print("What do you want to do ?");
print("View Account Balance -- 1 ");
print("Make Deposit -- 2 ");
print("Make Withdrawal -- 3");
@devBamidele
devBamidele / main.dart
Created October 16, 2022 21:00
Bamidele Ajewole
void main(){
num val1, val2;
val1 = 4;
val2 = 5;
// Print the values
print("Addition: ${add(val1, val2)}");
print("Subtraction: ${subtract(val1, val2)}");
print("Multiplication: ${multiply(val1, val2)}");
print("Division: ${divide(val1, val2)}");
@devBamidele
devBamidele / main.dart
Created October 6, 2022 19:26
Bamidele Ajewole
void main(){
num val1, val2;
val1 = 4;
val2 = 5;
// Print the values
print("Addition: ${add(val1, val2)}");
print("Subtraction: ${subtract(val1, val2)}");
print("Multiplication: ${multiply(val1, val2)}");
print("Division: ${divide(val1, val2)}");
@devBamidele
devBamidele / main.dart
Created October 6, 2022 12:44
vagrant-patter-6928
void main(){
for(int i = 1; i <= 30; i++){
// When the number is odd
if(i % 2 == 1){
print(i);
}
if(i == 30){
print('The number is at $i');
}
}