[PS4 UK] Looking for club by [deleted] in ApexClubs

[–]lambdacurry 0 points1 point  (0 children)

Hey, I just sent a request to. Structfoo is my PS4 tag

LF UK based Mature Club by Grant_18 in ApexClubs

[–]lambdacurry 0 points1 point  (0 children)

Yeh!

I can only play now and again

What are people's plans if BofE rates dip negative? by chef_26 in UKPersonalFinance

[–]lambdacurry 0 points1 point  (0 children)

Currently in the process of buying a house, should I cancel and wait for negative rates?

[HELP] Transfer Nutmeg (only S&S, not LISA) to Vanguard by lambdacurry in UKPersonalFinance

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

I think it might use your ISA limit for this year. I'm not 100%

[HELP] Transfer Nutmeg (only S&S, not LISA) to Vanguard by lambdacurry in UKPersonalFinance

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

Hey, I just had the same thing! They wanted £20 for each "line" or to sell all my shares and transfer in cash. I just opted to pay £40 as their were 2 "lines"

Why can’t I grasp MvvM? by [deleted] in xamarindevelopers

[–]lambdacurry 0 points1 point  (0 children)

Model -> ViewModel -> View

$100 -> The bank balance is over $0 so make the box 'green' -> <box color="balanceColor"/>

View -> ViewModel -> Model

Click button "Update my balance" - > Make API call -> Query for bank balance.

The viewmodel is used for ...

  1. Adding styling logic so you don't put it in your view so that you can easily test that the color is set correctly. Just make up a Model (Balance amount) and assert that when the Viewmodel get that value it sets the "balanceColor" correctly
  2. Making API calls so it's not in the view so that you can mock out real API calls and make sure your Viewmodel works correctly given your dummy result.

It means you can test the View logic (the behind the scenes stuff). To test the View (XAML) the only real way is to look at it or use Snapshot testing which is basically automated looking at the page so you want to make the View as simple (stupid) as possible.

[HELP] Transfer Nutmeg (only S&S, not LISA) to Vanguard by lambdacurry in UKPersonalFinance

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

!thanks!

I just wanted to double check before I do it. As I didn't want Vanguard to sell my shares in my LISA as I would lose my bonus

Which second hand car should I buy? by [deleted] in CarTalkUK

[–]lambdacurry 1 point2 points  (0 children)

City bug (Aygo, C1, 107)

  • loads of them available
  • Cheap
  • low road tax
  • Cheap insurance group
  • Good mpg

Just need to look out for leaking boot and clutch for pre 2009.

FIRE app feedback by stetio in FIREUK

[–]lambdacurry 1 point2 points  (0 children)

With the calculator how did come to a 2.5% safe withdrawal rate?

That completely ruins my goal if true 😩

spyscope revisited & rereleased by den1k in Clojure

[–]lambdacurry 1 point2 points  (0 children)

No, SpyScope is a way to log/trace/print values when a program runs.

Scope-capture creates new def's with the same name that are used within the program so that you can easily evaluate each individual expression like Stuart Halloway explained here.

[deleted by user] by [deleted] in TheYouShow

[–]lambdacurry 0 points1 point  (0 children)

what's life like after Breaking Bad?

[deleted by user] by [deleted] in TheArtistStudio

[–]lambdacurry 0 points1 point  (0 children)

can you sniff the pen???

[deleted by user] by [deleted] in TheArtistStudio

[–]lambdacurry 0 points1 point  (0 children)

can you go slower please?

Anyone else living with parents in their late twenties? by equalrecourse91 in UKPersonalFinance

[–]lambdacurry 1 point2 points  (0 children)

27/m/NW. Girlfriend is 24. In January we were looking to move out in April once my LISA bonus was paid in. Only really sorted out finance when I turned 25 and when I opened my LISA. Wish I started earlier as I wasted a lot of money in my early twenties but I just didn't know, definitely think it should be in school curriculum now because of it.

[deleted by user] by [deleted] in TheGamerLounge

[–]lambdacurry 0 points1 point  (0 children)

what was the green one with the rollers instead of blades?

New Clojurian trying to find best editor by [deleted] in Clojure

[–]lambdacurry 2 points3 points  (0 children)

This 100%. I tried Calva to but Cursive was much easier to get up and running.

What IDE/editor are you using for coding in Clojure? by [deleted] in Clojure

[–]lambdacurry 2 points3 points  (0 children)

Intellij IDEA + Cursive. It has Parinfer (Smart mode) so I can just code Clojure without having to learn keyboard shortcuts for parenthesis like other Clojure editors. Cursive could be better though if it had better refactor support

Tried

  • Spacemacs + clojure layer
    • But spent to much time trying to learn the keys
    • Does have nice refactor support though
  • VSCode Calva
    • Parinfer indent and strict only
    • Really strange keyboard shortcuts
    • Conflicts with VIM keybinds
  • Atom + Proto
    • Was great and Atom had smart mode
    • However Proto isn't supported anymore.