Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
pea-tear
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
9 ms
·
1.
▲
by
pea-tear
2y ago
Yeah, I'd love to not rely on an npm package but it's unfortunately the only way to do this out of the box.
2.
▲
by
pea-tear
2y ago
Yes, unfortunately mermaid requires not only node but also a browser instance (!!). I don't like it at all but I don't think there's any alternatives. If you or anyone knows a way of avoiding installing a javascript package t
3.
▲
by
pea-tear
2y ago
I would love to hear specifics on how you couldn't get the layout looking how you wanted it to. e.g. do you have a link to the presentation you did? Feel free to shot me an email at gmail, it's easily findeable online.
4.
▲
by
pea-tear
2y ago
Mermaid is already supported natively, meaning the mermaid diagram output is rendered as actual images; no need for ascii diagrams https://mfontanini.github.io/presenterm/features/code/mermai...
5.
▲
by
pea-tear
2y ago
iterm2 and wezterm are well supported as well!
6.
▲
by
pea-tear
2y ago
See the sibling comment. This is a new protocol that the kitty maintainer created and is supported as of kitty 0.40.0, which was just released yesterday. This makes presentations look much more presentation-like now!
7.
▲
Presenterm: Markdown Slideshows in the Terminal
(github.com)
306 points
by
pea-tear
2y ago
|
45 comments
8.
▲
by
pea-tear
3y ago
I built presenterm ( https://github.com/mfontanini/presenterm ). Also a terminal based presentation tool which uses markdown, and supports images, PDF exports, etc.
9.
▲
Presenterm: A Terminal Slideshow Tool
(github.com)
3 points
by
pea-tear
3y ago
|
1 comments
10.
▲
Detecting and classifying template callback types in C++
(mfontanini.github.io)
2 points
by
pea-tear
9y ago
|
0 comments
11.
▲
by
pea-tear
9y ago
Developer here. There's alternatives that don't throw but the example is mostly so people look at it and say "ah, cool, this is actually simple to use". I normally still use this throw-version of doing things when I just
12.
▲
Reassembling TCP streams using libtins
(libtins.github.io)
3 points
by
pea-tear
11y ago
|
0 comments
13.
▲
by
pea-tear
11y ago
libpcap does support it. As for Winpcap, I don't know. Yes, libtins uses libpcap to capture packets (and also to send, if you're using Windows), so basically if winpcap supports it, then it should work on libtins.
14.
▲
by
pea-tear
11y ago
I haven't compared the performance of gopacket. I'll add that to my to-do list!
15.
▲
by
pea-tear
11y ago
This library uses libpcap to capture packets/read them from a pcap file. When you sniff using libpcap you just get a pointer to the packet and the packet size, you then have to parse the packet appropriately to do something useful with
16.
▲
Libtins v3.2: a fast C++ packet sniffing and crafting library
(libtins.github.io)
2 points
by
pea-tear
12y ago
|
0 comments
17.
▲
by
pea-tear
12y ago
That would be great! I think that adding more libraries to the benchmark would be just great. This is the project I've created to run the benchmarks: https://github.com/mfontanini/packet-capture-benchmarks You can
18.
▲
by
pea-tear
12y ago
I've managed to compile it on Windows using Visual Studio. It's in my TODO list to write a tutorial on the site on how to do so. Hopefully I'll do that on the next few days.
19.
▲
by
pea-tear
12y ago
You can't drop the original traffic using the library. You could capture it, modify it and send it though. That + some iptables rules to drop the original traffic would be sufficient I guess.
20.
▲
by
pea-tear
12y ago
Yes, there's a small tutorial section on how to implement new protocols: http://libtins.github.io/tutorial/new_protocols/
21.
▲
by
pea-tear
12y ago
I started this project with a colleague near the end of 2012, and I've continued development on my own since 2013. The first months of development implied a lot of work, but then just a couple of hours a week to fix bugs or improve som
22.
▲
Libtins v3.0: A fast C++ packet sniffing and crafting library
(libtins.github.io)
85 points
by
pea-tear
12y ago
|
14 comments
23.
▲
Exploiting a code execution in JomSocial
(average-coder.blogspot.com)
1 points
by
pea-tear
13y ago
|
0 comments
24.
▲
Libtins, a fast C++ packet sniffing and crafting library, v2.0 released
(libtins.github.io)
1 points
by
pea-tear
13y ago
|
0 comments
25.
▲
Creating a simple and fast packet sniffer in C++
(average-coder.blogspot.com)
13 points
by
pea-tear
13y ago
|
1 comments
26.
▲
On-the-fly WEP/WPA2 decrypter, forwards decrypted traffic to another interface
(average-coder.blogspot.com)
2 points
by
pea-tear
13y ago
|
0 comments
27.
▲
On-the-fly WEP/WPA2 decrypter, forwards decrypted traffic to a virtual interface
(github.com)
3 points
by
pea-tear
13y ago
|
0 comments
28.
▲
Libtins v0.3 released, a fast C++ network packet crafting and sniffing library
(libtins.sourceforge.net)
2 points
by
pea-tear
14y ago
|
0 comments
29.
▲
by
pea-tear
14y ago
That's what this app does, it uses LD_PRELOAD to perform keylogging on both non-suid and suid apps.