Skip to content

Instantly share code, notes, and snippets.

View sublime247's full-sized avatar

Kushimo Bashir sublime247

View GitHub Profile
@sublime247
sublime247 / main.dart
Created October 27, 2022 14:21
amber-cloud-9474
void main() {
for (int i = 0; i < 5; i++) {
print('hello ${i + 1}');
}
}
@sublime247
sublime247 / main.dart
Last active October 31, 2022 11:27
hngi9
import 'dart:math';
void main() {
print('Circle1:');
Circle circle1 = Circle.circle1();
circle1.getArea(1);
circle1.getCircumference(1);
circle1.getDescription('1', 'red');
circle1.getColor('red');
print('');
import 'dart:math';
void main() {
print('Circle1:');
Circle circle1 = Circle.circle1();
circle1.getArea(1);
circle1.getCircumference(1);
circle1.getDescription('1', 'red');
circle1.getColor('red');
print('');
import 'dart:math';
void main() {
print('Circle1:');
Circle circle1 = Circle.circle1();
circle1.getArea(1);
circle1.getCircumference(1);
circle1.getDescription('1', 'red');
circle1.getColor('red');
print('');
@sublime247
sublime247 / main.dart
Created December 28, 2022 22:57
magenta-glacier-4501
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@sublime247
sublime247 / main.dart
Created December 30, 2022 00:13
debbuging_assignment
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
@sublime247
sublime247 / main.dart
Created December 30, 2022 00:13
debbuging_assignment
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
@sublime247
sublime247 / main.dart
Created December 30, 2022 00:17
debbuging_assignment
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
void main() {
runApp(
MyApp());
}
class MyApp extends StatelessWidget {
@override
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
// Write a StudentPortal smart contract where only the owner can register students into the smart contract.
// Only the owner can update and delete students records.
// Write other functions that will return students records
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
import "./one.sol";
contract Attacker {
VIP_Bank public targetBank;
address public owner;