Skip to content

Instantly share code, notes, and snippets.

@tlindig
tlindig / frisky.m3u
Last active January 9, 2024 14:30
frisky radio mp3 streams https://www.friskyradio.com
#EXTM3U
# got from: https://stream.frisky.friskyradio.com/
#EXTINF:-1, FRISKY - The best chillout and downtempo mixes from FRISKY.fm | https://frisky.fm
https://stream.frisky.friskyradio.com/mp3_mid
#EXTINF:-1, DEEP - The best chillout and downtempo mixes from FRISKY.fm | https://frisky.fm
https://stream.deep.friskyradio.com/mp3_mid
#EXTINF:-1, CHILL - The best chillout and downtempo mixes from FRISKY.fm | https://frisky.fm
@tlindig
tlindig / send-as-email.nemo_action
Created January 12, 2021 23:18
Nemo Action (file manager) context menu extension to add "Send as Email" via thunderbird with support for mulitple files.
[Nemo Action]
Name=Send as Email ...
Comment=Attach selected files to Email
Exec=thunderbird -compose "attachment='%F'"
Icon-Name=thunderbird
Selection=notnone
Extensions=nodirs;
Separator=,
EscapeSpaces=false
@tlindig
tlindig / index.html
Created May 4, 2020 22:08
Button slide Background animation // source https://jsbin.com/zetaxuq
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Button slide Background animation</title>
<style id="jsbin-css">
.button {
padding: 20px;
border: 1px solid currentcolor;
@tlindig
tlindig / wait2.html
Created January 16, 2017 07:47
variation of wait animation (3 segments)
<html>
<style>
.wait {
overflow: hidden;
height: 150px;
width:150px;
}
.circular {
animation: 1.4s linear 0s normal none infinite running rotate;
@tlindig
tlindig / wait.html
Created January 16, 2017 07:45
material wait animation
<html>
<style>
.box {
overflow: hidden;
height: 150px;
width:150px;
}
.circular {
animation: 2s linear 0s normal none infinite running rotate;
@tlindig
tlindig / AtomPackages.md
Last active November 16, 2016 13:56
List of usefull extension for SourceEditor Atom
@tlindig
tlindig / colorConversion.js
Last active November 21, 2016 16:24
Functions to convert color values. rgb/rgba, hex and hsv/hsva programmatic. Color keyword, hsl/hsla and rgb with percentage values with help of browser.
/*!
* color conversion
*
* Copyright (c) 2014 Tobias Lindig, Germany
* http://tlindig.de
* License: MIT
*/
var __rgx_strictRgbX = /^(?:rgb|rgba)\s*\(\s*(\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})(?:,\s*([0|1]|0?\.\d+))?\s*\)/i; // don't accept % values
var __rgx_isHex = /^#/;
var __rgx_hex3 = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
@tlindig
tlindig / Gruntfile.js
Last active August 29, 2015 13:56
Example Gruntfile.js with template for banner and some other usfull common configuration.
/*global module:false*/
module.exports = function(grunt) {
"use strict"; //enable ECMAScript 5 Strict Mode
// overwrite platform specific setting get always unix like line feed char
grunt.util.linefeed = '\n';
// Project configuration.
grunt.initConfig({
// global properties
@tlindig
tlindig / .jshintrc
Last active August 29, 2015 13:56
This is a list of my configuration options for JSHint (www.jshint.com/docs/options/)
{
"curly" : true,
"eqeqeq" : true,
"freeze" : true,
"immed" : true,
"latedef" : "nofunc",
"newcap" : true,
"noarg" : true,
"nonew" : true,
"undef" : true,
@tlindig
tlindig / TLindig.tmTheme
Created November 25, 2013 22:38
Color Scheme for Sublim Text 2, light background.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>TLindig</string>
<key>author</key>
<string>Tobias Lindig</string>
<key>settings</key>
<array>