Search results

  1. J

    WJunction Radio

    Hey there, So we're going to be trying out a sort of Internet radio station for a while. It will not be 24/7 and will only function when a "DJ" is online (people may be assigned to this in future if it becomes popular). You may listen to it using any good client...
  2. J

    High risk, high profit

    Would you take a huge risk for a huge profit? Here's the example i want you to answer: You have a device which has one button. If you press the button, you instantly get $1,000,000. Very simple. But here's the catch... after pressing it, you will be teleported to a random location in the...
  3. J

    Conspiracy nuts

    When i see one of these terribly produced conspiracy videos on youtube, I dispose of the person who was stupid enough to send me it and never watch it again. So, do you believe any of the crap these people come out with? Seems to me you'd have to be incredibly gullible to believe such crap...
  4. J

    Clouds (& Legality of murdering pink bunnies for financial gain)

    So, cloud services like Skydrive, dropbox and google's storage. Do you trust them? Do you even understand them? For example, say you store some confidential information in your account. Cool, you have access to it from anywhere and there's almost no chance of data loss or corruption. How...
  5. J

    DuckCrypt Decrypter

    Quack Quack! Never heard of this myself, but cv mentioned it so here's a decrypter: https://github.com/jmzrlz/tools/blob/master/quackquack.php You can run it on command line like so: php quackquack.php <url> or open it in your web browser instead and use the form.
  6. J

    Adf.ly Bypasser

    Here you go... For Chrome http://www44.zippyshare.com/v/73072096/file.html Open the extensions tab and drag this onto it. For Firefox http://www44.zippyshare.com/v/19021716/file.html Drag the XPI onto firefox. Note: if you're like me and use NoScript, this won't work. Tiny extension which...
  7. J

    For Hire Advanced Programmer (PHP, JS, etc)

    Yes I am for hire again, found myself some free time. In case you don't know: - I have a degree in Computer Science - I know several languages - I have over 9 years of experience Languages I deal with mostly (experience in brackets): - PHP (9 years) - JavaScript (9 years) - CSS/HTML (9...
  8. J

    PHP 5.4 & 5.5 Changes

    Just a few changes in 5.4 & 5.5 you might find interesting, some pretty cool new features. Short array syntax $a = [1,2,3,4]; echo $a[0]; $a = ['a' => 1, 'b' => 2]; echo $a['a']; Function array dereferencing function test() { return [1,2,3]; } echo test()[0]; // Won't work <5.4...
  9. J

    Regarding the recent Spam Email

    Do not worry, this was merely junk mail sent by a person who once broke into WJunction. Your passwords are safe (feel free to change them if you want to be sure), the intrusion has already been thoroughly discussed and announced in the past (when the event occurred). This is old news to all of...
  10. J

    For Hire Programmer (PHP, SQL, JS, Python, HTML, CSS, etc)

    Got some spare time so figured i'd make one of my occasional 'for hire' threads. Experience: - 8-9 years PHP, SQL, Javascript, CSS, HTML - 4-5 years Python - 12+ languages (but only accepting jobs for the ones mentioned above) - Wordpress Plugins - JQuery I will refuse all jobs worth less than...
  11. J

    YouTube Feed Parser [Free]

    Here you go: https://github.com/jmzrlz/Utils/blob/master/youtube.class.php Simple class to search the youtube gdata feed with a changeable result count. Use like so: $test = new YouTube('some keywords here'); /* $test is now an iterable of results */ foreach($test as $video) {...
  12. J

    ImgTrack - Image Multi-Hoster & Tracker [BETA]

    Here's my latest project, had this idea a few times over the last several years so figured it's about time I coded it. ImgTrack - The Image Multi-Hoster & Tracker What is it? The primary aim of ImgTrack is to allow you to upload an image to multiple hosts and rotate through the links until...
  13. J

    Beta Testers Needed - Image Service

    Hey there, So I have a new project in the works, currently waiting on a design and a couple more features. I need a few beta testers, 5-10 people should be enough, so if you're interested please post here. There is no description of the service until its release, you will be given any...
  14. J

    Image Hosts & Your Opinions

    Hey, So I had some random idea yesterday lunch time and started coding it through the night, it is almost done but I have one very important question in relation to it. Which image hosts do you personally use? Assume you'd use this theoretical service, which hosts would you like it to...
  15. J

    General Hosting Tips

    So these things bug me occasionally because people don't bother even thinking about them. Here's a short list of tips in relation to purchasing hosting. RDP RDP is not a service, it is not a product, it is a protocol. It is included in all modern distributions of windows (server), it is...
  16. J

    Photoshop/After-effects Level 99

    After effects: http://vimeo.com/36092192 Photoshop: http://www.youtube.com/watch?v=53m0syaPg9A
  17. J

    Selling Wordpress IMDB Grabber Plugin

    My latest creation. Browsing with images prepended: http://i.imgur.com/FIycl.jpg Post example (with image-retrieval enabled) http://i.imgur.com/sdgX2.jpg Admin page: http://i.imgur.com/LkDOa.jpg Description This plugin will add a box when making a new post (or editing one), allowing you to...
  18. J

    Selling YouTube to MP3 Script

    Not much of a description needed, it converts YT Videos to MP3 at the highest quality possible. For example, if you give it a video which has a 720p option, it will convert the 720p version. Requirements: - PHP5 - Linux (only runs on linux due to process prioritisation I used) - FFMPEG Info...
  19. J

    A few PHP tips

    I'm a little bored so here's a few tips for those of you who are learning PHP, already know it or think you're an expert in it, lol. Don't close the <?php tag Reason being, it increases the chance that you'll some day accidentally have some whitespace after it, meaning headers get sent when you...
  20. J

    Get a YouTube video URL in PHP

    Quick piece of code that should, in theory, fetch the FLV/MP4/whatever URL of the video, given a youtube URL. The example has a hard-coded url, turn it into a function to make it a parameter instead. Also, it has absolutely no error checking, so you may wanna implement that (e.g. you should...
Back
Top