Overclock.net banner
7,121 - 7,140 of 7,613 Posts
Quote:
Originally Posted by Unknownm View Post

Quote:
Originally Posted by xxpenguinxx View Post

They're really inconsistent about PC replacements too. They replace some user's PCs every single year, but there's still 10+ year old Windows XP machines in use. They run an air filter weighing facility for air born contaminants. It's not on a network, it only outputs measurements. The software only ran on XP and older, so the IT group made them replace the entire system, somewhere around $200K to rebuild the clean room to fit the new machine. Meanwhile, there still agencies run XP machines that are on the state's network...

I want to rant about more, but don't wanna get too political.
I agree! I'm working @ liquor delivery company and we have to stop by liquor stores to pick up and most computers use Windows 7 which is a Client PC but I've seen a couple of them run Windows 2000 which is beyond LAZY. HELLO! we are taking about thousands of dollars transactions and they feel fine connecting win 2000 to the internet
The water jet I run at my work still runs XP. It's from 2004 and we've blown up 2 computer on it (lighting) and as far as I know our IT guys just has a clone of the hard drive and rebuilds the thing from whatever we have laying around at our shop, which probably needs to be put out to pasture any because we are small time machine/fab shop so anything we have laying around is already 6+ years old. But there is a specific PCI card that handles all the motion controls and I think the software/drivers may only work on XP. That or my boss doesn't like to spend money on repairs/upgrades/preventative maintenance so we just deal with what we have.
 
Quote:
Originally Posted by animal0307 View Post

Quote:
Originally Posted by Unknownm View Post

Quote:
Originally Posted by xxpenguinxx View Post

They're really inconsistent about PC replacements too. They replace some user's PCs every single year, but there's still 10+ year old Windows XP machines in use. They run an air filter weighing facility for air born contaminants. It's not on a network, it only outputs measurements. The software only ran on XP and older, so the IT group made them replace the entire system, somewhere around $200K to rebuild the clean room to fit the new machine. Meanwhile, there still agencies run XP machines that are on the state's network...

