HackerTrans
トップ新着トレンドコメント過去質問紹介求人

dhux

no profile record

投稿

[untitled]

1 ポイント·投稿者 dhux·2 年前·0 コメント

Ask HN: Where to find tech meetups in Dubay, UAE?

1 ポイント·投稿者 dhux·3 年前·0 コメント

コメント

dhux
·2 か月前·議論
[dead]
dhux
·3 年前·議論
It depends on the selling price. And your personal financial situation and the time you can invest in.
dhux
·3 年前·議論
It depends, if you are financially stable I would say. An island in the carribbean.

An island that is not part of any european kingdom or part of the U.S.A or any bigger country.
dhux
·3 年前·議論
Right now I'm using PopOs when I use the default terminal nerdfonts do not render correctly. But in other terminals i have no problem.
dhux
·3 年前·議論
I'm a new vim user. I've been using the vim motions for 2+ years in Intellij. I use intellij at my work. But for my personal projects, i've been using Lunarvim.

What I've realised, I can get in the zone much faster when using neovim. Instead of Intellij. I think if I get to the point that I have my own vim configuration, it would feel like something really personal. I use Lunarvim & Zellij and it's awesome.
dhux
·3 年前·議論
First read the rust book.. And write your own tiny program.
dhux
·3 年前·議論
PHP, JavaScript, Java, C#, Golang, Scala, Rust, Python & SQL.
dhux
·3 年前·議論
https://github.com/denzyldick/phanalist

I'm trying to write a static analyzer for PHP. It's written in RUST and it's a personal project of mine to learn rust and also make a FAST static analyzer for PHP projects that are big. I started with this project because the current static analyzers in the PHP ecosystem are slow.

It would be nice if there were people that would like to contribute. If you want to learn rust and you have PHP experience you are welcome to help.

The project is it early stages. Right know the focus is on writing the checks that are needed. The current checks that are implemented are:

- Detect when the cyclomatic complexity of a method is too high. The current threshold is 10.

- Extending undefined classes.

- Having a try/catch with an empty catch that doesn't do anything.

- A method that has more than five parameters.

- Methods without modifiers(private, public & protected).

- Classes that start with a lowercase.

- Check if a method exists when called inside another method.

- Methods that return a value without defining a return type.

- Constants that have all letters in lowercase.

- Parameters without any type.

- Correct location for the PHP opening tag.