Skip to content

Instantly share code, notes, and snippets.

@dalian-spacekey
dalian-spacekey / ByteArrayToImageSourceConverter.cs
Last active August 30, 2019 00:55
ByteArrayToImageSourceConverter
public class ByteArrayToImageSourceConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) =>
value == null ?
null :
ImageSource.FromStream(() => new MemoryStream((byte[])value));
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
@dalian-spacekey
dalian-spacekey / UseAmazonS3.cs
Created February 13, 2018 02:24
Use AmazonS3(.NET/C#)
using System.IO;
using System.Threading.Tasks;
using Amazon;
using Amazon.S3;
using Amazon.S3.Model;
namespace UseAmazonS3
{
class Program
{
@dalian-spacekey
dalian-spacekey / ToggleIme.json
Created October 11, 2017 12:54
Karabiner-Elementsで1キーでかなと英数をトグルするサンプル
{
"title": "For Japanese (日本語環境向けの設定)",
"rules": [
{
"description": "RightOption to ToggleIME",
"manipulators": [
{
"type": "basic",
"conditions": [
{