Interests: programming, video games, anime, music composition

I used to be on kbin as e0qdk@kbin.social before it broke down.

  • 43 Posts
  • 899 Comments
Joined 2 years ago
cake
Cake day: November 27th, 2023

help-circle


  • Adding to this, the money to repay bonds has to come from somewhere – usually taxes. So, if a government issues a bond it is committing to collecting the amount of money for the bond-plus-interest from the populace. It’s the government taking out a loan, essentially, on the basis that it can use long term tax revenue for repayment.

    Why not just use taxes directly then? Sometimes you need a lot of money for a specific project and it would take too long to collect that money through taxes at a rate that is reasonably payable by the populace over a short enough time frame.

    Suppose you need a million dollars to cover the cost of replacing some infrastructure – like a critical pipeline for your town’s drinking water – but you only have 100 people in your small town. That’s $10,000 per person if the cost is split evenly. The people in town may not have that much money to pay all at once, but getting the pipe fixed so they have water to drink is really important. So, the government gets a loan (i.e. issues a bond) and pays out the amount plus interest over a long period of time. Adding 5% interest and breaking the payments up over a 30 year term would require everyone in that hypothetical town to need to pay about $30/mo more in taxes to cover the cost. That’s probably a lot more politically feasible to actually collect than trying to get everyone to pitch in $10k right now.




  • Yes. Have done so several times, and have had people come up and talk to me out of the blue as well. Sometimes it has gone well. I’ve had a few good conversations with random people on long distance transport (planes, trains, and such) when I struck up conversations with whoever ended up in the seat next to me, and a few times (more rarely) in grocery stores when I’m having trouble finding something (or vice versa). e.g. got asked about uses for unusual ingredients I was having trouble finding and traded some recipe tips.

    Usually when other people come up to me they just want me to give them money, or join their religion though.







  • I’m not quite sure what’s going on there exactly, but I block JS in my browser (via NoScript). When I downloaded the link you provided with wget in the terminal, it returns what looks like a bot block page to me. (It includes the text “This question is for testing whether you are a human visitor and to prevent automated spam submission.” with an embedded CAPTCHA image.) If I load the link in Firefox though, it provides a PDF even with JS disabled in my browser. Usually that means a site is doing something like User-Agent sniffing or running a cookie check to block automated scrapers, but if I download the link with wget again after loading it once in my browser, it provides the PDF directly – so presumably the site has some middleware that allows requests by IP after you’ve passed an initial not-bot approval? (Maybe time limited? Haven’t experimented to find out.)

    You might be able to get around this by setting User-Agent and other headers in an initial request to impersonate the browser? (Check copy as cURL for the URL in FF’s network dev tools to see how to emulate the request exactly as your browser would do it.)