Skip to content

Instantly share code, notes, and snippets.

View sh0umik's full-sized avatar
💭
Talk is Cheap, Show me the Code

Fahim Shariar Shoumik sh0umik

💭
Talk is Cheap, Show me the Code
View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>UI</title>
<style type="text/css">
#loader {
min-height: 100vh;
display: flex;
package main
import (
"net"
"log"
"io"
"fmt"
)
func main() {
@sh0umik
sh0umik / marker_selector.dart
Created November 17, 2019 05:08 — forked from ephrimlawrence/marker_selector.dart
Programmatically selecting a marker on google map - flutter android
/// This example uses google_maps_flutter: ^0.5.21+8
/// For guide on how to setup google maps flutter, visit
/// https://pub.dev/packages/google_maps_flutter
/// Preview of this example is available at https://kutt.it/2VlCi9
import 'dart:async';
import 'dart:math';
import 'dart:ui';
import 'package:flutter/material.dart';
@sh0umik
sh0umik / parser.py
Created December 11, 2016 07:36 — forked from fforbeck/parser.py
parser
import re
class InputScanner(object):
def __init__(self, filename, parse_function):
with open(filename) as f:
self.reversed_lines = list(reversed(f.read().split('\n')))
self.case_count = 0
self.total_cases = self.next_int()
self.parse_function = parse_function