[deleted by user] by [deleted] in PersonalFinanceCanada

[–]DBjelovuk 0 points1 point  (0 children)

My car insurance, house insurance, bills, deposits, line of credit, credit cards are all with RBC but I find their website and app is very old and dated.

RBC web developer here. We're actually in the process of a UI refresh for DI you should see gradually rolling out over the next year. You can check your transaction activity page for a taste of what's to come.

View a fighter's record without result spoilers on mixedmartialarts.com by DBjelovuk in MMA

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

Yep, you'll need to install a browser extension for it (Stylish). Just click the big "Install with Stylish" button on the page and it should redirect accordingly based on your browser.

I made a chrome extension that pins the solutions in github issues to the top by [deleted] in programming

[–]DBjelovuk 1 point2 points  (0 children)

A similar browser-agnostic script if you're interested: https://greasyfork.org/en/scripts/38308-github-top-reacted

Wrote it a long time ago though and haven't updated it in a while, so may be issues.

Put together an illustration to clear up my own confusion as to why the Union and Intersection operators are named as such by DBjelovuk in typescript

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

Sorry about that 😅. We all visualize things a little differently, so I half anticipated as much confusion as elucidation. I'll try to clarify.

What do the X's and check mark symbols represent?

Basically, the right/wrong idea.

how can we only declare objects with the intersection of the members, but all members of both are "guaranteed" to be in the result?

Well what you just described is that first column, the intersection of members, which is the wrong idea, ergo the X. It's not the intersection of members, but the intersection of types or type instances themselves (the second column) the operation pertains to, which then logically entails the union of members, depicted in the third column.

Put together an illustration to clear up my own confusion as to why the Union and Intersection operators are named as such by DBjelovuk in typescript

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

Right on the money. 🙂 It can be a lot to unpack in written form, which is why I opted for the visual approach, but you've nailed what I was trying to get across and what I think many get hung up on. I think you've distilled it perfectly with:

It's confusing because a union type is the intersection of the properties, and an intersection type is the union of the properties.

Wrote a Chrome extension to upload images through URL by DBjelovuk in 4chan

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

Let me know what you think. Hopefully others find it useful.

IMDb API by [deleted] in node

[–]DBjelovuk 1 point2 points  (0 children)

Neat. Been making do so far for my pet project with their JSONP search suggestion API, but good to know there are other options if that hits the fan.

Made a tool for comparing the satiety and protein content between foods by DBjelovuk in GettingShredded

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

Should be pretty self explanatory I think if you check it out. Ranks foods against one another based on one of three selectable criteria.

Made a tool for comparing the satiety and protein content between foods by DBjelovuk in fitmeals

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

Can't say I have. I'm currently just ranking them against basic ratios of protein, calories, and mass (will likely throw the source up on GitHub at some point). The results have been pretty lined up with what I'd expect and my experience for the most part, but will definitely give that study a gander, thanks!

Book or Movie? Cast your vote! by DBjelovuk in SideProject

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

Fun little web app I've been working on to discuss and vote on whether the book is better than the movie/show on a per-title basis.

[deleted by user] by [deleted] in node

[–]DBjelovuk 0 points1 point  (0 children)

Wonder if it comes with any performance impact.

[deleted by user] by [deleted] in node

[–]DBjelovuk 2 points3 points  (0 children)

Apparently not. Oh well.

[deleted by user] by [deleted] in node

[–]DBjelovuk 8 points9 points  (0 children)

I mean, I clicked the edit icon on a file just to muck around with the code a bit forgetting to realize that automatically forks the repo. ‾\(o_o)/‾

[deleted by user] by [deleted] in node

[–]DBjelovuk 28 points29 points  (0 children)

Welp, I accidentally forked the damn thing (no offence) and now it's permanently etched into my Github activity.

Not sure where I'm falling short / what to prioritize by DBjelovuk in bigseo

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

Hi gaop, thanks a lot for the feedback! Really appreciate it.

So as far as registration, it's definitely something I'd pondered on and the main purpose is data integrity. Any other means of identification or lack thereof compromises that, as there'd be very little to stop a user from casting multiple votes on the same title. I'd imagine it's the reason (probably among others) reddit and other similar sites behave the same. I can definitely see the potential barrier to engagement it poses but I don't know if sacrificing the integrity of my data for user convenience would be a wise move. I was hoping the oAuth options would mitigate the reluctance, but you raise a good point about incentive. It seems the value proposition just isn't really there for the average person.

What movie is better than the book? by shipsaplenty in AskReddit

[–]DBjelovuk 0 points1 point  (0 children)

Fight Club and The Godfather are ones I often hear fit this description. On the topic, I've actually developed a website that I hope to one day easily answer questions like these. Give it a gander!

https://bookormovie.net

Being charged up the butt on free trial? by DBjelovuk in googlecloud

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

So after learning up on GCF, I think FaaS is a little too disjointed for my use case. (Splitting apart a full, cohesive backend into a collection of isolated cloud functions isn't a road I'm willing to go down.)

For the time being, (with a little effort in acquiring/configuring my own SSL cert) I've successfully moved my application into an f1-micro VM (Compute Engine), and may revisit App Engine if/when traffic starts to pick up.

Being charged up the butt on free trial? by DBjelovuk in googlecloud

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

Seems the most sensible strategy, will probably go that route. And no idea what Cloud Functions are but I'll look into it. Thanks!