Readit News logoReadit News
adekok · 10 years ago
One minor nit about the projects use of autoconf / automake. Projects should please check the generated files into git. Sure, they're auto-generated. But 90% of the time when they're not in git, I discover that I have a different version of autoconf, and I can't even build "configure" in order to build the project.

The cost of a few more bytes in git is more than outweighed by the benefits of allowing people to use your software.

DiabloD3 · 10 years ago
This is inherently wrong. Auto-generated files should NEVER be in git.

However, they should be in the stable release tarball.

alextgordon · 10 years ago
How am I supposed to contribute to your project if the files required to build it are in one place (the tarball) but patches have to be made in another (the git repo)?

If your best practices require you to make potential users and contributors jump through hoops, then maybe those best practices are a bit shit.

tobbez · 10 years ago
If you intend to use the software, you should generally download a release. Releases usually (as is the case here) include the configure scripts.
paulddraper · 10 years ago
Checking in build products is not about saving a couple bytes. It's about having a DRY codebase that isn't of out sync with itself.
vdaniuk · 10 years ago
TcpKali mascot is an example of great visual identity for open source projects: kawaii-touched fearsome ancient god zapping servers. It's both memorable visual symbol and an apt metaphor for core feature (load generation).

RJ-45 connectors with a skull hanging from the neck and a latte cup are just cherries on top.

zaa · 10 years ago
To give credit where the credit is due: the mascot was created by a great graphical designer - Tatyana Alexandrova (https://twitter.com/Alextanya)
balajics · 10 years ago
Surprised to see the name and image in the site. If you're wondering about the name and the image there, "Kali" is the Hindu goddess and the image depicts her. https://en.wikipedia.org/wiki/Kali
fosco · 10 years ago
Yes, I initially thought this was a part of the pen-testing linux distribution[0] also named Kali.

[0] https://www.kali.org/

tyfon · 10 years ago
My association with this name is the IPX over Internet app that was around in the 90s to play things like Doom over the internet. Strange :)

https://en.wikipedia.org/wiki/Kali_%28software%29

Kiro · 10 years ago
Is there a way to specify a sequence of messages every connection should send? Preferably even let it randomize it (want to load test a game with real input, not just set up the connection).
lionet · 10 years ago
-m 'foo' -m 'bar' is one way. --message-file <filename1> --message-file <filename2> is another way.

You can randomize input somewhat by using \{connection.id % 100} expressions right in the -m and within the files.

But yes, tcpkali can do simple randomizations, but does not support full-blown scripting. For that, consider using http://github.com/machinezone/mzbench or other alternatives.

olivemonkey · 10 years ago
Something like Gattling or Artillery.io would probably be better for this use case. TcpKali looks good but purposed more for benchmarking servers than actual apps.
spiderfarmer · 10 years ago
What is the best way to prevent tools like this from ddossing a simple sockets.io server?
zimbatm · 10 years ago
Put a haproxy in front that does the rate-limiting and connection tracking.
pyvpx · 10 years ago
abstinence ?

it has flags to tailor the number of connections, bandwidth, message rate, etc. or are you speaking to malicious use?

Deleted Comment