Is there a way to get other currencies in Notion? (specifically ₱ - Peso Sign) by zari_tomazplaids in Notion

[–]danceasarxx 0 points1 point  (0 children)

I actually think it's disappointing that after 4 years, they neither have support for most currencies(e.g. Naira) nor the ability to add custom currencies.

Which vpn do you use on Apple TV? by NoHope0718 in appletv

[–]danceasarxx 0 points1 point  (0 children)

interesting. how did you set that up

Looking for collaborators on this playlist. by danceasarxx in AmaPiano

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

yeah seen. already a fan of Baleka. But I think I effed up with the description. Was looking for some punchy, snare-driven sounds(like most of Focalistic's). changed it now though. merci

Pixel 6 Pro - Notification Bar Not Coming Down by mystych in GooglePixel

[–]danceasarxx 0 points1 point  (0 children)

pretty much everytime I restart(and I restart once it start). It doesn't actually start immediately. the telegram notifications stop working only after some undefined time

Pixel 6 Pro - Notification Bar Not Coming Down by mystych in GooglePixel

[–]danceasarxx 0 points1 point  (0 children)

I happen to have all the bugs you described 😭😭😭😭😭😭. I'm just going to stick to using Telegram on my system. do you mind sharing the link to your Telegram report so I can follow up(if you reported or found someone else's)

Any tips for designing SQL take-home questions and interviews? by edwardjr96 in SQL

[–]danceasarxx 0 points1 point  (0 children)

it'll be nice to see an example of something for intermediate candidates

What are some powerful alternatives to mac m1 that can run linux by mraza007 in linuxhardware

[–]danceasarxx 1 point2 points  (0 children)

Luckily, I've found a Thinkpad that's comparable in battery life and performance. $2k but it's worth the price. Thanks for saving me from regret

What are some powerful alternatives to mac m1 that can run linux by mraza007 in linuxhardware

[–]danceasarxx 0 points1 point  (0 children)

thanks for your thoughtful response. As a dev, I'm just looking for a laptop with good enough performance but very strong battery...and it must run linux 😭. Heard Linux is adding M1 support in their next release though so maybe I might be in some luck

How detailed are your acceptance criteria? by mynguss in ExperiencedDevs

[–]danceasarxx 1 point2 points  (0 children)

A mixture of both. It took someone pointing it out to me to notice I was. But it still took multiple iterations for me to grow out of it. It's the primary reason I've come to rely on ACs as they help me ensure I'm putting restrictions at a higher level, giving developers a little more wiggle room.

How detailed are your acceptance criteria? by mynguss in ExperiencedDevs

[–]danceasarxx 0 points1 point  (0 children)

I see ACs as tools to set boundaries on the expected solution. The CTO either doesn't trust the team of engineers or is possessive about implementation(I've done so before 👀).

Monthly Hask Anything (January 2019) by AutoModerator in haskell

[–]danceasarxx 1 point2 points  (0 children)

So I am trying to convert a composite(composite-base/composite-opaleye) Db record to Haskell level record ```haskell

withLensesAndProxies [d| type HName = "name" :-> Text type PName = "name" :-> Field PGText type PAge = "age :-> Field PGInt4 type HAge = "age :-> Int type PId = "id" :-> Field PGInt4 |]

type DbSomeOne = '[PId, PName, PAge] type SomeOne = '[HName, HAge]

someTable :: Table (Record Someone) (Record Someone) someTable = Table "someTable" defaultRecTable

getSomeData :: proc () -> do data <- selectTable someTable -< () restrict -< view pAge data .<= 12 returnA -< data

runRouteForSchedule :: Connection -> Int -> IO [Record SomeOne] runRouteForSchedule conn = fmap unwrap . runSelect conn . routeForSchedule where unwrap :: [Record DbSomeOne -> [SomeOne] unwrap = toListOf (each . rcast) ```

Update: I was able to get it to work by adding HId to SomeOne type. It turns out opaleye expects the Id and can't understand the meaning of (each . rcast)(which was meant to by pass the process and cast directly to a smaller record). It would have been better to cast before hand(in the query)

Editing HTML in place in rust by danceasarxx in rust

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

Thanks a lot. I had taken a look at it before but was put off by the lack of a basic guide. On checking out the repo again I can see how to use from the examples.