Skip to content

Instantly share code, notes, and snippets.

View branquito's full-sized avatar
🌴
On vacation

Branchito de Munze branquito

🌴
On vacation
View GitHub Profile
@branquito
branquito / eglo_file-renamer.php
Created October 11, 2013 18:01
renamer-for-eglo
<!-- QUERY for deleting leftover copies of images on server. -->
<!-- -->
<!-- mysql> select o.id_product, o.id_image from ps_image_old as o left join ps_image_processed as p -->
<!-- &#45;> on o.id_product = p.id_product -->
<!-- &#45;> where o.id_image <> p.id_image; -->
<?php
// set params here
$username = "user";
@branquito
branquito / artsl-katarina.todo
Created October 25, 2013 17:31
artskylight-FIXME
FIXME:
☐ promena LOGO-a (u mailu je novi)
☐ paging na arhivi, boje su pogresne
☐ search button ne radi
☐ header pravi horizontal scrollbar, ne ponasa se fluidno
@branquito
branquito / regexes
Created October 29, 2013 16:19
regex-patterns
link pattern
\w*:\/\/[^"<]*
links outside of href attribute
[^"]\zshttp:\/\/[^"<]*
@branquito
branquito / find-images
Created November 6, 2013 00:06
Find-Extract files from zip archives
#!/usr/bin/bash
# author Branchito
# Usage
# This script takes filenames as arguments, as many as you wish
# and then searches through all .zip archives for those filenames
# and extracts them
# if you do not wish to specify args manually on the command line
@branquito
branquito / bash-fc-855514022
Created November 13, 2013 11:10
pdf to image[s]
convert -density 150 -trim "css3_for_web_designers.pdf[56]" -quality 100 -sharpen 0x1.0 out.jpg \
@branquito
branquito / 09-top-menu.css
Created December 3, 2013 20:33
geopolitika
/*nema vremena sada, da se vidi odakle ovo.. */
/*privremeni fix*/
.separator {
color: white;
font-weight: bold;
}
/* MENU styling */
@branquito
branquito / 0_reuse_code.js
Created December 31, 2013 15:47
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
/* Tooltips */
.tip-wrap{
z-index: 10000;
}
.tip {
float: left;
background: #ffc;
border: 1px solid #D4D5AA;
padding: 5px;
max-width: 200px;
@branquito
branquito / .gitignore
Created January 28, 2014 18:44
joomla:gitignore:template
# Ignore everything
/*
# Don't ignore directories, so we can recurse into them
!*/
/cache/
cli/
includes/
@branquito
branquito / app.css
Created September 1, 2014 11:53
susy2 grid example
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.container {
max-width: 1140px;
margin-left: 0;
margin-right: auto;
background-image: linear-gradient(to right, rgba(0, 128, 0, 0.25), rgba(0, 204, 0, 0.25) 88.88889%, transparent 88.88889%);