[php][/php]
Funny, the [noparse] tag doesn't count towards the 4 char minimum.
Printable View
[php][/php]
Funny, the [noparse] tag doesn't count towards the 4 char minimum.
So, the VB button with PHP didn't cause a duplicate?
PHP Code:
If ThisBLove Then
So, the VB button with PHP didn't cause a duplicate?
PHP Code:
If ThisBLove Then
Well, no. I guess it's the VB button.
Still, while this is suggestive, it really doesn't apply to the other forums. However, the fact that Chit-Chat seems to be alone in the fact that you don't get duplicates should be a pretty solid clue.
Considering that posts don't count in the Chit-Chat, it should give us a clue.
????vb.net Code:
duplicate?
????vb.net Code:
duplicate?
:eek: it worked!
In at least one way, I do appear to have poisoned the Post Race. Perhaps somebody else can confirm this:
I am now seeing a very large number of those PHP error lines at the top of the page when I go to Post Race. More than I see on any other thread. I also note that all the duplicates in this thread have been retained. What I'm thinking is that the PHP error lines are not a separate issue from the duplication, but are part of the issue. The fact that there are now several duplicate posts in this thread, and the fact that they have not been cleaned up, is the reason for all the PHP error lines.
However, if nobody else is seeing the PHP error lines, then I may be off track on that. I don't remember seeing any before I started messing with this duplicate thing. Now there are 12 lines permanently visible at the top of the page.
HA! There are six duplicate posts on the page I'm seeing for the Post Race, which starts with post #63401. There are 12 PHP error lines. When I go back to the last page, there is only one duplicate, and that page has only 2 PHP error lines. Therefore, there are twice as many PHP error lines as the number of duplicate posts (in case any of you are math challenged).
I believe we can fill the page with PHP errors by getting enough duplicates onto the page, but somebody has to confirm the observation of the PHP errors at the top of the page.
I also see 12 PHP errors. And I have noticed the number of those errors is not stable.
So, if I am right, then this should result in 14 PHP errors:
vb Code:
Dim bulb As Null
So, if I am right, then this should result in 14 PHP errors:
vb Code:
Dim bulb As Null
Yep, there are now 14!!
omg - Post Race showed a true purpose just now. This is historic - I simply am in awe!
Funny how we can debug the website issues by using the Post-Race!
Post race having a purpose?! We're living in a post post race world.
Well, you know what they say about an infinite number of monkeys typing on a typewriter will accomplish, so it was actually inevitable. :p
p.s. I guess it was one monkey for an infinite amount of time. Oh well, I guess I was thinking an infinite number of monkeys on an infinite number of typewriters would make it faster, but I guess in my transposition of the theory there wouldn't be any space left so the universe would end as we know it.
That is truly Planet of the Apes!
And here I always thought that most theories of the universe end with 42!
Well, looking a little further down the page, I saw a few hits did say infinite number of monkeys, so that is probably the way I heard it 50 years ago when I was just a kid. Didn't have the presence of mind then to think that an infinite amount of any substance would by definition fill all space so is an illogical supposition. One monkey with an infinite amount of time would be all you need, and would be sustainable.
That brings to mind a "simple" puzzle that a roommate bought in 1976 while I was attending a school in California. I think is was a 5x5 grid of tiles, each tile divided in quarters with the quarters filled with a solid color. You had to place the tiles in the grid so that all the edges matched the adjacent tiles.
Simple enough, and you could always work your way fairly quickly down to a few tiles that didn't match, so swap pieces around and keep trying.
I looked at the box and it said, as far as they know, there was only one solution.
I looked at the puzzle, then looked at the person who bought it, and said I wouldn't even bother trying to play with it. It seemed extremely pointless to me.
He wondered why, so I told him the box says there is only one solution. and since many of the tile edges easily match other tile edges, the chances of getting the solution was astronomical, and a waste of time.
I said if there is only one solution, then the first tile you pick has to the right tile (1 chance in 25) and has to be in the right orientation (1 in 4), so you have a 1 in 100 chance of placing the first tile correctly, and of course you don't know if you did. Now you have to place the second tile, and there are quite a few tiles that will match, and in possible different orientations, so you have to multiply the number of matches times your original 100 to figure out the chance of getting two tiles placed correctly, and of course you don't know if they are.
Carrying on to the third, then fourth, etc... there could be billions of combinations (or more), so you could spend the rest of your life messing with that puzzle to try to hit the solution.
Of course, now that we have computers readily available, it could be an interesting programming exercise, so writing a program to solve the puzzle could be fun, but solving the puzzle manually was not something I even wanted to try as it seemed utterly pointless.
They should have made it so that there were NO solutions. It would have been FAR easier, while reducing the number of possible solutions by only one.
Reminds me of the original "Lights Out" game. There you had a 5x5 matrix of buttons that could light up. The game would present you with pattern of lights, and you would press on one of the lit buttons to turn it off, but it would also toggle the state of the immediately adjacent buttons horizontally or vertically, so if the button was on, it would go off and vice versa. Essentially a graphic example of the XOR function of a plus pattern with the button you pressed in the middle.
The original game had three modes, the first mode had 50 predefined games in increasing difficulty. The second mode would auto generate random puzzles. The third mode would allow you to enter a pattern, one light at a time. The rub there, was stated somewhat obliquely:
That stuck me as an illogical statement.Quote:
Note: it is possible to create a puzzle that is so difficult, it may not have an answer!
If a puzzle doesn't have an "answer", it isn't "difficult" it is unsolvable. There is no solution, so there is no level of difficulty.
Later, when I wrote a program to solve the puzzles, I discovered that actually, 75% of the patterns you can create are unsolvable. There are 25 lights, they have 2 states, so you have 2^25 possible patterns, i.e. 32M or 33,554,432 patterns (including the already solved pattern of no lights on). Therefore there are 8,388,608 patterns that are solvable (of course that considers the same pattern, only rotated as a different pattern) leaving you with over 24 million patterns that are unsolvable.
I think the game should have included a way of telling you that the pattern was not valid, rather than let you enter an unsolvable game.
I wrote my solver in VB3, and used a brute force method originally using the GUI code so took about 20 minutes to test 33+ million possible guesses to find the solution. I found out every solvable puzzle actually had four solutions, which was an interesting tidbit. I later worked on improving the processing so got the brute force method down to about 2 minutes, and then came to the realization, that if a puzzle is solvable than any move you make can only create a solvable pattern. Likewise if a puzzle is unsolvable then you can only create other unsolvable patterns playing the game. Seems obvious, right.
Knowing that, it was a simple matter to reduce any pattern down to a single row of lights, so then you only had a maximum of five lights set (i.e.) a set of 32 patterns. Since only 8 of those patterns could be solvable it was a simple matter of checking the five lights as bits giving you a number 0 to 31 and see if it was one of the 8 solvable patterns.
So, I could verify instantly as you entered a pattern whether it was solvable or not, and give an indication so you wouldn't create an unsolvable game. As an extension, I could also now use that information to create another small lookup table to instantly solve any puzzle as well, giving you the four solutions to any puzzle in a few microseconds (I'm assuming not nanoseconds).
Sounds a little like the Game of Life. There's probably a general class of problem with binary cells where toggling cell N causes some surrounding set of cells to toggle in some fashion. Hilarity ensues.
Geaux tigers!
Fall is upon us. I've fired up the wood stove for the first time...unfortunately, I only have enough wood left for about two days. Fortunately, the temperatures should reach the 80s for the rest of the week.
80's? How's that for a lumbering temp?
I'd say it's lumbering right along. It's currently in the 40s, and won't get to 70 today. I felt that to be a bit cool. My computer just can't warm the house enough.
We were supposed to get a cool front, but it never manifested; instead we've had rain everyday except for 3 days this month. Right now it feels pretty good though, we're at 80 degrees with 84% humidity so the feels like is at 87 and our high today won't top 90 either. I just wish that it'd stop raining, I need to cut my grass!
Had beautiful mountain biking weather yesterday.
Where are you? Haven't seen you around in a while, but you used to be in the burning state.
I just bought a 2004 Honda Rebel, unfortunately it has been raining literally every day this month so I haven't been able to really ride it.
I've never owned or ridden a motorcycle before, but I did get to try it out yesterday. It was easy enough, though I almost bit it when I parked it because I hit a patch of mud.
My problem is with shifting the gears. I only got it up to 2nd gear, but I seem to have a tough time bringing it back to neutral for some reason.
We're getting rain. It's our first rain in months. We might even top a tenth of an inch. I don't remember getting that much rain since....maybe April...or March. In fact, I don't remember getting ANY rain in that long, though I heard some story that it did rain one day in July, while I was out of the state hiking.
I haven't ridden a bike in years, but back in the day (40 years ago) with a Yamaha never had a problem getting into neutral.
Sounds like it isn't an uncommon problem with the mid 2000 Rebel, or some other bikes.
Some comments and "solutions" at this link. https://www.motorcycleforum.com/129-...nda-rebel.html
Man, I'm glad that I'm not the only one. I felt a little embarrassed because the guy who sold me the bike (and was helping me learn how to ride) kept coming over and doing it for me with his hands.
I am back in the (not currently (to my knowledge)) burning state. I was living in Michigan for just under two years but moved back here to California about 3 months ago.
I still try and sneak around here to check out the buzz but never post. Earlier today I was reminiscing on the good ol' days of MSN messenger and chatting with folk from here.
Just went through some of my early post history on here... smh at 15 year old me.
Almost half a life time ago for you now. Make's me think of the lyric, "He was born in the summer of his 27th year, coming home to a place he'd never been before".
Except, in this case you have been here before.
It just wasn't quite as charred.
I'm headed to Albuquerque today to visit my father. Then we'll go up into the mountains in Colorado. We've pushed this trip a wee bit late in the year. The temperatures where we're going might work against much sightseeing.
Watch out for hot dogs and jumping frogs
I don’t get it.
I don’t know what I’m the hell I just watched...
I don't quite understand how it is relevant....to anything.
I am the current winner
I am new user in this Bord, how to achieve goals
Depends on what the goal are. Start a thread in one of the programming forums asking a question about that language might do, but it really depends on the goals.
Post Race is mostly just insane rambling.
You only ever post in the "Post Race".
Sup guys! Im finally back. Been busy working but slowed enough to have some time to post :wave:
And THIS is where you spent your precious time? Post Race?
Yes! Absolutely! I can never forget my VBF friends lol
I was going to suggest that, too, but posting in the Post Race is kind of an 'own goal' situation.
Happy Friday guys!
Its our dogs birthday today, turning the big 1 :D
My friend's dog just passed away yesterday, but it was a long time coming. She went blind and mostly deaf, poor thing had trouble going outside just to urinate.
Was it Friday then? This has been a pretty strange couple of weeks.