Bitcoin Forum
May 25, 2024, 04:05:12 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 [197] 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 ... 421 »
3921  Economy / Auctions / Re: Advertise on this forum - Round 75 on: March 24, 2013, 04:28:09 PM
Current status:
Slots BTC/Slot Person
1 3 lleibowitz
3 2.75 InspiredEye
3 2.5 Inaba

hm, wouldn't 3 slots win vs. 1?

No.
3922  Other / Meta / Re: HTML script in Signature on: March 24, 2013, 04:19:49 PM
I have seen someone else do it

You may have seen images (which aren't allowed anymore for new signatures), but certainly not an iframe.
3923  Other / Off-topic / Re: Languages you speak? on: March 23, 2013, 03:20:35 PM
I'm a native English speaker and I know some French. I took two years of German in middle school (it was required), but I didn't do very well in the course and I've forgotten pretty much all of it.

I'd like to learn Japanese some day.
3924  Bitcoin / Bitcoin Discussion / Re: If Satoshi returns on: March 23, 2013, 02:39:11 PM
People would start complaining about everything he does, just like they do with Gavin, etc.
3925  Other / Beginners & Help / Re: bitcoin-qt return addresses on: March 23, 2013, 05:09:22 AM
It's not recommended. SatoshiDice does it, but notice that they have this warning:

Quote
Only use wallets that allow you to receive Bitcoin from the same address you sent from. If you're not sure, test with .001 Bitcoins. If you get nothing back, then your wallet is not compatible.

If you do "auto-refunds" without a similar warning, people will lose money and be very angry.
3926  Other / Off-topic / Re: Why is HTML   being converted to the 0xA0 character instead of a space? on: March 23, 2013, 04:01:02 AM
Ha! I figured out what causes most of these problems. (Though I guess   has been the special non-breaking space character in all browsers for at least several years.)

If omitted, the default value for this argument is ISO-8859-1 in versions of PHP prior to 5.4.0, and UTF-8 from PHP 5.4.0 onwards.

With PHP < 5.4.0, 0xA0 was passed through normally. Now, this character is considered invalid UTF-8 and the entire input to htmlspecialchars is scrapped.

This needs to be fixed in SMF. It affects even 2.x. I fixed it for the PM emails, but it'd be too much work to fix it everywhere.

I'm getting pretty sick of dealing with SMF's escaping insanity... Who thought it was a good idea to have every function take strings with different degrees of escaping?
3927  Other / Off-topic / Re: (GOAL): One Language ~ One Word on: March 22, 2013, 04:26:53 PM
French: liberté

Guess what it means.
3928  Bitcoin / Bitcoin Discussion / Re: Proof-of-work difficulty increasing on: March 22, 2013, 01:54:32 AM
This topic brings back memories...

I generated 5 blocks today on my Pentium processor. Two of them were within 3 minutes of each other.

Heh. Smiley
3929  Other / Beginners & Help / Re: Newbie restrictions on: March 21, 2013, 11:34:28 PM
I'm a newbie very bad in English, how could I post 5 good posts ? Wink
(to can join the French board…)  Embarrassed

Vous pouvez aller à les sections françaises maintenant. Ces règles sont pour les anglophones seulement.
3930  Economy / Auctions / Re: Advertise on this forum - Round 75 on: March 21, 2013, 04:02:03 PM
There's only 7 slots for sale.
theymos, you might wanna edit your example (it says  8 slots @ 5 BTC)

Done, thanks.
3931  Other / Meta / Re: Can someone break jnewsome out of newbie jail and move his post? on: March 21, 2013, 03:35:52 PM
Done.
3932  Other / Off-topic / Re: Why is HTML &nbsp; being converted to the 0xA0 character instead of a space? on: March 21, 2013, 06:18:49 AM
This causes problems because SMF converts multiple spaces into a series of &nbsp; entities. So "  " becomes "&nbsp; ". When the entities are converted to 0xA0, it causes at least these problems:
- When quoting a PM which has multiple spaces, you will end up submitting a message containing 0xA0 characters. This confuses the forum's mail processing and the recipient ends up being sent a PM notification email with an empty message. If you receive a lot of PMs you've probably noticed this.
- There is no way for the forum to correctly display a clearsigned document if it has multiple spaces, even with [code] tags. Copying it will copy the non-breaking spaces (though only on some systems, I think) and it won't sign/verify consistently.
- I can't use the forum's file browser because submitting a file with any 0xA0s messes things up for some reason.
3933  Other / Off-topic / Re: Why is HTML &nbsp; being converted to the 0xA0 character instead of a space? on: March 21, 2013, 06:05:01 AM
I looked at the XHTML/HTML standards, and &nbsp; actually is defined as being 0xA0. But I'm pretty sure that my browser didn't used to behave this way...
3934  Other / Off-topic / Why is HTML &nbsp; being converted to the 0xA0 character instead of a space? on: March 21, 2013, 05:40:16 AM
Look at this page:
https://bitcointalk.org/test.php

The form is pre-filled with a &nbsp;. If I submit it, I get "a0", indicating that the browser sent the special 0xA0 "non-breaking space" character instead of a regular space. This isn't normal, and it's causing several problems for the forum software. This behavior started when I upgraded php and switched to nginx before switching servers, and it's persisted after switching servers. So it's probably some problem with the configuration of nginx or php.

Any ideas on how to fix this?

The code for test.php:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>asdf</title>
</head>
<body>
<form action="" method="post">
<input name="test" type="text" value="&nbsp;" />
<input type="submit" />
</form>
<?php
if(isset($_REQUEST['test']))
        echo 
'<p>'.bin2hex($_REQUEST['test']).'</p>';
?>

</body></html>
3935  Other / Meta / Re: What this forum do/did with donations? on: March 21, 2013, 03:24:12 AM
When is some of it going to get spent on upgrading the forum?  Seriously - the forum has collected over USD 300,000 so far.

Software developers are apparently terrible at marketing themselves. In the past 6 months I've gotten only 2-3 inquiries about the project. It's true that I'm not very good at managing this process (due to lack of time and also lack of experience with this kind of thing), but you'd think that someone would be able to find some way of getting me to hire them when there's 5000+ BTC on the line. I don't really have time to search out people for this job, and I won't convert large amounts of the forum's BTC into fiat for hiring people in more traditional ways.

My current plan is to create the core of the software (database, core API, security) myself and set bounties on sections of the rest (UI, full API, etc.). I've made some progress, but I don't have much time and my current priority is fixing some problems with SMF. Maybe I could hire someone to write this stuff under my close direction.

I've thought a lot about just using some existing forum software, especially SMF. I've become far more familiar with SMF than I ever wanted to be; it wouldn't be very difficult for me to add all of my desired features to SMF at this point. But then I think about SMF's horrible escaping mess which is guaranteed to cause security problems in the future...

All of the other forum software packages I've investigated have major problems which are IMO probably worse than just creating software from scratch, especially when we easily have the money.
3936  Economy / Services / Re: Looking for people to store some of the forum's money on: March 21, 2013, 02:01:15 AM
I find this thread interesting. I have a small forum that I run and have asked for donations to pay for the hosting fees. Once I accumulated  enough for the year I asked to cease donations. Is this forum just stashing money away from donations to pay for hosting services of course and for what else? If you guys have so much bitcoin and you are looking to divide it up because you have so much you really don't need to continue to take donations anymore, do you? Unless you are personally profiting your pockets with the donations. And this site also had advertisements on top of that. Looks like this forum is a money making machine here.

I figure that more money is better than less. It's not like I beg for donations or anything.
3937  Other / Meta / Re: What this forum do/did with donations? on: March 21, 2013, 01:57:53 AM
Here are all of the forum's expenses so far:

Code:
-25 hosting 2011-09-02

-10 error auth job 2012-06-18
-30 error auth job 2012-07-10

2012-07-10:
-1.54 sold to theymos at market rate
+$10.95
-$10.95 RapidSSL cost through NameCheap

2013-03-19:
-10 johnthedong year storage cost
-2.5 paraipan year storage cost
-1 Gar255 year storage cost
3938  Other / Beginners & Help / Re: encryption on: March 21, 2013, 01:32:36 AM
Use Klepatra. Copy your text, right click the Kleopatra icon, and choose "encrypt". The encrypted stuff will be on your clipboard.

Kleopatra sucks, though, so I often use the command-line. From the command-line, run something like gpg --encrypt --armor -r "theymos". Then enter your message and type Ctrl-Z when you're done.
3939  Other / Meta / Re: Self-moderated topics on: March 20, 2013, 03:18:30 AM
So, I verified that people other than the OP aren't able to delete posts in self-moderated topics. During my cleanup of that, however, the deletion I did of the post I made on my other account (which I made because that was the easiest way to get a session ID) via my Global Moderator account resulted in this message:
Quote
A reply of yours, quoted below, was deleted by the starter of a self-moderated topic.
I don't know whether this was intentional or not (since mods can delete posts that violate local rules even when the OP isn't around), but I thought that I'd give a heads-up.

