Skip to content

Instantly share code, notes, and snippets.

<?xml version="1.0" encoding="utf-8" standalone="no"?>
<opml version="1.0">
<head>
<title>Pocket Casts Feeds</title>
</head>
<body>
<outline text="feeds">
<outline xmlUrl="http://feeds.feedburner.com/braincastmp3" type="rss" text="Braincast" />
<outline xmlUrl="https://hipsters.tech/feed/podcast/" type="rss" text="Hipsters Ponto Tech" />
<outline xmlUrl="Http://feeds.feedburner.com/frangofinopodcast" type="rss" text="Frango Fino" />
@arya-oss
arya-oss / INSTALL.md
Last active February 12, 2025 15:41
Ubuntu 16.04 Developer Tools installation

Ubuntu 16.04 Developer Tools Installation

First things first !

sudo apt update
sudo apt upgrade

Standard Developer Tools

sudo apt-get install build-essential git
@FokkeZB
FokkeZB / README.md
Created September 20, 2013 09:38
URL schemes for iOS and Android (2/2)
@EpokK
EpokK / ngEnter.js
Last active September 26, 2025 13:35
ngEnter directive if you can use submit form(https://twitter.com/ririlepanda)
app.directive('ngEnter', function() {
return function(scope, element, attrs) {
element.bind("keydown keypress", function(event) {
if(event.which === 13) {
scope.$apply(function(){
scope.$eval(attrs.ngEnter);
});
event.preventDefault();
}
@vishalpawale
vishalpawale / FbLoginActivity
Last active February 22, 2019 19:26
Skeleton for login into Facebook
package com.sudosaints.android;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Intent;