Skip to content

Instantly share code, notes, and snippets.

View shibby360's full-sized avatar
🧠
smarting rn

Shivank Chhaya shibby360

🧠
smarting rn
  • n/a im 14
  • ca
  • 09:26 (UTC -07:00)
View GitHub Profile
@shibby360
shibby360 / README.md
Last active March 1, 2024 04:32
Code to verify the sequence => difference => factorial
@shibby360
shibby360 / main.dart
Last active March 10, 2023 22:41
minibs
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'dart:math';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@shibby360
shibby360 / main.dart
Last active March 8, 2023 03:28
some dart gist
void main() {
print('blah blah');
}
@shibby360
shibby360 / helloworld.cpp
Last active April 9, 2022 21:59
"Hello World"s
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}