Skip to content

Instantly share code, notes, and snippets.

View rafgugi's full-sized avatar

Risyanggi Azmi Faizin rafgugi

View GitHub Profile

My frist gist

<table class="table table-bordered table-striped">
<thead>
<tr>
<th style="width:5%">No</th>
<th style="width:40%">Diet</th>
<th style="width:15%">Tgl AF</th>
<th style="width:20%">Perawat</th>
<th style="width:15%">Keterangan</th>
<th class="text-center" style="width:5%" title="Pengaturan"><i class="fa fa-cog"></i></th>
</tr>
180
2 2 3
2 3 3
2 4 3
2 5 3
2 6 3
2 7 3
2 8 3
2 9 3
2 10 3
package Token;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
@rafgugi
rafgugi / parser.go
Created November 12, 2018 07:02
Parses sequence with the given regular expression and captures the group values defined in the keys.
package util
import (
"regexp"
)
/**
* Parses sequence with the given regular expression and captures the
* group values defined in the keys.
*/