No members are browsing this topic
|
|
Havasu Doug
Pisces
HDF Gold Supporter
Delta Tau Chi - ΔTX
North Padre Island, Texas
Posts: 12,188
APPD 1.52
Post Rank: 7
'78 Challenger jet
|
|
Posted: April 01 2024,5:37 pm |
Post # 2 |
|
Quote (Havasu Doug @ April 01 2024,8:07 am) | For a yet to be determined reason, the server switch was limiting The Totally Useless Thread III to 11,250 total posts. The database was accepting the posts, but viewing them was limited to 11,250. The temporary work around was deleting some non-significant posts from years back to get the total down to 11,250. The strange thing is there are other topics that are much longer? I will research and find the reason for this. Also, I have noticed an issue with the board not reporting members online correctly. Please feel free to let me know of other issues you guys notice. It's a personal challenge for me to fix them. |
Well I found the issue with the board not reporting active sessions correctly. A database column need to be modified to accept longer strings of data.
|
Back to top |
|
| Member # 1 | Joined: 12-02-2002 | |
|
|
GoFastRacer
HDF Supporter
V-Driver For Life!
Big River, Ca
Posts: 62,729
APPD 7.90
Post Rank: 1
Spectra20
|
|
Posted: April 02 2024,5:54 am |
Post # 3 |
|
I knew you'd figure it out sooner or later.
|
Back to top |
|
| Member # 101 | Joined: 3-03-2003 | |
|
|
BigDog
Not Float'n Enuff
Phoenix, AZ
Posts: 24,802
APPD 3.50
Post Rank: 3
'99 Searay 210 Sundeck
|
|
Posted: April 03 2024,3:37 pm |
Post # 4 |
|
Got to love Technology and it's programming strings.
Edited by BigDog on April 03 2024,3:37 pm
|
Back to top |
|
| Member # 1527 | Joined: 6-23-2005 | |
|
|
GoFastRacer
HDF Supporter
V-Driver For Life!
Big River, Ca
Posts: 62,729
APPD 7.90
Post Rank: 1
Spectra20
|
|
Posted: April 06 2024,7:42 am |
Post # 5 |
|
Quote (BigDog @ April 03 2024,3:37 pm) | Got to love Technology and it's programming strings. |
Yep!!.
|
Back to top |
|
| Member # 101 | Joined: 3-03-2003 | |
|
|
GoFastRacer
HDF Supporter
V-Driver For Life!
Big River, Ca
Posts: 62,729
APPD 7.90
Post Rank: 1
Spectra20
|
|
Posted: April 07 2024,5:33 am |
Post # 7 |
|
Quote (Havasu Doug @ April 06 2024,4:43 pm) | I'm going to play around with AI and rewrite some of the subroutines with it. If that fails, we'll revert to what currently works. |
That should be interesting.
|
Back to top |
|
| Member # 101 | Joined: 3-03-2003 | |
|
|
BigDog
Not Float'n Enuff
Phoenix, AZ
Posts: 24,802
APPD 3.50
Post Rank: 3
'99 Searay 210 Sundeck
|
|
Posted: April 07 2024,8:50 am |
Post # 8 |
|
Hmmmm?? AI?? I have to question if this is actually Doug. Can you prove your not a robot?
|
Back to top |
|
| Member # 1527 | Joined: 6-23-2005 | |
|
|
Havasu Doug
Pisces
HDF Gold Supporter
Delta Tau Chi - ΔTX
North Padre Island, Texas
Posts: 12,188
APPD 1.52
Post Rank: 7
'78 Challenger jet
|
|
Posted: April 07 2024,1:49 pm |
Post # 10 |
|
OK, here's an example of before. It is very primitive and inefficient, but it works.
Quote | sub mem_zodiac { my $data = shift; my $status = ' '; if ($data->{'POSTER'}->{'MEMBER_ZODIAC'} == 1) { return qq!Aries !; } elsif ($data->{'POSTER'}->{'MEMBER_ZODIAC'} == 2) { return qq!Taurus !; } elsif ($data->{'POSTER'}->{'MEMBER_ZODIAC'} == 3) { return qq!Gemini !; } elsif ($data->{'POSTER'}->{'MEMBER_ZODIAC'} == 4) { return qq!Cancer !; } elsif ($data->{'POSTER'}->{'MEMBER_ZODIAC'} == 5) { return qq!Leo !; } elsif ($data->{'POSTER'}->{'MEMBER_ZODIAC'} == 6) { return qq!Virgo !; } elsif ($data->{'POSTER'}->{'MEMBER_ZODIAC'} == 7) { return qq!Libra !; } elsif ($data->{'POSTER'}->{'MEMBER_ZODIAC'} == 8) { return qq!Scorpio !; } elsif ($data->{'POSTER'}->{'MEMBER_ZODIAC'} == 9) { return qq!Sagittarius !; } elsif ($data->{'POSTER'}->{'MEMBER_ZODIAC'} == 10) { return qq!Capricorn !; } elsif ($data->{'POSTER'}->{'MEMBER_ZODIAC'} == 11) { return qq!Aquarius !; } elsif ($data->{'POSTER'}->{'MEMBER_ZODIAC'} == 12) { return qq!Pisces !; } else { return ' '; } } |
Now, this is how AI rewrote it. Code Sample | sub mem_zodiac { my $data = shift; my $zodiac_signs = [ '', 'Aries', 'Taurus', 'Gemini', 'Cancer', 'Leo', 'Virgo', 'Libra', 'Scorpio', 'Sagittarius', 'Capricorn', 'Aquarius', 'Pisces' ]; my $sign = $data->{'POSTER'}->{'MEMBER_ZODIAC'}; return $zodiac_signs->[$sign] ? $zodiac_signs->[$sign] . "<br>" : ''; } |
|
Back to top |
|
| Member # 1 | Joined: 12-02-2002 | |
|
|
BigDog
Not Float'n Enuff
Phoenix, AZ
Posts: 24,802
APPD 3.50
Post Rank: 3
'99 Searay 210 Sundeck
|
|
Posted: April 08 2024,4:25 pm |
Post # 11 |
|
Interesting. MANY YEARS ago I played around with C+ setting up programming for call queuing on a Nortel system. Symposium was the application. I'll have to look and see if I still have some of the programs I setup.
|
Back to top |
|
| Member # 1527 | Joined: 6-23-2005 | |
|
|
GoFastRacer
HDF Supporter
V-Driver For Life!
Big River, Ca
Posts: 62,729
APPD 7.90
Post Rank: 1
Spectra20
|
|
Posted: April 09 2024,5:53 am |
Post # 12 |
|
Interesting for sure.
|
Back to top |
|
| Member # 101 | Joined: 3-03-2003 | |
|
|
BigDog
Not Float'n Enuff
Phoenix, AZ
Posts: 24,802
APPD 3.50
Post Rank: 3
'99 Searay 210 Sundeck
|
|
Posted: April 12 2024,3:35 pm |
Post # 13 |
|
It's finally the weekend. Been a long week. Need to give the Colorado a bath and hopefully the Silverado too. They are really bad. Other than that I don't have anything ells planed. I do need to get out there and clean up this garage and try to get rid of a few things like this frig'n tonneau cover off the silverado. And the old wheels and tires off the Colorado. Like to try to get the trailer out of the garage too.
|
Back to top |
|
| Member # 1527 | Joined: 6-23-2005 | |
|
|
GoFastRacer
HDF Supporter
V-Driver For Life!
Big River, Ca
Posts: 62,729
APPD 7.90
Post Rank: 1
Spectra20
|
|
Posted: April 13 2024,9:17 am |
Post # 14 |
|
What year is that Tonneau cover for?
|
Back to top |
|
| Member # 101 | Joined: 3-03-2003 | |
|
|
BigDog
Not Float'n Enuff
Phoenix, AZ
Posts: 24,802
APPD 3.50
Post Rank: 3
'99 Searay 210 Sundeck
|
|
Posted: April 18 2024,4:11 pm |
Post # 15 |
|
Sorry. This week has been a BIOTCH!!! Been real busy at work.
Not sure of the years it will fit, My Silverado is an 02, Normal short bed not the extra short one, Fleet side bed. I THINK... It will fit 99 to 07. White A.R.E. clamp on.
|
Back to top |
|
| Member # 1527 | Joined: 6-23-2005 | |
|
|
GoFastRacer
HDF Supporter
V-Driver For Life!
Big River, Ca
Posts: 62,729
APPD 7.90
Post Rank: 1
Spectra20
|
|
Posted: April 19 2024,5:44 am |
Post # 16 |
|
Bummer, kinda figured it was for a newer model, those won't fit square bodies.
|
Back to top |
|
| Member # 101 | Joined: 3-03-2003 | |
|
|
BigDog
Not Float'n Enuff
Phoenix, AZ
Posts: 24,802
APPD 3.50
Post Rank: 3
'99 Searay 210 Sundeck
|
|
Posted: April 19 2024,3:10 pm |
Post # 17 |
|
Yea I don't think it will fit. A.R.E molds then to look like the hood of the truck. This one is a GMC hood design. I'm glad I got his one instead of the Silverado. The Silverado looked like a hump back.
|
Back to top |
|
| Member # 1527 | Joined: 6-23-2005 | |
|
|
GoFastRacer
HDF Supporter
V-Driver For Life!
Big River, Ca
Posts: 62,729
APPD 7.90
Post Rank: 1
Spectra20
|
|
Posted: April 20 2024,5:52 am |
Post # 18 |
|
Yeah, beds are totally a different size and A.R.E shells without the side windows are just about extinct for a square body bed.
Edited by GoFastRacer on April 20 2024,5:52 am
|
Back to top |
|
| Member # 101 | Joined: 3-03-2003 | |
|
|
BigDog
Not Float'n Enuff
Phoenix, AZ
Posts: 24,802
APPD 3.50
Post Rank: 3
'99 Searay 210 Sundeck
|
|
Posted: April 22 2024,4:50 pm |
Post # 19 |
|
Didn't get a whole lot don this weekend. I did get the battery charger on the floater and got that fired off. Need to go and run the crap out of it in a real bad way with fresh fuel.
|
Back to top |
|
| Member # 1527 | Joined: 6-23-2005 | |
|
|
GoFastRacer
HDF Supporter
V-Driver For Life!
Big River, Ca
Posts: 62,729
APPD 7.90
Post Rank: 1
Spectra20
|
|
Posted: April 23 2024,6:01 am |
Post # 20 |
|
Yeah, leaving them sit for a long time is not good at all. Thought you were gonna put that up for sale?
|
Back to top |
|
| Member # 101 | Joined: 3-03-2003 | |
|
|
BigDog
Not Float'n Enuff
Phoenix, AZ
Posts: 24,802
APPD 3.50
Post Rank: 3
'99 Searay 210 Sundeck
|
|
Posted: April 25 2024,4:20 pm |
Post # 21 |
|
Was talked into keeping it. We will see how much it gets used this summer.
|
Back to top |
|
| Member # 1527 | Joined: 6-23-2005 | |
|
|
GoFastRacer
HDF Supporter
V-Driver For Life!
Big River, Ca
Posts: 62,729
APPD 7.90
Post Rank: 1
Spectra20
|
|
Posted: April 27 2024,7:57 am |
Post # 22 |
|
Well, if it's paid off it don't hurt just need to up the maintenance on it.
|
Back to top |
|
| Member # 101 | Joined: 3-03-2003 | |
|
|
BigDog
Not Float'n Enuff
Phoenix, AZ
Posts: 24,802
APPD 3.50
Post Rank: 3
'99 Searay 210 Sundeck
|
|
Posted: April 28 2024,7:46 pm |
Post # 23 |
|
Yea it's paid off, Just Maintenace and insurance is all I have to keep up on it.
Got into a project over the weekend. I went and ran a cable from the office to the living room and hard wired the TV to the network to get it off the WiFi. OH did I mention I went and got a 75" TV up from the 55" we had. Got a Hisence from Best Buy. Going directly to the router seems to helped the picture and performance all around. Should have mowed the yard but the wind SUCKED.
|
Back to top |
|
| Member # 1527 | Joined: 6-23-2005 | |
|
|
GoFastRacer
HDF Supporter
V-Driver For Life!
Big River, Ca
Posts: 62,729
APPD 7.90
Post Rank: 1
Spectra20
|
|
Posted: April 29 2024,7:37 am |
Post # 24 |
|
We went to a 75" TCL Roku last year what a difference that made, I'm on Wi-Fi but I'm close to the router so it didn't make any noticeable difference between hard wired and W-Fi.
Edited by GoFastRacer on April 29 2024,7:38 am
|
Back to top |
|
| Member # 101 | Joined: 3-03-2003 | |
|
|
BigDog
Not Float'n Enuff
Phoenix, AZ
Posts: 24,802
APPD 3.50
Post Rank: 3
'99 Searay 210 Sundeck
|
|
Posted: May 05 2024,6:47 pm |
Post # 25 |
|
Seemed to make a little difference. A couple things I was watching it would buffer every now and then. I'm not getting that now. BUT, I think my router may be heading to the big one in the sky. Speed seems to be fluctuating real bad. Went back and this router is 3 1/2 years old. I have another one I think I'm going to setup and connect it up. I have nothing to lose.
Been real busy around here. Spent Saturday all day on the yard edging, mowing, Weed spraying, watering the yard and the tree's. Beginning of the week we had a bee issue. They decided to make them self's at home in a hole in a root of one of the tree's. They lost that battle and now gone.
|
Back to top |
|
| Member # 1527 | Joined: 6-23-2005 | |
|
|
Please help keep HDF free. If you
enjoy this site, feel free to make a donation to keep it running. THANKS!