Skip to content

Instantly share code, notes, and snippets.

View ccronca's full-sized avatar

Camilo Cota ccronca

  • Red Hat
  • Droga Mleczna
View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Feeder - RSS Feed Reader</title>
</head>
<body>
<outline text="Around the Code" title="Around the Code" type="rss" xmlUrl="https://aroundthecode.wordpress.com/feed/" htmlUrl="https://aroundthecode.wordpress.com/feed/" rssfr-favicon="http://s2.googleusercontent.com/s2/favicons?domain=wordpress.com"/>
<outline text="Beatrix Blog" title="Beatrix Blog" type="rss" xmlUrl="https://wiki.corp-apps.com/spaces/createrssfeed.action?types=blogpost&amp;spaces=KIDDO&amp;sort=modified&amp;title=Beatrix+Blog&amp;maxResults=15&amp;amp;publicFeed=false&amp;amp;os_authType=basic&amp;amp;rssType=rss2" htmlUrl="https://wiki.corp-apps.com" rssfr-favicon="https://wiki.corp-apps.com/s/en_GB/5989/aaad9997c145089d7f38b9dea0ac5b91728ef55a.55/_/favicon.ico"/>
<outline text="Blog - ddiguru.com" title="Blog - ddiguru.com" type="rss" xmlUrl="http://ddiguru.com/blog?format=feed&amp;type=rss" htmlUrl="http://ddiguru.com/blog" rssfr-favi
@ccronca
ccronca / tmux.md
Created August 15, 2018 17:16 — forked from andreyvit/tmux.md
tmux cheatsheet

tmux cheat sheet

(C-x means ctrl+x, M-x means alt+x)

Prefix key

The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:

remap prefix to Control + a

tmux cheatsheet

As configured in my dotfiles.

start new:

tmux

start new with session name:

app.directive('infiniteScroll', [
'$rootScope', '$window', '$timeout', function($rootScope, $window, $timeout) {
return {
link: function(scope, elem, attrs) {
var checkWhenEnabled, handler, scrollDistance, scrollEnabled;
$window = angular.element($window);
elem.css('overflow-y', 'scroll');
elem.css('overflow-x', 'hidden');
elem.css('height', 'inherit');
scrollDistance = 0;
/**
* Example of using an angular provider to build an api service.
* @author Jeremy Elbourn (jelbourn@google.com)
*/
/** Namespace for the application. */
var app = {};
/******************************************************************************/