Skip to content

Instantly share code, notes, and snippets.

View iBelow's full-sized avatar
🎯
Focusing

ApolloNTZX iBelow

🎯
Focusing
  • San-Jose, CA, USA
View GitHub Profile
@iBelow
iBelow / main.dart
Created March 31, 2025 08:08
Gemini 2.5 Pro code example
import 'dart:math' as math;
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@iBelow
iBelow / main.go
Last active July 17, 2024 10:59
Golang brainfuck example
package main
import (
"fmt"
"strconv"
)
type Type interface{}
type Hide func(Type)
@iBelow
iBelow / main.dart
Created June 11, 2024 10:51
flutter appbar (sliver)
// Copyright 2019 the Dart project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file.
import 'package:flutter/cupertino.dart' as cp;
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
@iBelow
iBelow / main.dart
Created October 17, 2022 11:01
Counter example
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'dart:async';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
@iBelow
iBelow / observer.dart
Created September 19, 2022 13:32
bloc observer
import 'dart:developer';
import 'package:flutter_bloc/flutter_bloc.dart';
class AppObserver extends BlocObserver {
@override
void onCreate(BlocBase bloc) {
super.onCreate(bloc);
log('Created $bloc');
}