Skip to content

Instantly share code, notes, and snippets.

View cbessadejusticia's full-sized avatar

Celso Bessa cbessadejusticia

View GitHub Profile
@cbessadejusticia
cbessadejusticia / shrinkpdf.sh
Created July 19, 2019 18:51
shrinkpdf.sh script by Alfred Klomp for optimizing (shrinking) PDF files using Ghostscript
#!/bin/sh
# http://www.alfredklomp.com/programming/shrinkpdf
# Licensed under the 3-clause BSD license:
#
# Copyright (c) 2014, Alfred Klomp
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
@cbessadejusticia
cbessadejusticia / .gitignore
Last active June 18, 2019 23:01 — forked from celsobessa/.gitignore
a fork of salcode .gitignore file for a general web project - Bare Minimum Git
# -----------------------------------------------------------------
# .gitignore
# Bare Minimum Git
# http://ironco.de/bare-minimum-git/
# ver 20181206
#
# From the root of your project run
# curl -O https://gist.githubusercontent.com/celsobessa/67e02d08bf89ada501e7ea8531cc0624/raw/a6a4ff4cd71112a566ed893846dd4ab8d14035c0/.gitignore
# to download this file
#
@cbessadejusticia
cbessadejusticia / example-markup.html
Last active March 21, 2019 02:35
iframe with screen border/background based on technique by Evan on Stackoverflow: https://stackoverflow.com/a/25573922/3594287
<div class="tv-outer-container">
<div class="tv-inner-container">
<iframe width="640" height="360" src="//www.youtube.com/embed/f890SC1schE" frameborder="0" allowfullscreen></iframe>
</div>
</div>