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
/* eslint-disable object-curly-newline */ | |
import React from 'react'; | |
import { Image, StyleSheet, TouchableOpacity } from 'react-native'; | |
import PropTypes from 'prop-types'; | |
import { Block, Icon, Text } from './'; | |
import GalioTheme, { withGalio } from './theme'; | |
function Card({ | |
avatar, |
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 members = Umbraco.TypedContent(9999).Children("membersList") | |
.Where(x => x.IsVisible()).OrderBy("order"); | |
int chunkSize = 3; | |
var memberGroups = members.Select((x, i) => new { Index = i, Value = x }) | |
.GroupBy(x => x.Index / chunkSize) | |
.Select(x => x.Select(v => v.Value).ToList()) | |
.ToList(); |
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'); |
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 += '"Name","URL","Username","Password"'; | |
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
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
using System; | |
using Applifting; | |
using Android.Content; | |
using Xamarin.Forms.Labs.Services; | |
namespace Applifting.Droid | |
{ | |
public interface IDroidContextProvider{ | |
Context Context {get;} | |
} |