Skip to content

Instantly share code, notes, and snippets.

View g0rdan's full-sized avatar
🎯
Focusing

Denis Gordin g0rdan

🎯
Focusing
View GitHub Profile
@g0rdan
g0rdan / terminator.sh
Last active May 28, 2024 12:24
Ultimate Flutter cleaning
#!/bin/bash
echo "flutter clean ..."
flutter clean
echo "Deleting .flutter-plugins ..."
rm -rf .flutter-plugins
echo "Deleting .packages ..."
rm -rf .packages
echo "Deleting .symlinks ..."
rm -rf ios/.symlinks/
@g0rdan
g0rdan / treetopview_hackerrank.py
Created August 30, 2019 15:11
Tree Top View on HackerRank.com
import queue
class NodeWrap:
def __init__(self, node, hd):
self.node = node
self.hd = hd
def topView(root):
d = {}
q = queue.Queue()
@g0rdan
g0rdan / videolinks.md
Last active August 10, 2023 20:34
Working video streaming protocols URLs (for testing purposes)