Open in app

Sign In

Write

Sign In

洪健翔 Hung, Chien-hsiang
洪健翔 Hung, Chien-hsiang

50 Followers

Home

About

2 days ago

Power Automate Update Sharepoint List Item Choice Column and Difference Between Choices and Distinct

Update Sharepoint List Item Choice Column Power Automate — Microsoft Forms & SharePoint choice field (multi-select) updates You can update the choice list item by this: Easy read on Power Automate Update Sharepoint List Item Choice Column and Difference Between Choices and Distinct — Hung, Chien-Hsiang | Blog (chienhsiang-hung.github.io). TL;DW Make sure you can generate the…

Sharepoint

3 min read

Power Automate Update Sharepoint List Item Choice Column and Difference Between Choices and…
Power Automate Update Sharepoint List Item Choice Column and Difference Between Choices and…
Sharepoint

3 min read


Mar 17

Power Automate OpenAI connector and How to Standardize the ChatGPT Response to JSON Format

Easy read full article: Power Automate OpenAI connector and How to Standardize the ChatGPT Response to JSON Format — Hung, Chien-Hsiang | Blog (chienhsiang-hung.github.io) OpenAI Connector OpenAI (Independent Publisher) — Connectors | Microsoft Learn The OpenAI IP Connector is a tool that allows you to use GPT-3 to complete your prompts in…

Power Automate

5 min read

Power Automate OpenAI connector and How to Standardize the ChatGPT Response to JSON Format
Power Automate OpenAI connector and How to Standardize the ChatGPT Response to JSON Format
Power Automate

5 min read


Mar 9

Can’t display data after addcolumns() to a datasource

Full Article: Can’t display data after addcolumns() to a datasource — Hung, Chien-Hsiang 洪健翔 | Blog (chienhsiang-hung.github.io) Problem Re: Can’t display data after addcolumns() to a dat… — Power Platform Community (microsoft.com) Here is the table: With( { isnotteamhead: First(colSession).CurrLevel <>…

Powerapps

3 min read

Can’t display data after addcolumns() to a datasource
Can’t display data after addcolumns() to a datasource
Powerapps

3 min read


Mar 9

PowerApps `not in`

“not operator along with the custom named condition operators is not allowed” Operator <> or NOT In. In and Exactin For example in an Items of Gallery : With( { userlevel_isnot_banker: First(colSession).UserLevel <> "Banker", isnotteamhead: First(colSession).CurrLevel <> "RO", isnotbanker: First(colSession).CurrLevel <> "Banker", ro: First(colSession).CurrTeam, banker: First(colSession).CurrBanker, }, Filter( WAM_Trade_Summarizes, FinalDate_yyyymm in ComboBoxTradeFinalDate.SelectedItems, (isnotteamhead || RO_gb=ro), (isnotbanker || GroupBanker_gb=banker), (userlevel_isnot_banker || ( Statement_prod_type_gb <> "Extra Rate" && Statement_prod_type_gb <> "Management fee" && Statement_prod_type_gb <> "Error" )) ) )

Powerapps

1 min read

PowerApps `not in`
PowerApps `not in`
Powerapps

1 min read


Mar 9

2022/2023 軟體工程師 面試分享整理

時不時練習面試一下能夠了解目前產業需求、自己有沒有符合市場需求 分享自己這兩年練習面試的一些經驗供大家參考 完整版請上2022/2023 軟體工程師 面試分享整理 — Hung, Chien-Hsiang 洪健翔 | Blog (chienhsiang-hung.github.io) Interviews Fortune Electric — Software Engineer — TW Software Engineer | 華城電機股份有限公司 For …

軟體工程師

17 min read

2022/2023 軟體工程師 面試分享整理
2022/2023 軟體工程師 面試分享整理
軟體工程師

17 min read


Feb 24

[PowerApps] Display Dates in a Combo Box, Distinct not Showing all Records, Filter on Date won’t Work

Display Dates in a Combo Box — Getting value but not “yyyy-mm-dd” like format for dates records in a combo box? Change you items with ForAll or AddColumns: ForAll(AvailableDates, { DateValue:ViewingDate, DateDisplay:Title & " - " & Text(ViewingDate, "dd mmm yy") } ) Then it will display correctly: But how to show a DefaultItems? X: [values] O…

Powerapps

1 min read

[PowerApps] Display Dates in a Combo Box, Distinct not Showing all Records, Filter on Date won’t…
[PowerApps] Display Dates in a Combo Box, Distinct not Showing all Records, Filter on Date won’t…
Powerapps

1 min read


Feb 15

5 Basic Design Patterns You Need to Know (1/2): Singleton, Factory, Observer

Better Read On 5 Basic Design Patterns You Need to Know (1/2): Singleton, Factory, Observer — Hung, Chien-Hsiang 洪健翔 | Blog (chienhsiang-hung.github.io) Brief Singleton pattern: This pattern ensures that only one instance of a class is created and provides a global point of access to that instance. Factory pattern: This pattern…

Design Patterns

5 min read

5 Basic Design Patterns You Need to Know (1/2): Singleton, Factory, Observer
5 Basic Design Patterns You Need to Know (1/2): Singleton, Factory, Observer
Design Patterns

5 min read


Feb 6

從點擊URL到看到網頁 中間發生甚麼事

從點擊到看到網頁 從搜尋引擎點擊網頁後,發生什麼事? 1. 瀏覽器向DNS伺服器發出請求,DNS返回目標網頁的IP位址 (以Domain URL交換) Windows可透過開啟cmd後輸入例如ping google.com來取得其IPv6

DNS

4 min read

從點擊URL到看到網頁 中間發生甚麼事
從點擊URL到看到網頁 中間發生甚麼事
DNS

4 min read


Jan 19

Median of Two Sorted Arrays in Python (No Slicing) Real O(log(min(m, n))), LeetCode Hard

Median of Two Sorted Arrays Full article here: Median of Two Sorted Arrays in Python with Binary Search (No Slicing) Real O(log(min(m, n))) — Hung, Chien-Hsiang | Blog (chienhsiang-hung.github.io) Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays. The overall run time complexity…

Binary Search

2 min read

Median of Two Sorted Arrays in Python (No Slicing) Real O(log(min(m, n))), LeetCode Hard
Median of Two Sorted Arrays in Python (No Slicing) Real O(log(min(m, n))), LeetCode Hard
Binary Search

2 min read


Jan 15

LeetCode Weekly Contest Medium (Sliding Window) 2537. Count the Number of Good Subarrays

Easy read on LeetCode Weekly Contest Medium (Sliding Window) 2537. Count the Number of Good Subarrays — Hung, Chien-Hsiang | Blog (chienhsiang-hung.github.io) Count the Number of Good Subarrays Given an integer array nums and an integer k, return the number of good subarrays of nums. A subarray arr is good if it there are at least…

Python

2 min read

LeetCode Weekly Contest Medium (Sliding Window) 2537. Count the Number of Good Subarrays
LeetCode Weekly Contest Medium (Sliding Window) 2537. Count the Number of Good Subarrays
Python

2 min read

洪健翔 Hung, Chien-hsiang

洪健翔 Hung, Chien-hsiang

50 Followers

Visit my blog for more https://chienhsiang-hung.github.io/blog/

Following
  • The PyCoach

    The PyCoach

  • Josep Ferrer

    Josep Ferrer

  • Jamie Li

    Jamie Li

  • Stan Garfield

    Stan Garfield

  • yxz

    yxz

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech