I hereby claim:
- I am martinec on github.
- I am martinec (https://keybase.io/martinec) on keybase.
- I have a public key ASB8puwS5G3y3WeKwmMNIVv_e5t6JkfJquGJ0Y2VrwDsRgo
To claim this, I am signing this object:
# This makefile uses the inkscape command line mode to export | |
# SVG files in a set of foo-{SIZES}.png images | |
all: icons | |
# Input SVG images without extensions | |
IMAGES = icon icon_inactive | |
# Output PNG sizes | |
SIZES = 16 32 48 64 | |
INKSCAPE = inkscape | |
DASH = - |
function update ( first, second ) { | |
for (var key in second) { | |
if (first.hasOwnProperty(key)) { | |
first[ key ] = second[ key ]; | |
} | |
} | |
return first; | |
} |
/** | |
* Enumerate all methods in a Javascript object (ES5) | |
* @source http://stackoverflow.com/a/2946616 | |
*/ | |
function getAllMethods(object) { | |
return Object.getOwnPropertyNames(object).filter(function(property) { | |
return typeof object[property] == 'function'; | |
}); | |
} |
#!/bin/bash | |
# ============================================================================= | |
# gitignore.io.sh - simple gitignore.io shell wrapper | |
# https://gist.github.com/martinec/ba3012e1a5abf954f977 | |
# ============================================================================= | |
# Copyright (C) 2014 | |
# | |
# This program is free software; you can redistribute it and/or | |
# modify it under the terms of the GNU Lesser General Public | |
# License as published by the Free Software Foundation; either |
# Batch convert a favicon.svg file in a favicon.ico image (different sizes) | |
# This makefile uses inkscape, convert, optipng and advpng command line tools | |
# type make favicon | |
# Cristian Martinez | |
all: icons | |
# Input SVG images without extensions | |
IMAGES = favicon | |
# Output PNG sizes |
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
/*!40101 SET NAMES utf8 */; | |
-- -------------------------------------------------------- | |
-- |
I hereby claim:
To claim this, I am signing this object:
"disabledPackages": [ | |
"activity-list", | |
"composer-mail-merge", | |
"composer-scheduler", | |
"link-tracking", | |
"open-tracking", | |
"send-later", | |
"send-reminders", | |
"thread-sharing" | |
], |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Synchronize between LaTeX and PDF with Geany and Zathura | |
# This plugin add both a new menu item under the Tools menu | |
# and a keyboard shortcut to launch Zathura using its SyncTeX | |
# forward search feature. A simpler approach would be to add | |
# a custom build command (Build > Set Build Commands), however | |
# this lack of a key binding and current column information | |
# To make this plugin work, you must: | |
# compile (make WITH_SYNCTEX=1) and install zathura from https://git.pwmt.org/pwmt/zathura.git |
Go through the new issues and try to reproduce them. It’s important to get additional info, logs, and test if an issue occurs on different platforms. That helps us identify the source of the problem.