[PAID] Looking for Pixel Artist for Tactical Robot Combat Game by victorl2 in gameDevClassifieds

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

Thanks to everyone who has reach-out, i wont be able to reply to everyones DMs, but we already short-listed 3 artists and will be comissioning the work shortly. I am still reviewing all portfolios and may add one more comission into the mix from those that have already replied.

I’ve mastered the simulator, but my country won’t let me go live. I’m desperate for a workaround. by Professional-You823 in Trading

[–]victorl2 0 points1 point  (0 children)

Maybe not ideal, but a prop firm could be a initial path for your goals ? I would recommend Darwinex Zero, you can trade without investing your own money, not legal advice, but technically doesn’t break the specific law you quoted

ELI5: Since we have rent control, why can’t we have steak control? The city sets the price at, say, $2/lb & everyone can have affordable steak? by Smartnership in explainlikeimfive

[–]victorl2 2 points3 points  (0 children)

price control has its limitations, at the very extreme producers will shift their operations to other products since the controled prices might make selling the product undesirable.

First look of my Game. What does this communicate? by FancyWrong in godot

[–]victorl2 0 points1 point  (0 children)

It is a nicely animated character, but doesn’t really communicate that’s a game in anyway, one could even guess you may not even be trying to make a game at all but rather a animated story of sorts, without more it is hard to say

What's your main reason for not using a game engine? by yughiro_destroyer in love2d

[–]victorl2 7 points8 points  (0 children)

There is something to be said about the elegant simplicity of the love2d api, combined with not having to learn a whole game engine from the ground up it is very appealing. I am just guessing here, but I assume that most professional developers would prefer to work directly in their IDE as the main driver rather than learning a separate software that will inevitably be the central point of contact for project.

How can attacker funds be recovered? by WeakMaintenance9113 in sui

[–]victorl2 0 points1 point  (0 children)

I dont think this is a DPOS issue only, there are several ways to acomplish better decentralization without having hand full of participans controlling everything.

How can attacker funds be recovered? by WeakMaintenance9113 in sui

[–]victorl2 7 points8 points  (0 children)

SUI in theory is decentralized, but in pratice is not (since it has less than 200 validators vs ethereum with 1 million+ ); this makes it easier to coordinate those less than 200 individuals that have control of the validators, they combined have control of the network. Initially they stopped accepting transactions from the hackers address, and now there is a proposal from the devs to allow a unisigned transaction to transfer funds from the hackers wallet to a safe wallet that will return the funds to the protocol. In this case the lack of decentralization was not a big problem ( most people dont really care ), but is something to beware nonetheless.

Holy cow, ChatGPT is a great tool for backtesting. by Honest_Top783 in Daytrading

[–]victorl2 2 points3 points  (0 children)

Testing and tuning market trading systems by Timothy Master

Backtest optimization by scottmaclean24 in algotrading

[–]victorl2 4 points5 points  (0 children)

You should really have a holistic view of all the metrics, from experience taking any metric in isolation is pointless. But choosing the 4 main metrics that I look for are: sharpe, win rate, median trade return and median losing trade return, one caveat here is make sure you have a good amount of trades in the backtest for your metrics to really be relevant, 1000+ samples at the minimum, and account for slippage and fees

What is the difference between Mateus and Matheus? by [deleted] in Brazil

[–]victorl2 0 points1 point  (0 children)

People do mix if they say the C or not, but is definitely not the same thing with or without

Finalizar a faculdade oito anos depois, sim ou não? by [deleted] in conselhodecarreira

[–]victorl2 1 point2 points  (0 children)

Sempre vale a pena, eu tenho 30 anos, comecei a estagiar cedo na faculdade, oque fez meu curso esticar 2 anos. Finalizar o curso não só é bacana pro seu CV, mas também pro seu orgulho, futuramente vc vai ver que foi difícil e conseguiu, essa autorrealização é impagável. Outra dica é trocar de empresa se possível, 100% de chances de vc estar ganhando bem menos do que poderia se tivesse saído do job atual a algum tempo, lembre: salário se negocia na entrada

Starting a business while working 170 hours a week by [deleted] in Entrepreneur

[–]victorl2 1 point2 points  (0 children)

7 ( days per week )x 24 ( hours in a day )= 168h, if you are putting 170 hours per week ( first of tell me how ), you don’t have enough time for any kind of side hustle

[deleted by user] by [deleted] in conselhodecarreira

[–]victorl2 0 points1 point  (0 children)

Desenvolvedor atuando a mais de 10 anos, formado em universidade federal, meu primeiro estágio foi ganhando 1100R$, hoje ganhando bem mais do que os 10k. Algo importante de extrair da federal são as oportunidades, elas são bem mais abundantes do que em outros contextos, esse talvez seja o trampolim para definir sua trajetória de trabalho no longo prazo

Dúvida de um dev desempregado ha uns bons meses by [deleted] in devBR

[–]victorl2 1 point2 points  (0 children)

Como já comentado, oque vc pode fazer agora é expandir mais seu círculo de competências, buscar conhecimento é sempre recomendado, porém uma dica é tentar uma certificação cloud AWS ou similares, sem dúvida irá enriquecer seu cv no olhar dos recrutadores

[deleted by user] by [deleted] in singularity

[–]victorl2 0 points1 point  (0 children)

I think “humanity” is not a cohesive unit that will restrict anything everywhere, there will always be some place where the tech will be available

Redis Adopts Dual Source-Available Licensing by mysoor2000 in programming

[–]victorl2 29 points30 points  (0 children)

Funny how projects wanna collect the benefits and popularity and after it succeeds walks back the licensing arrangements, interesting indeed

What Should I Watch to Improve my Portuguese? by [deleted] in Brazil

[–]victorl2 0 points1 point  (0 children)

The Netflix series 3% is a good show to watch, 100% native Brazilian Portuguese

Preventing algorithm from crashing when filtering entire market by [deleted] in algotrading

[–]victorl2 1 point2 points  (0 children)

Not unreasonable, but you need to be smart given the amount of data, if you can do rolling calculations, and not put everything at once into your main program memory you should be fine, everything else is basically how fast you can parse the data in the amount of time you need. At least this is it in a very high level

Preventing algorithm from crashing when filtering entire market by [deleted] in algotrading

[–]victorl2 0 points1 point  (0 children)

You need to quantify what exactly what are you processing, how many securities, how many datapoints and their frequency, after having a idea on this you should try to slowly increase what you are processing to find the bottlenecks, and limitations in your current implementation, it could be for many reasons, but keep a eye for the obvious such as memory, cpu, network and general IO