Skip to content

Instantly share code, notes, and snippets.

View walalm's full-sized avatar
🎯
Focusing

Waldy Almonte walalm

🎯
Focusing
View GitHub Profile
@walalm
walalm / gist:a09f486b4203288be8e8a0fb46c80ce7
Created July 22, 2016 13:36 — forked from spadgos/gist:4697069
Get your SoundCloud likes as a .pls file (Paste this in the console on soundcloud.com)
$.getJSON('e1/me/track_likes.json?limit=200').done(function (likes) {
var list = likes.map(function (like, i) {
i++;
var sound = like.track;
return [
'File' + i + '=' + sound.stream_url + "?client_id=" + require('config').get('client_id'),
'Title' + i + '=' + sound.title,
'Length' + i + '=' + Math.round(sound.duration / 1000)
].join('\n');
@walalm
walalm / ExportChromePasswords.js
Last active June 30, 2016 13:52 — forked from beaverb1ll/ExportChromePasswords.js
ExportChromePasswords.js
var decryptedRow="";
var pm = PasswordManager.getInstance();
var model = pm.savedPasswordsList_.dataModel;
var pl = pm.savedPasswordsList_;
for(i=0;i<model.length;i++){
PasswordManager.requestShowPassword(i);
};
setTimeout(function(){
decryptedRow += '"hostname","username","password","formSubmitURL","httpRealm","usernameField","passwordField"';
for(i=0; i<model.length; i++){
@walalm
walalm / HUDProviderDroid.cs
Created June 17, 2016 03:04 — forked from Vratislav/HUDProviderDroid.cs
HUD Bindings for Xamarin Forms projects
using System;
using Applifting;
using Android.Content;
using Xamarin.Forms.Labs.Services;
namespace Applifting.Droid
{
public interface IDroidContextProvider{
Context Context {get;}
}