Skip to content

Instantly share code, notes, and snippets.

View BLKKKBVSIK's full-sized avatar
💙
Flutter Engineering

Enzo Conty BLKKKBVSIK

💙
Flutter Engineering
View GitHub Profile
import 'dart:io';
import 'dart:convert';
import 'dart:typed_data';
const kDISCORD_WEBHOOK = "YOUR_KEY_HERE";
const kIMDB_API_KEY = "YOUR_KEY_HERE";
void main() async {
var server = await HttpServer.bind('127.0.0.1', 9000);
print("[Debug] Http server opened on http://127.0.0.1:9000/");
@BLKKKBVSIK
BLKKKBVSIK / main.dart
Created October 7, 2020 21:11
wallpaper
import 'dart:math';
import 'dart:ui';
import 'package:flutter/rendering.dart';
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
debugShowCheckedModeBanner: false,
home: MyWidget(),
@BLKKKBVSIK
BLKKKBVSIK / hello_world.py
Created August 27, 2020 17:47
Hello World TEST
class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()
String hello() {
List<int> underCode = [1, 8, 11];
List<int> charCodes = [];
bool key = false;
charCodes.insert(0, 72);
for (var i = 0; i < underCode.length; i++) {
final r = underCode[i] + 100;
if (charCodes.contains(101) && key == false) {
List<int> tmpList = [];