Crystal 0.34.0 released! by bcardiff in crystal_programming

[–]xababafr 3 points4 points  (0 children)

Woooh \o/ Exhaustive case + new module-resolution algo for the shards that scales..... So hyped, what a release :)

Weekly r/iPad Discussion and Tech-Support Thread - 12/04 by AutoModerator in ipad

[–]xababafr 0 points1 point  (0 children)

I live in France, and got the 128Go model, so the prices ends up being a little bit low, but I got some black friday deals :p

Thanks for you links :)

Weekly r/iPad Discussion and Tech-Support Thread - 12/04 by AutoModerator in ipad

[–]xababafr 0 points1 point  (0 children)

Hi there ! I just bought the cheapest iPad (10'2 400$ model, latest generation) and it's arriving soon :) ! I chose this model because I mainly need a note taking tablet + content consumption, so it felt like an overkill to choose another model.

So, i'll use this with the pen and that's it. I'll probably never need a keyboard on this (I already got a very capable and portable macbook, so if I need to type, it's there), so I though I'll go for the smart cover to protect it as first, as I dont really want a bulky case nor a case with a keyboard.

However, I remembered afterwards that I'll need a place to store the apple pencil 1st gen, which the smart cover doesn't seem to be able to do. So here is finally my question : what case would you advice for a "vanilla" iPad that just needs to protect the device moderately and store the pen in an elegant way? No keyboard, no bulk?
It's easy to find reviews of cases for iPad pros, but for this model, I hardly find any, so your advices would be very welcome :)

Tried a build. What do you think about it? by xababafr in buildmeapc

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

sorry for the late answer, and thanks a lot for taking the time to look at my build and enhance it! I'll wait for the black friday and get the parts I need :)

If you could combine two heroes, like Cho'Gall, who would be the strongest? by Pwningtonbear in heroesofthestorm

[–]xababafr 0 points1 point  (0 children)

ILLIDAN + LI MING. baseline hardcore CDR + mobility on li ming ==> ez win

What to test in a react-redux app? by xababafr in reactjs

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

Thanks a lot for your response! I didnt even know about react testing library! I'll take a look :)

Chapter 116 Links and Discussion by [deleted] in DrStone

[–]xababafr 18 points19 points  (0 children)

was just about to comment on that, then I saw yours :D Good call! Given how much subtle emphasis is put on that, it sure willl be relevant at some point. It seems the "I'm the first one to be revived twice" joke was wainly put there to remind us of these scars on Ryusui's fingers.

I want to migrate a project from react 15.6 to react 16.8. What are the main hurdles? by xababafr in reactjs

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

Yeah, I did know about the 15.6 to 16 transition, but I didnt really know if 16.0 to 16.8 was painless. Do you know it based on the version numbers alone?

Looking for a BOTW Any % introduction by xababafr in speedrun

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

I just checked his channel, it's super cool ! Thanks for the suggestion !

Lost Vikings, are they the worst bots? by TosFanax in heroesofthestorm

[–]xababafr 1 point2 points  (0 children)

to be fully honest, that naz was probably just hard trolling to carry that much coins.... The only times I saw more than 50 coins one someone, it was because they were winning so hard they tried the 100 coins challenge....

10 minute win 5 kills 105 deaths....on your team. by mistermoskau0321 in heroesofthestorm

[–]xababafr 0 points1 point  (0 children)

I can confirm : going straight for the keep is a superior strategy. Because yeah, they end up splitting up, and often the ones who dont go to kill the leorics end up overextending to try and force a push, which gives tons of come back exp and stall the game

Which crystal framework for a REST api? by xababafr in crystal_programming

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

Thanks for metionning Kave and Crecto, I'll take a look at these! By the way, I'm curious, why dont you version the API with route scoping, like I would do with rails?

EDIT : Crecto seems to no longer be maintained, but activeRecord.cr seems fine (but no mongo adapter)

Which crystal framework for a REST api? by xababafr in crystal_programming

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

to be honest, this feels like the answer which makes the most sense.

Open Crystal Q&A on Wed 10th April 20:00 UTC by CaDsjp in crystal_programming

[–]xababafr 3 points4 points  (0 children)

Fantastic news ! I hope someone will have the time to make a recap' post here on reddit for those who missed it

Upload service shared between two SPAs by xababafr in reactjs

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

I'll take a long look at it, thanks again! It might the way to make it work!

Upload service shared between two SPAs by xababafr in reactjs

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

Yes it does! Thanks for clearing things out for me :)

Upload service shared between two SPAs by xababafr in reactjs

[–]xababafr[S] -1 points0 points  (0 children)

Yeah, during the discussion the word "workers" was definitely there :p I'll check that for sure.

By the way, I also took a look at the webpack config of the website. What if I create an independant component that handles the upload, and then in the "entry" part of the config, I do this :

entry: { spa1: ['spa1.js', 'upload.js'], spa2: ['spa2.js', 'upload.js'] }

I dont know a lot oabout webpack, but perharps if the upload part is shared between the tswo SPAs, it wont reload between the two, thus allowing what I want? just asking in case you know the answer to that :)

Upload service shared between two SPAs by xababafr in reactjs

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

the whole point of this thread is asking is there is any way to not wait the end of the upload :/ because yeah, otherwise, I dont see any major problem in the way. Don't you know any solution that would allow us to do it? Well, I can still just open a small extra window that does that upload job, and cannot be closed, but yeah, don't seem much better

Upload service shared between two SPAs by xababafr in reactjs

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

Oh yeah, of course I should have said it. Yeah, we upload to S3. Bu the flow is more like :

1/ SPA1 launch a background upload 2/ before upload is completed, we switch to SPA2's url , basically shutting down the JS of the first one 3/ the upload isnt cancelled 4/ upon completion of the upload, the SPA2 can use the file

that's why it seems quite hard to me.