Skip to content

Instantly share code, notes, and snippets.

@skj-skj
skj-skj / whatsapp-clone-light-theme.dart
Last active July 5, 2020 14:24
Whatsapp Clone Light Theme
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
@skj-skj
skj-skj / noVowel.py
Last active August 30, 2020 13:47
Generate List of Words Without Vowel - noVowel.py
import csv
import re
wordsWithoutVowel = []
countWords = 1
def progress (current,final=362707-5): # 362707 is the total no of lines in all index files. -5 to remove extra space in each file
printProgress = int((current/final)*100)
print(str(printProgress)+' %')