跳到主要內容

傳說中「崙背の名產」

今天有位同事小孩滿月
請大家吃了慣例會出現的「太子油飯」
以及原本以為是奕順軒的蛋捲結果不是的

「焦糖布蕾堡」

吃乾抹清後....
赫然盒上紅底白字的印了:傳說中「崙背の名產」字樣
但是身為土生土長崙背人的我居然完全沒見過
甚至連千巧谷這家店都沒聽過…

牛奶餡是用崙背酪農區100%優質鮮奶製成
軟法上頭挖洞加入軟綿綿焦糖布蕾的做法倒是很常見
外表看起來也挺可口的
至於吃起來麻....





實際買來吃看看就知道嚕~~

留言

這個網誌中的熱門文章

刪除Office 2016金鑰的Command

前往安裝目錄 cd C:\Program Files (x86)\Microsoft Office\Office16 查詢已安裝金鑰 (會顯示金鑰末5碼) cscript OSPP.VBS /dstatus 刪除已安裝金鑰 ( XXXXX 為末5碼) cscript ospp.vbs /unpkey: XXXXX 重新啟動Office任一產品 or  安裝金鑰 cscript ospp.vbs /inpkey:XXXXX-XXXXX-XXXXX-XXXXX-XXXXX 搞定 為什麼要特地記錄2016的刪除方法呢? 因為在  程式和功能  裡, 變更 無法更改金鑰

.NET WebAPI 2 Custom Response Message

Imports System.Net Imports System.Web.Http Imports System.Net.Http Imports Newtonsoft.Json Imports System.Web.Http.Filters ''' <summary> ''' 登入驗證錯誤自訂訊息 ''' </summary> ''' <remarks> </remarks> Public Class TestAuthorizeAttribute Inherits AuthorizeAttribute Protected Overrides Sub HandleUnauthorizedRequest(actionContext As Controllers.HttpActionContext) MyBase.HandleUnauthorizedRequest(actionContext) actionContext.Response.Content = New StringContent(JsonConvert.SerializeObject(New Dictionary(Of String, String) From {{"result", "-1"}}, Formatting.Indented)) Select Case actionContext.Response.StatusCode Case 401 Dim dicError As Dictionary(Of String, String) = New Dictionary(Of String, String) From { {"result", "-1"}, {"msg", "Login F...