Skip to content

Instantly share code, notes, and snippets.

View Rinatamu's full-sized avatar
🤩
Happy

Rinatamu (Ryota Nakamura) Rinatamu

🤩
Happy
View GitHub Profile
@Rinatamu
Rinatamu / file0.txt
Last active July 9, 2018 10:17
Sharepointカスタムリスト参照列をPowerAppsで初期値固定させたい時のTips ref: https://qiita.com/rnakamuramartiny/items/37afddb4a0c84bdffdd4
//新規登録モードの場合
If(Form1.Mode = New,
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id: 1, //参照先リストのIDを入力
Value: "福岡本社" //実際のデータ
},
ThisItem.Requirement)
@Rinatamu
Rinatamu / file0.txt
Last active July 9, 2018 09:59
Microsoft FlowでSlackのメッセージ投稿で特定のユーザをメンションする方法 ref: https://qiita.com/rnakamuramartiny/items/9002d7ec9d2e6acd94e3
Hey <@U024BE7LH>, did you see my file?
@Rinatamu
Rinatamu / DoUntil_TimeOut
Created July 26, 2018 09:39
Microsoft FlowのDo Until途中で終わってしまう悪夢を経験したお話 ref: https://qiita.com/rnakamuramartiny/items/3fda5ef93e19c887d75b
PY1
@Rinatamu
Rinatamu / file1.txt
Created July 31, 2018 09:02
SharePointカスタムリストの集計値はflowの検索クエリに使えません! ref: https://qiita.com/rnakamuramartiny/items/f2b93950d97a97af5b01
{
"status": 400,
"message": "種類 'Calculated' のフィールド '通知日' は、クエリのフィルター式には使えません。\r\nclientRequestId: e73bc925-468c-47c1-825f-9beaa3c4ee17\r\nserviceRequestId: 8419809e-404f-6000-3af4-3ad603aaba3f"
}
@Rinatamu
Rinatamu / OnTimerStart
Last active September 2, 2018 08:44
PowerAppsのLocation関数を使ってノンコーディングでスピードメーターっぽいものを作ってみた ref: https://qiita.com/rnakamuramartiny/items/efd8c5bf236834dead42
Set(Var_Speed,(Var_Distance/1000)/3600)
@Rinatamu
Rinatamu / file0.txt
Last active September 6, 2018 04:10
【備忘録】Windows 10 で Elixir をインストールするコマンド ref: https://qiita.com/rnakamuramartiny/items/d89243ab80a42cc1e96d
powershell.exe -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin
choco feature enable -n useFipsCompliantChecksums
cinst elixir
@Rinatamu
Rinatamu / 1P_AllocattionPoint_Param(Text)
Last active September 12, 2018 05:45
PowerAppsでバトルゲームを作ろう!(その1:パラメータ設定画面) ref: https://qiita.com/rnakamuramartiny/items/bffe2aa96e7989949c98
1P_AllocationPoint
@Rinatamu
Rinatamu / 1P_ATK_Botton(OnSelect)
Last active September 12, 2018 00:37
PowerAppsでバトルゲームを作ろう!(その2:戦闘画面) ref: https://qiita.com/rnakamuramartiny/items/ded3774e698a3b4351d8
UpdateContext({'1P_Attack_Ponit':(1P_PWR-2P_DFS)+Round((Rand()*5)*'1P_Rand_Times',0)});
If('1P_Attack_Ponit'>0,UpdateContext({'2P_Current_HP':('2P_Current_HP'-'1P_Attack_Ponit')}),"");
UpdateContext({'1PTurn':false,'2PTurn':true})
@Rinatamu
Rinatamu / file0.txt
Last active September 30, 2018 14:21
【備忘録】Excelから関数型言語マスター3回目:WebにDBデータ表示 で詰まったところまとめ(Mac) ref: https://qiita.com/rnakamuramartiny/items/0df79ae24a78e4d79a7d
brew install elixir
@Rinatamu
Rinatamu / Score_Seg_1(Image)
Created October 10, 2018 03:08
PowerApps GameDev#1 スコア表示フォントをゲームっぽいものにしてみる ref: https://qiita.com/rnakamuramartiny/items/c95a46eec0d189471926
Switch(Value(Mid(Text(score),Len(Text(score)),1)),
0,ScoreFont_0_Black,
1,ScoreFont_1_Black,
2,ScoreFont_2_Black,
3,ScoreFont_3_Black,
4,ScoreFont_4_Black,
5,ScoreFont_5_Black,
6,ScoreFont_6_Black,
7,ScoreFont_7_Black,
8,ScoreFont_8_Black,