HN user

ddb

678 karma

[ my public key: https://keybase.io/ddelbondio; my proof: https://keybase.io/ddelbondio/sigs/MQAQ0Mwlb8CjDb_WlF2Tn2DYA5YzbIwa7g5JMo3iI1Q ]

Posts26
Comments1
View on HN
github.com 1y ago

Envoy WASM extensions in the present and its future (Proxy-WASM)

ddb
2pts0
vanillaos.org 2y ago

Vanilla OS Orchid – Developer Preview

ddb
1pts0
deepfence.io 4y ago

ThreatMapper Is Now 100% Open Source

ddb
3pts0
status.azure.com 5y ago

Azure was having DNS issues

ddb
98pts48
ide.kaitai.io 5y ago

Kaitai Web IDE

ddb
1pts0
github.com 5y ago

Speedscope – A fast, interactive web-based viewer for performance profiles

ddb
24pts2
wiki.openssl.org 6y ago

OpenSSL 3.0

ddb
243pts104
github.com 6y ago

Karate: Test Automation Made Simple

ddb
3pts0
editablepdf.org 6y ago

The Editable PDF Initiative

ddb
152pts159
issuetracker.google.com 7y ago

Google Cloud PostgreSQL doesn't support XML columns

ddb
3pts0
github.com 7y ago

OSS Review Toolkit

ddb
2pts0
mail-archives.apache.org 7y ago

ECharts accepted for Apache Incubation

ddb
2pts0
www.extremetech.com 8y ago

AMD Ryzen 5 2400G Review

ddb
2pts0
github.com 8y ago

Generate a unified GraphQL schema from gRPC microservices and Protobuf sources

ddb
2pts0
cloudplatform.googleblog.com 8y ago

Cloud SQL for PostgreSQL adds high availability and replication

ddb
3pts0
www.reuters.com 10y ago

German court ruling threatens Apple's video services

ddb
1pts0
perception-point.io 10y ago

Analysis and Exploitation of a Linux Kernel Vulnerability

ddb
218pts65
www.extremetech.com 11y ago

Jackie Chan Blu-ray disc boosts solar panel efficiency by a massive 22%

ddb
5pts0
www.int33h.com 11y ago

Monkey Island – Insult Swordfighting Game

ddb
294pts70
twitter.com 11y ago

Touchdown! My new address: 67P

ddb
10pts1
corte.si 11y ago

Mitmproxy 0.11 released

ddb
2pts0
crossbar.io 12y ago

Crossbar.io application router

ddb
1pts0
smallcultfollowing.com 12y ago

Typed Object Handles

ddb
3pts0
blog.qt.digia.com 12y ago

Introducing the Qt WebEngine

ddb
106pts36
chrisawren.com 13y ago

Advanced Grunt tooling

ddb
1pts0
blog.computationalcomplexity.org 13y ago

Are you smarter than a fifth grader? I'm not.

ddb
2pts0

This can be done with native osx tools as well. Here's a snippet I created once:

  # First add a rule for all local traffic to port 80 to go into pipe 1
  # 100 is the rule number which will be used for referencing the rule later
  sudo ipfw add 100 pipe 1 ip from 127.0.0.1 to 127.0.0.1 dst-port http
  
  # To display the rule use
  # sudo ipfw show 100
  
  # configure the settings of the pipe as you please
  # 50kbit/s bandwidth
  sudo ipfw pipe 1 config bw 50Kbit
  # 200ms lag
  sudo ipfw pipe 1 config delay 200ms
  # 20% random packet loss
  sudo ipfw pipe 1 config plr 0.2
  
  # To display the current connections on the pipe use:
  # sudo ipfw pipe 1 show
  
  # when finished testing don't forget to delete rule and pipe
  sudo ipfw delete 100
  sudo ipfw pipe 1 delete