Skip to content

Instantly share code, notes, and snippets.

@irwansyahwii
irwansyahwii / PlantUMLGrammar.md
Last active November 14, 2021 10:20
PlantUML Grammar
statement -> element_expr:*  {% id %}
	| null {% id %}

element_expr -> actor_expr {% id %}
	| boundary_expr  {% id %}
	| call_expr {% id %}
	| participant_expr {% id %}
@yaci
yaci / google-drive-md5-checksum
Last active April 10, 2025 00:20
List google drive md5 checksum for all files
#!/usr/bin/python3
"""
!! IMPORTANT !!
!! READ THIS !!
In order to run this script you need python3 and pip3 installed.
You also need some additional python modules. Please run
sudo pip3 install httplib2 oauth2client
sudo pip3 install --upgrade google-api-python-client
@chandu-io
chandu-io / XLS2HTML.java
Last active September 23, 2020 01:26
java :: program to convert excel files to html tables (xls, xlsx)
package com.chandu;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;