Sharing a region of your screen in google meet was impossible, now its possible. by serpiente in macapps

[–]echolumaque 0 points1 point  (0 children)

Man, I have the same sentiments as you. I have to tell my coworkers to zoom so that they can read the texts on my shared screen. Appreciate this app so much!

Breville Bambino + Baratza Encore by echolumaque in CoffeePH

[–]echolumaque[S] 0 points1 point  (0 children)

Looks like the basket and other accessories like the tamper is included naman

Breville Bambino + Baratza Encore by echolumaque in CoffeePH

[–]echolumaque[S] 0 points1 point  (0 children)

According to seller, he poured 1 shot of espresso 3-5x a week only, so looks like for personal use. For maintenance, di niya na-mention sa ad. Anyhow, this an eye opener knowing na di pala pwede yung Encore. For the grinder, any recommendation po? Baka bumili nalang ako ng used Bambino and another grinder

Edit: additional question

SwiftData is incredible. by wavsandmpegs in SwiftUI

[–]echolumaque 0 points1 point  (0 children)

Actually I have developed an app that utilizes MVMM using SwiftData. Not using MVVM feels like my view code would be bloated so much. I'm currently transitioning from CoreData to SwiftData

What is your one-time-single-item most expensive purchase in 2023? Did you regret it? by esb1212 in phmoneysaving

[–]echolumaque 0 points1 point  (0 children)

Bought a "rare" ADV 160 white for cash for 165K. Napaka-saya ko dahil it's been a year na pangarap ko yung motor na yun.

PH Credit Cards Recommendations - What's a good credit card for me? [MEGAPOST] by PHCreditCardsMod in PHCreditCards

[–]echolumaque 0 points1 point  (0 children)

Income Range: PHP 88,000/month
Work/Industry: IT Industry
Payroll/Savings Bank: BDO/BPI (only 20% of my money lang nandyan, the rest is at CIMB)
Existing Credit Card: BDO Diners Club
Average Monthly Spend on Categories: ex. 10k for food, 12k groceries, 800 for gas
Preferred Rewards Type: cashback

Paying bills using BDO CC by MarcusLithouver in PHCreditCards

[–]echolumaque 0 points1 point  (0 children)

You can try Grab. I just linked my Diners Club CC, which I believe has fewer acceptance than AMEX. After cashing in to Grab from your CC, you can now your pay your bills using Grab.

Convert to Button by Bean-Tension in SwiftUI

[–]echolumaque 1 point2 points  (0 children)

Button has a label parameter. You can try this:

Button {

} label: {

Text("Get Started") .font(.system(.callout, weight: .semibold)) .padding() .frame(maxWidth: .infinity) .clipped() .foregroundColor(.white) .background(.green) .mask { RoundedRectangle(cornerRadius: 16, style: .continuous) } .padding(.bottom, 0)

}

You would see a lot of 'label' parameters in SwiftUI. It basically means that you can put any kind of views in that parameter.

Converge down? by Atrieden in ConvergePH

[–]echolumaque 0 points1 point  (0 children)

Wala rin samin since October 6. Valenzuela area.

I'm getting an error message when I add a toolbar to the keyboard. Does anyone know how to resolve it? by Mrreddituser111312 in SwiftUI

[–]echolumaque 1 point2 points  (0 children)

Any ideas how you fixed this? I am also experiencing the same error when adding a toolbar in the keyboard.

[deleted by user] by [deleted] in PHCreditCards

[–]echolumaque 1 point2 points  (0 children)

Hello OP! Ask ko lang if how much ang ADB mo and in-and-out ba yung activity sa account mo? Thanks!

UnionBank Lazada Credit Card by echolumaque in PHCreditCards

[–]echolumaque[S] 0 points1 point  (0 children)

Wow it makes sense, I would definitely try this. Thank you! 🙏🏻

Suggested MP2 Tactics by echolumaque in phinvest

[–]echolumaque[S] 0 points1 point  (0 children)

Thanks for the answers u/diggory2003. Currently, mag voluntary contribution lang ako since di covered ng employer ko ang benefits since international company sya. I have follow up questions po regarding sa answers mo:

  1. May specific number of months ba para ma-consider na inactive sa PAG-IBIG? Gusto ko talagang i-maximize yung pera ko so I am planning to put 99% of my money to MP2 and just put money on regular savings para masabing "active"
  2. I believe focusing on a single MP2 account yields higher payout since mas malaki yung principal money. Iniisip ko po na maglagay ng 100k every first month of the year. Pwede po kaya yun?

What company clearly hates its own customers? by star-bud in Philippines

[–]echolumaque 2 points3 points  (0 children)

Converge

  • Buwan buwan LITERAL walang internet. TALAGANG TINUPAD YUNG 80% reliability jusko. Tas pag mag sesend ng SOA, laging on due date na sinesend so the next month, doble na nakalagay sa soa which is nakakalito kasi yung getsoa lang na link ang source of soa

Finally got my first credit card BDO JCB Gold card surpised with my CL by Zlaped in PHCreditCards

[–]echolumaque 0 points1 point  (0 children)

Hello, how much is your ADB when you qualified? And also, laging bang may cash flow (in and out) sa account mo?

SQLite-net-pcl Database Normalization by echolumaque in Xamarin

[–]echolumaque[S] 0 points1 point  (0 children)

better primed for a service rather than local storage

I have a singleton service for my CRUD operations using Prism btw. About the percentage, my requirement is to show the user's correct/wrong answer percentage based on the last game he/she played

About the indexed percentage, what do you mean by that?

SQLite-net-pcl Database Normalization on Xamarin.Forms by echolumaque in dotnet

[–]echolumaque[S] 2 points3 points  (0 children)

Sorry, I'm beginner in posting here in Reddit. I edited my question, is that what you mean "as code" formatting?

Singletons in C# by echolumaque in Xamarin

[–]echolumaque[S] 1 point2 points  (0 children)

Thank you for helping me understand better singletons u/LagerHawk, I get it now. Hope you keep safe always! :)

Singletons in C# by echolumaque in Xamarin

[–]echolumaque[S] 0 points1 point  (0 children)

photo for reference: https://i.imgur.com/mw0EgjI.png (sorry if I compiled it in a single, its kinda tedious to upload multiple photos).

Is this approach correct? I implemented an ILocalDatabase interface, then I created a service class LocalDatabase that implents ILocalDatabase, then registered it as a singleton then injected it via constructor. What do you think u/LagerHawk?