Skip to content

Instantly share code, notes, and snippets.

View rajitha-bandara's full-sized avatar

Rajitha Bandara rajitha-bandara

View GitHub Profile

How to convert markdown to PDF:

This post reviews several methods for converting a Markdown (.md) formatted file to PDF, from UNIX or Linux machines.

Using Pandoc:

$ pandoc How_I_got_svg-resizer_working_on_Mac_OSX.md -s -o test1.pdf
@rajitha-bandara
rajitha-bandara / CSS3 Media Queries Template
Created May 22, 2019 03:06
CSS3 Media Queries template
/*
* Author: http://stuffandnonsense.co.uk/blog/about/hardboiled_css3_media_queries/
*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
/* Styles */
}
https://www.youtube.com/watch?v=0zhQ52BQQ5s
https://www.metabase.com
apache superset
https://www.spagobi.org/documentation/
https://www.predictiveanalyticstoday.com/open-source-free-business-intelligence-solutions/
https://www.metabase.com/docs/latest/operations-guide/running-the-metabase-jar-file.html
@rajitha-bandara
rajitha-bandara / amazon-ec2-ftp.md
Last active October 21, 2018 15:36 — forked from gunjanpatel/amazon-ec2-ftp.md
amazon ec2 LAMP and FTP installation and setup
https://www.koolreport.com
https://github.com/PHPJasper
http://reportico.org/laravel/public/index.php/getting-started
http://www.metabase.com/
apache c
reportserver.net‎
https://helgesverre.com/blog/expose-local-webserver/
function filter_by_project(){
var input, filter, table, tr, td, i;
input = $("#project_filter").val();
filter = input.toUpperCase();
table = document.getElementById("receivings_table");
tr = table.getElementsByTagName("tr");
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[3];
if (td) {
http://bootstrap-datepicker.readthedocs.io
$('.datepicker_y_M').datepicker({
format: "M yyyy",
startView: "year",
minViewMode: "months",
autoclose: true
})
http://shashangka.com/2017/05/17/enable-rdlc-reporting-in-visual-studio-2017/
LOAD DATA INFILE 'V:/Downloads/Temp/Homes DB(1).csv'
INTO TABLE land_developers FIELDS TERMINATED BY ',' ENCLOSED BY '"'
LINES TERMINATED BY '\n'
IGNORE 1 LINES
(name, email, phone_1, street, suburb, estate)