-
Content Count
2,370 -
Joined
-
Last visited
About prolemur
-
Title
Zoboomafoo
- Birthday Feb 02, 1997
Contact Methods
-
Discord
Lemur #6826
-
Steam
prolemur
-
Origin
prolemur
-
Twitch.tv
prolemur
- Website URL
Profile Information
-
Location
Ottawa, Canada
-
Gender
Male
-
Interests
Technology, Programming, Networking, Gaming, Hockey, Soccer, LAX.
-
Occupation
Student / Grass Cutting Extraordinaire
System
-
CPU
4670k
-
Motherboard
Asus Z87 Deluxe - I
-
RAM
Crucial Ballistix Elite 16GB
-
GPU
Geforce GTX 980
-
Case
Ncase M1 - Black
-
Storage
Samsung 840 Evo + Mass External Storage
-
PSU
Silverstone SFX 450W - Gold
-
Display(s)
2x Dell U2515H
-
Cooling
Custome H20
-
Keyboard
Code Keyboard - Cherry MX White
-
Mouse
Logitech G700
-
Sound
CHC Silverado & Blue Yeti
-
Operating System
Windows 8.1
- PCPartPicker URL
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
I would like to compress messages sent from my nodejs / express server. So far I only see 2 ways of doing this. Use the same java gzip program on the server and client. This would be simple on the client since it is also coded in Java. The server however, is in javascript. So I would have to execute that java program using exec. Next, the gzip java program would have to read and write somewhere. Would I read and write to a file, then read from that when I'm sending the message, or the easier sloppy way to print to the console (which exec has access to). There might be a gzip progra
-
There appears to be an event for checking if the element has 'ended' for audio and video. https://stackoverflow.com/questions/2741493/detect-when-an-html5-video-finishes https://www.w3schools.com/tags/av_event_ended.asp You could then change the video source to the next video from your 'ended event handler' and reset the time to 0 and whatever other attributes needed. https://stackoverflow.com/questions/8402158/html5-video-javascript-controls-restart-video Hope these resources help with your wallpaper engine.
-
Hey guys I'm still alive
-
Lol I did ask so nicely You must get into node, I've been using it for my webdev class and I think I'll continue to use it later I think the error is probably in the node app.post function then since: $.post('/recipes/', recipeObj); $.post('recipes/', recipeObj); $.post('/recipes', recipeObj); $.post('recipes', recipeObj); this prints {} 4 times on the server side, meaning all the requests are reaching that app.post statement. Node told me to use / in one of the express tutorials, so ya it's fucked. It's this damn body-parser module
-
Hello friends, I'm trying to handle a post request to my nodejs express server. It will be sending a JSON object and it should write that to a file. Right now my jqXHR isn't being sent properly, i think... So here's my code idk where the problem is /* NODE JS SERVER: */ var express = require('express'); var bodyParser = require('body-parser'); var app = express(); var jsonParser = bodyParser.json(); app.use(express.static('assets')); app.use('/recipes', express.static('recipes')); app.listen(PORT, () => { console.log('Express @ localhost:', PORT); });
-
you could make a script to run this one multiple times. I was also thinking of making one because my bandwidth doesn't cound toward my cap from 2am - 8am, so (this script + a little cron job + list of youtube subscriptions + last time it was run) = awesome
-
It is super easy in Java BufferedImage img = ImageIO.read(new File("image-orginal")); // change pixels in here with img.setRGB(x, y, rgb) ImageIO.write(img, "png", new File("image-final.png"));
-
Take a peek at a game I'm making, specifically the gfx package and sound class. https://github.com/mkmxwl/raycast/tree/master/src/ca/mkmxwl/wolf
-
How do I run a command when another is on the run? in sh
prolemur replied to eengamerjens's topic in Programming
I believe this runs the first command and then if it was successful the next command is run after, so not at the same time && would work well for apt-update && apt-upgrade though -
Taking value from PHP into HTML in the same file
prolemur replied to Lunar Evolution's topic in Programming
No clue, but i think you need at least php 5.4 to use short tags. which is the same version magic quotes got deprecated. coincidence? i think not! -
Taking value from PHP into HTML in the same file
prolemur replied to Lunar Evolution's topic in Programming
short tags <?= -
cool projector wonder if you'd be able to project onto like a translucent wall of glass or something and be able to see it on both sides. I want to share whatever I'm watching on the big screen with the neighbourhood
-
You'll probably want to make a function that takes an argument, then hide all of the items except the one passed in by the argument.
-
You could do SELECT * FROM `table` WHERE `pin` = $pin $pin being the number submit in the form, so probably $_POST['pin'] and if the number of rows returned is greater than 0, the pin was in the table at least once. http://php.net/manual/en/pdostatement.rowcount.php ps: Make sure you used prepared statements and clean user input.