Search results

  1. Heaplink

    [Wordpress help]

    Just change the image. It should be in the themes folder under images or some sort. Change the picture name it the same, and you're good to go.
  2. Heaplink

    Free | Simple | HTML Web Template

    Ok, for a first attempt it's okay. But just some things to keep in mind when you learn more HTML: Properly indent your code for readability. Never (NEVER) use IDs in CSS (it's a slow selector). Use IDs for JavaScript only. The <marquee> tag is deprecated. It's a non-standard tag and should...
  3. Heaplink

    [PHP][HELP]Not sure what's wrong with this.[HELP][PHP]

    You don't have to use composer if you don't want to. And yes it works on all kinds of hosting.
  4. Heaplink

    [PHP][HELP]Not sure what's wrong with this.[HELP][PHP]

    Btw if you're trying to do routes anyway you should use something like klein.php which is a very simple router for PHP
  5. Heaplink

    [PHP][HELP]Not sure what's wrong with this.[HELP][PHP]

    $reqs is not declared to any object or array. I guess you wan't to switch $get with $reqs. Also since $_GET is already a short name, I don't see the idea in putting it in a variable. Also never use eval, it can be very evil. So when you wan't to assign a function with the var name you can just...
  6. Heaplink

    Rate the avatar above you

    10/10 Jim Carry.
  7. Heaplink

    Headset 7.1

    No. When it comes to drivers, Mac handles drivers from the hardware and not an installation. If you try to install drivers made specifically for Windows on a Mac, you will not be able to use those drivers anyway since you install them with an emulator, virtual desktop, etc.
  8. Heaplink

    [HELP] [PHP] Sending feedback to email [PHP] [HELP]

    If you're trying to learn anything it doesn't help you to ask others to do it for you. Do a bit of research yourself and work for it, otherwise you will not learn it at all.
  9. Heaplink

    New Web based programming Language?

    Or go with the flow and learn more about JavaScript. You can take a look at Node.js (server-side JS) and also there are a lot of JavaScript frameworks made specificly to craft Web Applications; Backbone Ember.js AngularJS - We use this at my work
  10. Heaplink

    How Strong Is Your Computing Device? (NovaBench)

    Get outta here
  11. Heaplink

    RevCMS account creator

    What version of Python do you use
  12. Heaplink

    Your opinion on Bitcoins?

    In my opinion Bitcoins are great and you could help researchers too with your equipment and get a fee from it. Although I've seen some people who is a little too much into Bitcoins i still find it fascinating. For the currency part; It will not ruin the economy more than it already is by...
  13. Heaplink

    Vertical Navigation

    By the way if you wan't links you should have HTML like this <ul class="navigation"> <li><a href="#">Home</a></li> <li><a href="#">Page</a></li> <li><a href="#">Nother</a></li> </ul> and style the a tags instead of li tags to keep the click area .navigation ul { ... } .navigation...
  14. Heaplink

    Rate the signature above you.

    3/10 I don't like that signature for the reason that the font is not crisp.
  15. Heaplink

    Beginnering Visual Basic 2010 Express

    I have to agree with St4nley. The Visual Basic language doesn't provide you with further knowlegde into other languages, it'll simply only let you learn the .NET framework and if that is your wish, you should start with C# first. C# is a C-like language, and you will be able to learn other...
  16. Heaplink

    Visual Basic Help (Hotkeys)

    Thank you and good luck learning! :-)
  17. Heaplink

    Visual Basic Help (Hotkeys)

    You can use this class to do it for you http://sim0n.wordpress.com/2009/03/28/vbnet-keyboard-hook-class/
  18. Heaplink

    Visual Basic Help (Hotkeys)

    The GetKeyPress should be declared at the top so all functions can see it. Also the if condition checking for the key has to be inside a function. Declare a function called Start and another Stop to start the and stop the timer. In your Timer1_Tick you will do the condition for what key is...
  19. Heaplink

    Visual Basic Help (Hotkeys)

    You can do that too! Just switch the Keys.Enter with Keys.F1, Keys.F2 or what ever you wan't!
Top