This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Applifting; | |
using Android.Content; | |
using Xamarin.Forms.Labs.Services; | |
namespace Applifting.Droid | |
{ | |
public interface IDroidContextProvider{ | |
Context Context {get;} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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++){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.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'); |