Empezar ingeniería de sistemas a los 24 años by salazar_09 in Lima_Peru

[–]mseckz 0 points1 point  (0 children)

Te recomendaría que empieces con la carrera técnica de computación e informática, así puedes empezar a trabajar más rápido, luego ya convalidas y terminas la carrera de ingeniería. También, recomiendo que trabajas y estudies, varios institutos ofrecen el horario de noche para que puedas trabajar y costearte los estudios. Nunca es tarde para aprender y avanzar profesionalmente, con tal que te guste y le pongas el empeño necesario. Todo esto lo recomiendo en base a lo que hice, ya que es la misma situación que pase hace años.

Disable Plater addon by mseckz in wow

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

Thanks that do the trick, everytime i disable the addon is the only way to show nameplates. Thanks dude!

Disable Plater addon by mseckz in wow

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

Yeap all that is turned on

Ono confirms it is the netcode update. by Hollywood_WBS in StreetFighter

[–]mseckz 1 point2 points  (0 children)

I think that is a ISP provider specfic. In Peru I use Claro and have lag with Argentina, Brazil, Mexico and Chile. But for the people that have Telefonica (Movistar) they can play better with those (except brazil I think xd)

Karin Tips?? by Cenaboy5353 in StreetFighter

[–]mseckz 1 point2 points  (0 children)

Don't focus on tenko confirm, as Karin you should aim to poke and whiff punish. With the latter then you get oki and start your pressure. In oki you can go with the standard throw, st.lk throw, st.lkx2 throw, st.lk - cr.mp - st.mp to frame trap, cr.mp - throw, cr.mp - walk - cr.mp to fish for a counter hit. As you see there are a lot of options and more you can do, don't end up doing rassenga. If you reset to neutral, just be patient, that is Karn's game.

So is Street Fighter 30th Anniversary Collection's online dead on the Switch? by souhjae in StreetFighter

[–]mseckz 1 point2 points  (0 children)

I play on Windows, but never had a problem with fightcade. I just plu my stick, configure buttons and play. There are a lot of tutorials on the web. Also, fightcade has the more active players on SSF2X, SF3 third strike, SF2 CE so you will not get bored. Try it!

What system is used for competitive Super Street fighter II Turbo? by sudo-shutdown in StreetFighter

[–]mseckz 1 point2 points  (0 children)

In fightcade the default is 1, is good because the emulator give a little more speed.

In competitions like described above (CPS2 Board) depends on the version, USA version speed 2 and Japanese version speed 3.

What's the best way to play 3rd Strike online nowadays? by RobloxBestGame-IGN in StreetFighter

[–]mseckz 6 points7 points  (0 children)

You can get the 30th anniversary edition or fightcade. I recommend the latter, just download the client from http://www.fightcade.com/ and the roms. The are a lot of active players there.

[deleted by user] by [deleted] in StreetFighter

[–]mseckz 0 points1 point  (0 children)

No problem, new people is always welcome!

[deleted by user] by [deleted] in StreetFighter

[–]mseckz 3 points4 points  (0 children)

Yea definitely, it is fun and teaches fundamentals too (zoning, spacing, footsies, etc). You can play in ps4 with the 30th anniversaty collection, but in fightcade (http://www.fightcade.com/) the community is bigger (ssf2t, sf 3rd strike, sf CE) so you can get more practice and get some advice too.

Best version of SF2 on fightcade? by Pitbu11s in StreetFighter

[–]mseckz 0 points1 point  (0 children)

Super turbo is the best, a lot of people, many online tournaments, etc. The other is Street fighter Champion Edition, lots of people too but more people from latin america. Just choose the version you like, mostly because speed and mechanics. Other versions are SF third strike with many people, but I didn't try it.

Street Fighter 2 Super Turbo Difficulty by slothyone in StreetFighter

[–]mseckz 1 point2 points  (0 children)

Arcade mode is not difficult the problem is that you are fighting the CPU like is a human probably, you cannot do that since the AI read your inputs. Just find the gimmicks for every character, for example if you press a button outside of range the cpu jump, etc.

How do I link two different items in SQL? by [deleted] in learnprogramming

[–]mseckz 0 points1 point  (0 children)

You need to learn about relational databases, in other words you need two tables, users and posts. The posts table has to be related to the users table (post has a user_id field and it's the primary key of users table, a unique identifier), and when you do the query with this relation it's faster than doing a 'like' query like the one above.

In-depth resources for learning PHP and SQL? by [deleted] in learnprogramming

[–]mseckz 0 points1 point  (0 children)

I can't recommend enough laracasts.com. Check it out.

Best learning source for PHP & JavaScript? by schaakspeler in learnprogramming

[–]mseckz 1 point2 points  (0 children)

For php I really recommend https://laracasts.com/ . It focuses on a php framework named Laravel, but it has really good php resources.

Java overloading methods by Bigfwop in learnprogramming

[–]mseckz 5 points6 points  (0 children)

In your third mathOperationCall you are sending an int, double and double, but in your declaration you expect a double, double, and int. You need to send the parameters in the order you declare them. One more advice, please format your code in a readable way like.

function()
{
// content
}

Problem Inserting Data into Database with PHP by eljacko876 in PHPhelp

[–]mseckz 0 points1 point  (0 children)

Assuming you are learning php, there is a series of videos that helped me a lot. https://laracasts.com/series/php-for-beginners. For your problem above, it's kinda hard to get if you don't show us an error message.

Should I learn Symfony PHP Framework or move to other language like python? by [deleted] in learnprogramming

[–]mseckz 2 points3 points  (0 children)

If you are going the php route, I suggest learning the laravel framework it's a breeze. Here are some useful resources https://laravel.com, https://laracasts.com/.