IMSI Anyone?
So, I originally had this in /tech/ but decided to move it because, well, that was a rather stupid place to have it.heatsink mods & cooling
hi /diy/, I was wondering if anyone has tips on modifying stuff like routers and single-board computers with heatsinks and/or fans. I've had a couple routers basically burn out on me because they basically had no way to disperse heat, and as far as I can tell there's no such thing as a consumer wifi router that has fans or real heatsinks.ITT: Share DIY information/links/etc
I'll post a good resource for DIY and more:3d printing general
I started one back when there was no /diy/, but seeing that now we have a dedicated board let's start this again.Ghetto Wine-Making
So I'm in the dorms at a US college and since I'm pretty nerdy and socially awkward like most of us, there's really no opportunities to get alcohol until I'm 21. So I decided to take the DIY approach.Blacksmithing
Hello lainons!I need help
Hi lainons. I need a device that can play a music file stored in a SD card/USB key(I already have the amplifier, just need an audio exit) depending on an Arduino output. The MP3 shield costs as much as a Raspberry, so which should I choose? There are cheaper alternatives? Also, I never used a Raspberry before. Thanks.DIY DE
Lets learn\practice Riceing DE's together.NAS configuration
I intend on building a small NAS for the purpose of file storage and backups. I have two questions, the first regarding the computer being used for the server. I was looking at getting the HP G1610T ProLiant Micro Server and also another 8GB of ram to go with it. Is this a good choice or should I go the whitebox route or with some other pre-built computer?Plastic Bottles
I'm fishing for ideas. I'm accumulating notable amounts of plastic bottles. They're sturdy and in good condition. My state doesn't have a recycling program for me to directly sell them, but it seems like a terrible waste of good resources to toss them out. Apart from basic arts and crafts stuff, does anyone have any suggestions for what I could do as a project? I've got trash bags full of these.Lainchan Projects
Hello lains. I really liked the idea of the Weekly Project and started to think about the possibilities.Omnibot 2000
Just got an Omnibot 2000 with a missing controller and a left hand that keeps coming off. I'll be purchasing a new battery for it pretty soon but after that I'm not entirely sure what to re-purpose it as. I have a power glove I'm pretty close to getting to connect with my computer as a peripheral so retro-future-izing is a sort of hobby of mine. Should I gut the bot and completely replace it all to make it run off completely new technology? Should I outfit it with omnibot replacement parts and have it perform as it's supposed to? Should I turn it into a mobile computer tower? I really just don't know. The thing is over 2 feet tall and 1 foot long and wide so it's pretty damn hefty.Thinking green
How do we move to green fronts as /diy/ people? What could we construct, what tools could we use? What things can we build ourselves, and what things can we create without using scarce resources? Stuff like alternatives to plastic made from oil and other materials, aswell as harvesting, making stuff more efficient and less resource needyArcade Repair
Sup /diy/How to make Sauerkraut
So a lainfag in the irc suggested I make a thread in this slowest of slow boards about making your favorite sour cabbage treat, Sauerkraut.DIY Virtual Reality Headset
Hey lainons, I'd like to make an virtual reality headset and I own a car monitor similar to pic related.Android suit
Hey lain, Do you use usb otg? I'm currently looking into building myself a cybersuit with the fallowing spec:Anechoic/Faraday using underground shelter shipping container
How feasible it is? How much overall cost to do it?[Request] Alienware M11x(R2) High-Resolution Motherboard Images
Got a problem, and somebody on 4chan said lain /diy would be better equipped to help me with it than /g.file server + electricity manager
I'll buy a raspberry pi and make a file server + electricity manager with it.CLUSTER / PARALELL COMPUTING
I'm thinking of creating a cluster computer out of my three raspberry PI's. Eventually my PC's too, if it works out well. Or parallell computing. Pros/cons for small/large systems?
var spawn = require('child_process').spawn;
var fs = require("fs");
var serial=0;
var http = require('http');
var server = http.createServer(function (req, res) {
serial++;
var s = serial;
//clear the downloads directory when you restart the app or it will show the wrong videos.
var file = "downloads/temp"+s+".mp4";
var grep = spawn('./youtube-dl',["-o", file, req.url.substring(1)]);
grep.on('close', function (code, signal) {
var fileStream = fs.createReadStream(file);
var mimeType = "video/mp4";
pipeReadstream ( req, res, fileStream, mimeType, function ( err ) {
console.log(err);
});
});
});
server.listen(8567);
// pipe some stream as HTTP response
function pipeReadstream( req, res, readStream, mimeType, cb ) {
var headWritten = false;
readStream.on('data', function(data) {
if ( !headWritten ) {
res.writeHead(200, {'Content-Type': mimeType });
headWritten = true;
}
var flushed = res.write( data );
// Pause the read stream when the write stream gets saturated
if( !flushed ){
readStream.pause();
}
});
res.on('drain', function() {
// Resume the read stream when the write stream gets hungry
readStream.resume();
});
readStream.on('end', function() {
res.end();
});
readStream.on('error', function(err) {
cb ( err );
});
}
Soykaf thread
Why haven't you make soykaf yet lain?