I want to rant about more, but don't wanna get too political.
I agree! I'm working @ liquor delivery company and we have to stop by liquor stores to pick up and most computers use Windows 7 which is a Client PC but I've seen a couple of them run Windows 2000 which is beyond LAZY. HELLO! we are taking about thousands of dollars transactions and they feel fine connecting win 2000 to the internet
The water jet I run at my work still runs XP. It's from 2004 and we've blown up 2 computer on it (lighting) and as far as I know our IT guys just has a clone of the hard drive and rebuilds the thing from whatever we have laying around at our shop, which probably needs to be put out to pasture any because we are small time machine/fab shop so anything we have laying around is already 6+ years old. But there is a specific PCI card that handles all the motion controls and I think the software/drivers may only work on XP. That or my boss doesn't like to spend money on repairs/upgrades/preventative maintenance so we just deal with what we have.
As long as a computer is kept completely isolated from the internet and other computers (this includes the use of thumb drives, etc., older operating systems can be used safely. The designers of computer operated machinery should design their systems to be upgradable to newer OSes, though. The company I receive my pension from had to scrap several carousel storage systems because the cheaped out and bought an older system that couldn't be upgraded. We had them in use only a year or two before having to scrap them out when they couldn't be integrated with Window XP when the company upgraded to XP.
 
the computers at my work still run windows XP excluding that smaller computers that just send data and pimp chemicals based of the my computer witch links to a secondary one upstarts. i work for PSU landry and i run the 5-mod tunnel washer i dont know if the Milnor software is compatible for a different os but i know it was programmed for our Landry for our unique setup, so probably not. whats kinda funny is this Landry was built in 2012 and they still stuck with good ole XP.

also back to a slightly older conversation, as some one who mildly collects crt's i take great offence to the government then. if i had a car i would have a pretty good collection, but even though its easy to find a crt, going on 23 and i still cut it close with bills so no car any time soon(if my dad or his wife got a job that problem would go away).

also have my living room like area for the crt's, it no longer looks like this as i have destroyed most of the black plastic crap TV's

looking back on it most of the black plastic crap tv's are behind the 36" so i guess it didn't change to much. altho admittedly i have the tv's scatterd cuz i wanted to play around with my crt tester.

the only newer tv's i realy care about is the trinitrons.


and since im posting tv pics my bedroom tv.


also i was chasing a dirty contact on the blue screen control on this TV but i poped my crt tester on it only to see blue emission is all over the place.
 
Bought some cheap RGB strips and it came with a very basic controller which whined for some reason based on the brightness.. Now very happy with the settings it provided. It didn't have the rainbow cycle, the "Smooth" setting was just multi color breathing mode and strobe just flashed the different colors. My motherboard doesn't have AURA so I can't control it that way either..

I have a Raspberry PI 3 laying around with no use for it. Maybe I could hack something together..


This is the controller and the remote for it.


So, I opened the controller and it has a very basic PCB.


I desoldered the chips (Ripped off some traces too, oh well.. I wont restore it back anyway) and soldered some ribbon cable to the mosfet legs and to the ground. I also soldered a wire ti the IR sensor data pin, maybe I could program it to control the settings. The Raspberry PI detects the sensor and it is working.


Connected the ribbon cable to a floppy connector which fits nicely on the PI.



Connected to the Raspberry PI.

Wrote some code to control the lights with Python. I have actually never wrote Python before and I just threw this together in a day, so it might not be pretty.. But hey, it works! I have to implement a way to change the settings rather than editing the source code.
Code:

Code:
#!/usr/bin/python
'''
    Raspberry PI LED strip controller.

    This uses pi-blaster software PWM to control the GPIO pins.
    https://github.com/sarfata/pi-blaster

'''

''' Import stuff '''
import sys
import os
import time

''' Global variables '''
# GPIO pins for the LED strip channels
gpio_r = 23;
gpio_g = 24;
gpio_b = 25;

# Brightness 0-100%
brightness = 100.0;

# Delay 0-1000ms
delay = 10;
speed = 10;

# Predefined colors
color = "ff00ff";
colors1 = "ff0000", "ffff00", "00ff00", "00ffff", "0000ff", "ff00ff";
colors2 = "ff1010", "ffff10", "10ff10", "10ffff", "1010ff", "ff10ff";

''' Color format conversion '''
# Converts hex to rgb array
def hex_to_rgb(value):
    value = value.lstrip("#");
    lv = len(value);
    return tuple(int(value[i:i+lv/3], 16) for i in range(0, lv, lv/3));

# Converts rgb array to hex
def rgb_to_hex(rgb):
    rgb = eval(rgb)
    r = rgb[0]
    g = rgb[1]
    b = rgb[2]
    return '#%02X%02X%02X' % (r,g,b)

# Sets the led strip color
def setcolor(rgb):
    pwm_r = "echo %d=%f > /dev/pi-blaster" % (gpio_r, (rgb[0] / 255.0) * (brightness / 100.0));
    os.system(pwm_r);
    pwm_g = "echo %d=%f > /dev/pi-blaster" % (gpio_g, (rgb[1] / 255.0) * (brightness / 100.0));
    os.system(pwm_g);
    pwm_b = "echo %d=%f > /dev/pi-blaster" % (gpio_b, (rgb[2] / 255.0) * (brightness / 100.0));
    os.system(pwm_b);
    time.sleep(delay / 1000.0);

# Helper to set the color with a hex value
def setcolor_hex(hexcolor):
    setcolor(hex_to_rgb(hexcolor));

''' Color manipulation '''
# Shifts the color from one value to the next
def shiftcolor(rgb1, rgb2):
    rdiff = (rgb1[0] - rgb2[0]) * 1.0;
    gdiff = (rgb1[1] - rgb2[1]) * 1.0;
    bdiff = (rgb1[2] - rgb2[2]) * 1.0;
    newcolor = rgb1;

    speedmult = 1000 / speed;

    for i in range(0, speedmult, 1):
        newcolor = int(rgb1[0] - ((rdiff / speedmult) * i)), int(rgb1[1] - ((gdiff / speedmult) * i)), int(rgb1[2] - ((bdiff / speedmult) * i));
        setcolor(newcolor);

# Shifts the color in hex
def shiftcolor_hex(hex1, hex2):
    shiftcolor(hex_to_rgb(hex1), hex_to_rgb(hex2));

''' Modes '''
# Flashes the color on and off
def flash(hexcolor):
    setcolor_hex(hexcolor);
    time.sleep(10 / speed);
    setcolor_hex("0000");
    time.sleep(10 / speed);

# Flashes between the colors in the colors array
def strobe(colors):
    for i in range(len(colors)):
        setcolor_hex(colors[i]);
        time.sleep(10 / speed);

# Sigle color breathe mode
def breathe(hexcolor):
    shiftcolor_hex(hexcolor, "0000");
    shiftcolor_hex("0000", hexcolor);

# Multi color breathe mode
def multi_breathe(colors):
    for i in range(len(colors)):
        shiftcolor_hex("0000", colors[i]);
        shiftcolor_hex(colors[i], "0000");

# Cycles smoothly between the colors in the colors array
def cycle(colors):
    for i in range(len(colors)):
        if(i < (len(colors) - 1)):
            shiftcolor_hex(colors[i], colors[i + 1]);
        else:
            shiftcolor_hex(colors[i], colors[0]);

''' Main program '''
setcolor_hex("000000");

print("Small demo of the Raspberry PI");
print("RGB LED strip controller I made");
print("");
time.sleep(2);

print("Single color flash");
flash(color);
flash(color);
print("Strobe");
strobe(colors2);
print("Single color breathe");
breathe(color);
breathe(color);
print("Multi color breathe");
multi_breathe(colors2);
print("Rainbow color cycle");
cycle(colors2);

while True:
    cycle(colors2);

A small demo of the different modes. Sorry about the quality and the camera kept auto-adjusting..
I had to RMA my GPU so that's why there is a 8-pin power cable floating and I ran the 6-pin cable to my old GPU so that I can easily remove it when I get the replacement.
biggrin.gif
The software PWM frequency is only 100Hz, so it creates an interesting effect on the fans at low brightness:
 
Does this belong here?



Bought a Asus P5E3 Premium Wifi-@N motherboard off ebay for $40, then went and bought a box of core2duo 6MB wolfdale chips for another $30 for 45 chips. Temporary 2x120mm radiator and pump from a spare system and about 2ft either way of tubing to a waterblock for temporary overclocking. Haven't killed any chips yet but did manage to find one that could take 2.1v vcore and only run about 80c - 85c in benchmarks under water, 5.2 ghz is the best I've got so far. Still got more chips to play with when I get time for it.

Temporary setup on a table because it's easier to swap parts in a setup like this. The whiteness in the lines when I took this photo is air bubbles, had just rebuilt the loop and didn't get the air bled out yet.

Seasonic 1KW Platinum power supply down there and testing it with a EVGA GTX-260 Classified card. 4x1GB DDR3-1066-ECC chips (this board supports ECC), clocked currently at 1588 Mhz @ 1.95v, I have 6 sets of 4 of these ram sticks.. dirt cheap today I think they're like $2/stick or less on ebay. It's fun playing with overclocking these chips today because they're so damn cheap.
 
Not actually that ghetto, after looking at some complete states on this thread... Some of you should be ashamed
wink.gif






 
Quote:
Originally Posted by haha216 View Post

Not actually that ghetto, after looking at some complete states on this thread... Some of you should be ashamed
wink.gif





just start ducttapeing things, duct tape is ghetto on a roll. i wonder if its ghetto to use contractors tape or 500mph tape as both of thoes are expensive versions of ductape. my self i stick with rustolium and Trex tape depending on the job.
 
I found videos of homemade ice chest coolers online and figured I'd test out making a smaller version. Seems to work pretty well. Right now I have ice cubes in it but I plan on freezing water in it instead. I don't think these ice cubes will last long.

Luckily I do have ac but still a quick and fun project.

Used,
80mm USB powered fan
A container from my local Chinese restaurant
A top from coffee cream
Some ice from the freezer covered in salt





*And no, I wouldn't recommend something on this small of a scale to be an ac replacement. I also wouldn't recommend running out and spending money on this. I just already had the supplies and tools to do it.

Froze some water in the container. This should last a while. =D

 
i have a couple of op coming projects im working on and 1 is ghetto and pointless. i have removed the yoke from a crt and turned down the second grid voltage to avid burning then slid on a diffrent yoke not compatible with the set. that yoke is going to go to the left and right channel of a 2ohm stable amp. im gonna try using a function generator on on channel with a sawtooth and a test singal on other and see if it can be adjusted as a not horrible ghetto scope. if so i should be limited by the max frew of my function generator which is 100hkz witch would be quite horrible for a scope but a interesting project either way.

ita gonna take me a bit to get to as i plan on repairing a amber monitor before i get to it.
 
hi readers!

This pc is completely free! the i7 - mobo - ram - hdd was from my step moms office where they just threw away Ivy-bridge working units (she grabbed one for me knowing I collect). The Case - PSU is from uncles place originally had p4 system inside which is gutted and replaced with that i7.

I could of kept the original Dell case that came with the system but I threw it out as at the time I wanted open case. Now to help a friend out I made this

Cost: $0

This is gonna replace his Wii u for everyday tasks




 
Quote:
Originally Posted by Unknownm View Post

hi readers!

This pc is completely free! the i7 - mobo - ram - hdd was from my step moms office where they just threw away Ivy-bridge working units (she grabbed one for me knowing I collect). The Case - PSU is from uncles place originally had p4 system inside which is gutted and replaced with that i7.

I could of kept the original Dell case that came with the system but I threw it out as at the time I wanted open case. Now to help a friend out I made this

Cost: $0

This is gonna replace his Wii u for everyday tasks



Wow! That's awesome! It's really hard to beat free.... I think your buddy is going to be stoked about this.
thumbsupsmiley.png
 
Quote:
Originally Posted by blaze2210 View Post

Quote:
Originally Posted by Unknownm View Post

hi readers!

This pc is completely free! the i7 - mobo - ram - hdd was from my step moms office where they just threw away Ivy-bridge working units (she grabbed one for me knowing I collect). The Case - PSU is from uncles place originally had p4 system inside which is gutted and replaced with that i7.

I could of kept the original Dell case that came with the system but I threw it out as at the time I wanted open case. Now to help a friend out I made this

Cost: $0

This is gonna replace his Wii u for everyday tasks



Wow! That's awesome! It's really hard to beat free.... I think your buddy is going to be stoked about this.
thumbsupsmiley.png
we can get him to play some basic steam games. HL2 - CSS maybe CSGO and lots of emulators
smile.gif
 
Quote:
Originally Posted by Unknownm View Post

we can get him to play some basic steam games. HL2 - CSS maybe CSGO and lots of emulators
smile.gif
YESS!!! I love my emulators. Sometimes you just wanna go back to the old days. I was just playing some "Turtles in Time" and "The Punisher" a couple days ago. One of the best parts is how little space most of them take up - I have 794 SNES games, and they only take up 657MB.
biggrin.gif
 
Quote:
Originally Posted by blaze2210 View Post

YESS!!! I love my emulators. Sometimes you just wanna go back to the old days. I was just playing some "Turtles in Time" and "The Punisher" a couple days ago. One of the best parts is how little space most of them take up - I have 794 SNES games, and they only take up 657MB.
biggrin.gif
Oh hell,

Raspberry pi 3 sit-down arcade
Jamma 60-in-1 cocktail arcade

I disassembled the top one for space but the bottom one is stored behind my sofa. The top one used a Raspberry pi3 and the bottom is a Jamma 60-in-1.
 
Quote:
Originally Posted by Chargeit View Post

Oh hell,
Raspberry pi 3 sit-down arcade
Jamma 60-in-1 cocktail arcade

I disassembled the top one for space but the bottom one is stored behind my sofa. The top one used a Raspberry pi3 and the bottom is a Jamma 60-in-1.
Very nice! That's a nice little personal arcade machine - way more comfortable than having to stand.
biggrin.gif
That bottom one reminds me, a local sandwich shop still has the tabletop Pac-Man in their dining room. Brings back memories....
 
Quote:
Originally Posted by blaze2210 View Post

Very nice! That's a nice little personal arcade machine - way more comfortable than having to stand.
biggrin.gif
That bottom one reminds me, a local sandwich shop still has the tabletop Pac-Man in their dining room. Brings back memories....
Thanks!

Yeah the top one worked great but took up a lot of space so I pulled the hardware out of it and stored it. Also I like my raspberry pi 3, but, I really started feeling like I was just using a fancy computer after a few weeks.

I really like the bottom one. Being jamma it's basically an arcade. I could of set it up to take quarters had I wanted. Only problem is no where to put it. I had it on saw horses which worked great but looked bad. Really gave me that nostalgia hit playing it though.

Both of them were fun projects and one of these days I want to make wine barrel cocktail arcade. All I need is a wine barrel and I'm on it. Not easy to find here in the eastern us.
redface.gif
 
@Unknownm
How did you manage to get that X1950 working in Win 7? I would like to know as I cannot find any dirvers that will work.
 
Quote:
Originally Posted by Chargeit View Post

Thanks!

Yeah the top one worked great but took up a lot of space so I pulled the hardware out of it and stored it. Also I like my raspberry pi 3, but, I really started feeling like I was just using a fancy computer after a few weeks.

I really like the bottom one. Being jamma it's basically an arcade. I could of set it up to take quarters had I wanted. Only problem is no where to put it. I had it on saw horses which worked great but looked bad. Really gave me that nostalgia hit playing it though.

Both of them were fun projects and one of these days I want to make wine barrel cocktail arcade. All I need is a wine barrel and I'm on it. Not easy to find here in the eastern us.
redface.gif
I can see that. It looks like it would definitely eat up some space. That is certainly the issue with stuff like this - where to put it? Not everyone has space for a "dedicated gaming room/area". Very cool stuff to have though.

I did a little bit of searching for barrels, and it kinda looks like most of the ones I saw are here in Cali. That's a bit of a bummer.... Though, I'll try to keep the barrels in mind when I'm just looking up random things online.... I enjoy having things to search for, and can't always think of enough things myself. Also, I'd love to see what happens to the barrel.
biggrin.gif
 
Quote:
Originally Posted by DR4G00N View Post

@Unknownm
How did you manage to get that X1950 working in Win 7? I would like to know as I cannot find any dirvers that will work.
THESE (64-bit) maybe you can find 32-bit alternative.

Try finding BETA 10.2

 
7,121 - 7,140 of 7,613 Posts