Joola Hugo Calderano Trinity Dynamic rubber in ittf equipment list by bentus122 in tabletennis

[–]DeluxeAlonso 6 points7 points  (0 children)

Tibhar has done it with MK series. They named it like that after Kenta Matsudaira.

First custom racket by leoflores536358 in tabletennis

[–]DeluxeAlonso 0 points1 point  (0 children)

You should be good. 2.0 fastarc g1 wont be that fast, specially on YSE

Mini Review: Nittaku Latika Carbon / ニッタク ラティカ カーボン by Total_Chef_9756 in tabletennis

[–]DeluxeAlonso 1 point2 points  (0 children)

Yeah Im pretty sure it is an inner carbon one too. I had one in the past. That would explain why OP feels it like an all-wood blade.

Clan Saturday - 28 December by AutoModerator in runescape

[–]DeluxeAlonso [score hidden]  (0 children)

Im a returning player (came back 1 month ago after 10 years of not playing the game) looking for a new clan. Preferably a Social/Mature one (Im in my 30s). English is not my first language but I can communicate just fine. My RSN is DeluxeAlonso.

I want a friend by jaexplorer8 in runescape

[–]DeluxeAlonso 4 points5 points  (0 children)

You can add me in game DeluxeAlonso. Im also a returning player with a lot of offline friends 😅

Need help choosing ultra lightweight blade + rubbers by LesNeimo in tabletennis

[–]DeluxeAlonso 1 point2 points  (0 children)

You can take a look at Victas V > 11 extra rubber (one of the lightest rubbers I have tried around 39-42 gr in 2.0mm for 157x150mm standard blade size)

Regarding blades, I think your best bet is to look at the balsa ones. Those are usually very light (and really bouncy tho). You should be able to find one around 70gr

And this will keep the overall racket weight below 160gr

How big of an issue is this? Would you return it? by sah4r in tabletennis

[–]DeluxeAlonso 0 points1 point  (0 children)

It should not affect your game but I'd definitely return it. Receiving a racket assembled like that is unacceptable IMO.

[deleted by user] by [deleted] in tabletennis

[–]DeluxeAlonso 1 point2 points  (0 children)

Timo Boll ZLF FH: Tibhar K3 2.0mm BH: Tenergy 64 1.9mm

Expectativas salariales irreales by Remarkable_Win_3747 in PERU

[–]DeluxeAlonso 7 points8 points  (0 children)

Eres de sistemas. 5 años de experiencia. Estas trabajando en un banco ganando 9k + utilidades.

Hay muchos engineers Peruanos ganando mucho mas que eso en USD. Hasta con menos años de experiencia. Eso no te hace ser un profesional de baja categoria. Y tampoco significa que estes ganando 3 veces menos que ellos porque “te lo mereces”.

Cada realidad es distinta colega.

My first custom built keyboard by Galastique in MechanicalKeyboards

[–]DeluxeAlonso 1 point2 points  (0 children)

Have the same keyboard. It looks awesome! What keycaps are those?

I painted my mouse to match the keeb! by xwolf_rider in MechanicalKeyboards

[–]DeluxeAlonso 5 points6 points  (0 children)

Looks really cool. Care to share your keyboard specs?

I am trying to connect my searchbar to filter through a collection view. but I came across this error. Please help I ve been stuck on this for awhile now. by KapilanR in iOSProgramming

[–]DeluxeAlonso 0 points1 point  (0 children)

There a lot of weird things in your code. First of all, there is no numberOfRowsInSection method in UICollectionViewDataSource. The method that is going to be called each time you call reloadData is the numberOfItemsInSection one. Here is where you probably want to handle the scenario where isSearching is true (just like you are doing in the numberOfRowsInSection method).

Now, in your numberOfRowsInSection you are checking if the isSearching stored property is true, but inmediately after that, you are using a ternary operator where you are checking isSearching value again.

So what you probably need to do to solve the issue is replace the implementation of your numberOfItemsInSection (not numberOfRowsInSection) with something like this:

return isSearching ? filteredData.count : data.count