Skip to content

Instantly share code, notes, and snippets.

View Krule's full-sized avatar
🍐
Fruity

Armin Pašalić Krule

🍐
Fruity
View GitHub Profile
@Krule
Krule / pdf_to_swf.rb
Created January 24, 2011 09:31
Paperclip pdf2swf processor utilizing swftools
module Paperclip
class PdfToSwf < Processor
attr_accessor :params
def initialize file, options = {}, attachment = nil
super
@file = file
@params = options[:params]
@current_format = File.extname(@file.path)
@Krule
Krule / application.js
Created January 20, 2011 15:05
Example for Marko
/*
=form_for :sendemail, :url => :sendemail_index,:remote => true, :html => { :"data-name" => "Contact ASC Admin", :"data-cancelable" => true }
*/
var Asc = {
center: $(window).width() / 2,
_init: function(){
Asc.notice_fade()
// Based on http://snipt.net/boriscy/datetime-jquery-formtastic/
$.tools.dateinput.localize("ja", {
months: '1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月',
shortMonths: '1月,2月,3月,4月,5月,6月,7月,8月,9月,10月,11月,12月',
days: '日曜日,月曜日,火曜日,水曜日,木曜日,金曜日,土曜日',
shortDays: '日,月,火,水,木,金,土'
});
$.tools.dateinput.conf.format = 'yyyy-mm-dd';
@Krule
Krule / cv.tex
Last active June 28, 2022 10:22
My expanded CV
\documentclass[letterpaper]{article}
\usepackage{color,hyperref,geometry,subfigure,fancyhdr,sectsty,pstricks}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[sc,osf]{mathpazo}
\usepackage{adforn}
\usepackage{soul}
\usepackage{setspace}
\usepackage{scrextend}
@Krule
Krule / radio-sarajevo.html
Created September 26, 2010 02:26
HTML5 Radio Sarajevo
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Radio</title>
</head>
<body>
<audio src="http://malla.softnet.si:8000/" controls preload> </audio>
</body>
</html>
@Krule
Krule / articles_controller.rb
Created July 16, 2010 13:13
Pluralize using Rails 3 in Slovenian language
class ApartmentsController < ApplicationController
def index
@apartments = Apartment.all
end
end