Search results

  1. Heaplink

    What languages, frameworks, tools, operating systems, etc. do you use?

    OS: - macOS Mojave Editor/IDE: - VS Code — has a lot of nice plugins for efficient working. - Sublime Text — rarely, used to be my go to, but now only for USB thumb-drives. - Neovim — For small edits. At least I know how to quit it. Languages: - JavaScript - TypeScript - Rust - OCaml - Reason...
  2. Heaplink

    PHP special characters replace option

    The problem is likely that your server, that serves the PHP files, does so with the wrong encoding. You can see this in browser DevTools (Chrome, Firefox, Edge, etc.) under the Network tab. If you click on the item that is the page itself, you can see the headers that are sent from the server...
  3. Heaplink

    cPanel help

    You'd probably have to test it using a DNS lookup instead as some browsers automatically remove the www from a URL and redirects to the domain instead.
  4. Heaplink

    cPanel help

    Think of www as a subdomain of example.com - you'd need to setup your DNS to alias subdomain www to example.com You'd need a CNAME or A record in order to do this. If using CNAME, it will redirect from e.g. www.example.com to example.com and using A record, you can specify an IP which each...
  5. Heaplink

    Do do drugs, kids.

    Do do drugs, kids.
  6. Heaplink

    Can someone create me a script where I can add

    By the way you can change the event to keyup/keydown if you like to avoid having to click outside the textfield when you change text. Fixed for your needs. http://jsfiddle.net/usb55gfj/5/
  7. Heaplink

    Can someone create me a script where I can add

    Even better without jQuery bloat http://jsfiddle.net/usb55gfj/2/ Less code.
  8. Heaplink

    Can someone create me a script where I can add

    $words = explode('\n', <content>); $fixed = implode(',', $words); Next time it's good to just search for stuff like this before posting a thread.
  9. Heaplink

    Can someone create me a script where I can add

    Please specify which kind of script and for what purpose. Are you going to use it in code—then which language?—if you wan't to use it as a command-line interface, which kind of OS do you use? Because Windows and *NIX are different. Also specify wether you'd insert it from a file or from inline...
  10. Heaplink

    0% of steam users use directx 10/11

    It's a bug in their side—but you probably already knew that—check this out http://store.steampowered.com/hwsurvey/videocard/
  11. Heaplink

    Website Design Help

    I agree that this template isn't really original. The too much yellow means they did something right, because you'd usually have a maximum of one or two brand colors. As for the "Upon scrolling javascript allows the page to look like its folding, flipping, turning or rotating" I disagree...
  12. Heaplink

    Creativity Competition

    My creative submission is a business card & logo I made for my dad. He's a DJ and needed a visual identity :-) The cards are thick (really thick) and has a red line in the middle.
  13. Heaplink

    Suggestion on this computer build...

    Looks like a build for either 3D modeling, feature movie editing or just a rack for Bitcoin mining... If this is for gaming, well then consider going down on RAM. You can save a lot of money. Also take a look at Kingston for maybe cheaper prices.
  14. Heaplink

    I have nothing against hummus

    I have nothing against hummus
  15. Heaplink

    Show DevBest Sublime Text — Color Scheme

    First of all you need Package Control - When it's installed, hit Command/Ctrl + Shift + P and type Install Package. Hit enter and search for Behave Color Scheme. Hit enter and it'll be installed :-)
  16. Heaplink

    Show DevBest Sublime Text — Color Scheme

    I'm @fnky on github and @chrbp on Twitter. I made this color scheme, yes :-) Oh wait, I see what you mean @Sysode. I will fix that, thanks for the notice hehe
  17. Heaplink

    Show DevBest Sublime Text — Color Scheme

    My twitter is not @fnky (I wish it was though) it's @chrbp
  18. Heaplink

    Show DevBest Sublime Text — Color Scheme

    I recently made a new theme for Sublime Text & TextMate. I just wanted something new and fresh, a little lighter than those dark color schemes around. GET IT HERE NOTE: I'm not going to update this thread for updates, watch it on Github for changes :-)
  19. Heaplink

    [Important] OpenSSL Vulnerability discovered

    A serious vulnerability in OpenSSL cryptographic software library was recently discovered: CVE-2014-0346 / CVE-2014-0160, commonly called the "Heartbleed Bug." This vulnerability is described at http://heartbleed.com. If you're using a service that are OpenSSL for SSL/TLS security or use it by...
  20. Heaplink

    Building an app backend - suggestions

    I tend to use Mongo mostly, I find it easiest to work with and more lightweight :-)
Top