Skip to content

Instantly share code, notes, and snippets.

View amay077's full-sized avatar
🏠
Working from home

amay077 amay077

🏠
Working from home
View GitHub Profile
@amay077
amay077 / zdk.fs
Last active March 16, 2016 16:32 — forked from bleis-tift/zdk.fs
ズンドコキヨシ with F#
open System
type Sound = Z | D | K
with
override this.ToString() =
match this with
| Z -> "ズン"
| D -> "ドコ"
| K -> "キ・ヨ・シ!"
@amay077
amay077 / MinLengthToDisableBehaviorSample.workbook
Last active July 5, 2016 12:38 — forked from ytabuchi/Xamarin.Forms.Workbooks
Xamarin Workbooks で、 Entry の文字数8文字以下で Button の IsEnabled を false にする Behavior を作ってみたサンプルです。
uti platform packages
com.xamarin.workbook
iOS
id version
Xamarin.Forms
2.2.0.31

Entry の文字数8文字以下で Button の IsEnabled を false にする Behavior

@amay077
amay077 / <= Forms 2.3.2
Created January 11, 2017 12:43 — forked from jimmgarrido/AdjustResize.md
AdjustResize Workaround for Xamarin.Forms
protected override void OnCreate(Bundle bundle)
{
ToolbarResource = Resource.Layout.toolbar;
TabLayoutResource = Resource.Layout.tabs;
base.OnCreate(bundle);
Window.SetSoftInputMode(SoftInput.AdjustResize);
if (Build.VERSION.SdkInt >= BuildVersionCodes.Lollipop)
{
@amay077
amay077 / whitelist.md
Last active January 22, 2018 11:25 — forked from okohs/whitelist.md
20180122_定時前に帰宅できた企業

はじめに

書き方

該当する各社の対応欄に企業名を書いてください。備考があれば適宜カッコ書きしてください。

目的

  • 定時前に帰宅させてくれるホワイトな会社を気軽に作りたい
  • 定時前に帰宅させてくれるホワイトな会社がホワイトアピールできる場があれば良いな

@amay077
amay077 / AndroidManifest.xml
Last active January 16, 2019 11:04 — forked from koral--/ImageCaptureHelper.java
Helper for sending ACTION_IMAGE_CAPTURE intent and retrieve its results. Handles all low level operations
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="your.awesome.app">
<application>
<!-- need provider tag in application tag -->
<provider
android:name="android.support.v4.content.FileProvider"