Skip to content

Instantly share code, notes, and snippets.

View kant's full-sized avatar
🎹
🎼🎶

Darío Hereñú kant

🎹
🎼🎶
  • Planet Earth...
  • X @kant
View GitHub Profile
* Launch Firefox
* Go to desired URL (mostly Vimeo links)
* Point it out the frame that is wrapped with the general html file
* Right click and go to "This frame" and then select "Show only this frame"
* It will open a new frame containing the Vimeo Player with the video
This project uses DCO. Be sure to sign off your commits using the -s flag or adding Signed-off-By: Name<Email> in the commit message.
Example
git commit -s -m 'Add new feature'
@kant
kant / logic_installers
Created January 19, 2019 18:55
Logic installer (packages)
for i in *.pkg; do sudo installer -pkg $i -target /; done
@kant
kant / minima.html
Created March 18, 2012 12:32 — forked from adrusi/minima.html
tumblr theme
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lt IE 7]>
<script>
@kant
kant / custom_404_for_tumblr.js.htm
Created March 18, 2012 12:19 — forked from karteek/custom_404_for_tumblr.js.htm
A way to enable custom 404 for Tumblr. Well, it 'kinda' works
<script type="text/javascript">
/* Works for me */
var text_posts = document.getElementsByClassName("regular");
var text_404 = "The URL you requested could not be found.";
var title_404 = "Not Found";
if(text_posts.length == 1){
var bodyNode = text_posts[0].lastChild;
if(bodyNode.previousSibling.textContent == text_404) {
// titleNode.innerHTML = "<a href='/'>Not Found</a>";
var blog_loc = "http://" + document.domain + "/";
@kant
kant / meleyal.html
Created March 17, 2012 19:59 — forked from meleyal/meleyal.html
meleyal.com tumblr theme
<!DOCTYPE html>
<html lang="en">
<head>
<!--
meleyal
http://meleyal.com
https://gist.github.com/810100
@kant
kant / compiled-theme.html
Created March 17, 2012 17:25 — forked from millisami/compiled-theme.html
Fumblr with Tumblr theme file
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6 lte-ie8"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7 lte-ie8"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8 lte-ie8"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>Nepal on Rails</title>
@kant
kant / Tumblr Theme
Created March 17, 2012 02:50 — forked from Spaceghost/Tumblr Theme
This is the tumblr theme I wrote for http://Johnneylee.tumblr.com/
<!-- Author: Johnneylee Jack Rollins; Email: Johnneylee.Rollins@Gmail.com; -->
<html>
<head>
<title>{Title}{block:PostSummary} | {PostSummary}{/block:PostSummary}</title>
<link rel="shortcut icon" href="{Favicon}">
<link rel="alternate" type="application/rss+xml" href="/rss">
<link rel="stylesheet" href="http://hr1v.com/remote/black-tie/sIFR-screen.css" type="text/css" media="screen" />
<link rel="stylesheet" href="http://hr1v.com/remote/black-tie/sIFR-print.css" type="text/css" media="print" />
@kant
kant / bootstraped-tumblr-theme.html
Created March 17, 2012 02:27 — forked from atiw003/bootstraped-tumblr-theme.html
bootstrap tumblr theme for quickredthought.tumblr.com
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{Title}</title>
<link rel='icon' href='{Favicon}'>
<link rel='shortcut icon' href='{Favicon}'>
<link rel='alternate' type='application/rss+xml' href='{RSS}'>
<meta name='description' content='{MetaDescription}'>
<meta name='color:Link' content='#6699cc'>
@kant
kant / makemyvideobigger.js
Created March 17, 2012 01:46 — forked from OscarGodson/makemyvideobigger.js
Tumblr + Vimeo Mod To Make Videos Larger Than 500
/**
* Makes Vimeo videos on Tumblr larger than the max of 500px that Tumblr forces
* Change the 650 to whatever you want, but do NOT add px or %
* The height, by default, is set to auto which will calculate the 16:9 video size.
* You can set the height to a static number as well if you want.
* If you have any questions feel free to ask me: @oscargodson | oscargodson.com
*/
(function(){
var iframes = document.body.getElementsByTagName('iframe')
, newVimeoWidth = 650