Fixed.
3940  Economy / Auctions / Advertise on this forum - Round 75 on: March 20, 2013, 03:10:24 AM
In order to collect more money for the creation of good forum software, the forum is selling ad space in the area beneath the first post of every topic page.

Ads are allowed to contain any non-annoying HTML/CSS style. No images, JavaScript, or animation (no marquee or blinking). Ads must appear 3 or fewer lines tall in my browser. Ads will be prefixed with "Advertisement:". Ad text may not contain lies, misrepresentation, or inappropriate language. Ads may not link directly to any NSFW page. Ads may be rejected for other reasons.

There are 10 total ad slots which are randomly rotated. So one ad slot has a one in ten chance of appearing. Seven of the slots are for sale here. Ads appear only on topic pages with more than one post, and only for people using the default theme.

The ad lasts 7 days starting from when I put it up.

Stats

Exact historical impression counts per slot:
https://bitcointalk.org/adrotate.php?adstats

Info about the current ad slots:
https://bitcointalk.org/adrotate.php?adinfo

Auction rules

Post your bids in this thread. Prices must be stated in BTC per slot. You must state the max number of slots you want. When the auction ends, the highest bidders will have their slots filled until all eight slots are filled.

So if someone bids for 7 slots @ 5 BTC and this is the highest bid, then he'll get all 7 slots. If the two highest bids are 7 slots @ 4 BTC and 1 slot @ 5 BTC, then the first person will get 6 slots and the second person will get 1 slot.

The notation "2 @ 5" means 2 slots for 5 BTC each. Not 2 slots for 5 BTC total.

- When you post a bid, the bids in your previous posts are considered to be automatically canceled. You can put multiple bids in one post, however.
- All bid prices must be evenly divisible by 0.25.
- The bidding starts at 0.5.
- I will end the auction at an arbitrary time no more than 12 days from now. (I will probably end the auction 1-3 days before the ads are scheduled to go up.)
- If two people bid at the same price, the person who bid first will have his slots filled first.
- Bids are considered invalid and will be ignored if they do not specify both a price and a max quantity, or if they could not possibly win any slots

If these rules are confusing, look at some of the past forum ad auctions to see how it's done. I also post periodic status updates which should help make things clear.

You must pay for your slots within 24 hours of receiving the payment address. Otherwise your slots may be sold to someone else.
Pages: « 1 ... 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 [197] 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 ... 421 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!