• 0

Request for koding invite


Question

I recently got another laptop and have been travelling etc, been working on a few different computers and been using google drive so I can keep my work on the go.

Recently learned about koding.com the online editor, i requested an invite from them ages ago but have never received anything.

Just looking for an invite here if anyone would be kind enough :)

Link to comment
https://www.neowin.net/forum/topic/1124908-request-for-koding-invite/
Share on other sites

16 answers to this question

Recommended Posts

  • 0

I'm waiting myself for the moment that Brackets works in a browser :p

Never heard of koding.com myself btw, I'm using brackets lately since I can edit the editor however I like ^^

  • 0

I'm waiting myself for the moment that Brackets works in a browser :p

Never heard of koding.com myself btw, I'm using brackets lately since I can edit the editor however I like ^^

Never heard of brackets, im assuming youve probably tried sublime text 2, but if not give it a whirl. by far the best editor ive ever used.

edit: downloading brackets for a test drive :)

  • 0

Never heard of brackets, im assuming youve probably tried sublime text 2, but if not give it a whirl. by far the best editor ive ever used.

edit: downloading brackets for a test drive :)

I used sublime text 2 but now after I've tried brackets I'm never going back :p So easy to modificate it however I want(feel free to ask any help with modifications ;))

  • 0

ok well the main thing i love about sublime is zen coding. I'd really miss that

also the multiple cursors

any of those on brackets?

it does look super sexy :)

edit:

ooooh wow! i do love that ctrl + E feature! thats awesome! im forever digging around huge CSS documents

can I use that with LESS?

edit seems not yet, only with HTML and CSS which is a pitty as Im mostly using PHP and LESS justnow

also live feature is a great idea, i hope the implement php capability

  • 0

ok well the main thing i love about sublime is zen coding. I'd really miss that

also the multiple cursors

any of those on brackets?

it does look super sexy :)

edit:

ooooh wow! i do love that ctrl + E feature! thats awesome! im forever digging around huge CSS documents

can I use that with LESS?

edit seems not yet, only with HTML and CSS which is a pitty as Im mostly using PHP and LESS justnow

also live feature is a great idea, i hope the implement php capability

Brackets supports less but the crtl-e feature doesn't work for less yet (this is currently planned to be fixed) but crtl-e works in colors in less for a color picker ^^

And php works here fine with the live feature (using php and setup brackets project url to my localhost).

zen coding is available as a extension ;)

I've removed the title of the current document and the experimental build thing in my own brackets setup :p I also removed the usseles menubar with the single file button(just remove all menu entries with reshacker on brackets.exe).

  • 0

I couldnt get the live feature to work with PHP. I poined the project URL at localhost but it just sent me to localhost/index.php and stopped the live link.

I'll have another play around with it later, it does seem quite good. Can't wait until its finished, for now Ill probably stick with sublime and when Brackets is done ill try switching.

  • 0

I got invited! :D :D

Waited ages for it too, really happy :)

I have two invites if anyone wants to try it out, please only ask if you think you will use it though as I don't want to waste them.

check it out here: http://www.koding.com

  • 0

I got invited! :D :D

Waited ages for it too, really happy :)

I have two invites if anyone wants to try it out, please only ask if you think you will use it though as I don't want to waste them.

check it out here: http://www.koding.com

I would like to have one if you don't mind and I'd like to try it out.

Thanks.

  • 0

I've been using Koding.com for a while!

I also have 3 invites if anyone seriously wants to start using it!

Just message me if you want one! :)

I've waited so long for one :)

Funny that I started this topic and just got one after it! I think i got it from a tweet where I begged them yesterday haha

What do you think of it? It looks great so far! Ive just installed wordpress to my account to test a theme ive been developing. This is awesome because now I can work on this from anywhere on any computer! :D

  • 0

I've waited so long for one :)

Funny that I started this topic and just got one after it! I think i got it from a tweet where I begged them yesterday haha

What do you think of it? It looks great so far! Ive just installed wordpress to my account to test a theme ive been developing. This is awesome because now I can work on this from anywhere on any computer! :D

Right now it's the beta period. I think they will start subscriptions later onwards for extra storage and features. I hope they keep a basic free tier.

  • 0

If you still have one I'm interested as well.

Pm your email :)

This is my last invite just so everyone knows (I do have 1 but im keeping it for a friend).

szo has mentioned he has three in a post above so you could try him :)

Right now it's the beta period. I think they will start subscriptions later onwards for extra storage and features. I hope they keep a basic free tier.

yeah me too, However I'd probably pay for this if it wasn't too expensive. If you read their story (help on bottom left) they say that the idea was collaborative coding/help and keeping it free. So hopefully they will stay true to that and keep a free plan.

Can we upload to our site via FTP? I just zipped my WP theme and uploaded from wp-admin but I would've thought we could FTP?

FTP is available:) http://kwiki.koding.com/wiki/FTP

Also, have you managed to install anything to the terminal? I wanted to install a LESS compiler but apt-get isn't installed and NPM wouldn't let me either.

Tried my best but it cant be done without root to install. Tried a few different methods but you can't install anything to terminal. Didn't except to be able to though.

Not a huge problem, Ill just use less.js for now and compile it to CSS client-side. Its only for testing anyway.

Edited by Guth
This topic is now closed to further replies.
  • Posts

    • JetBrains is working to cut false positives in RustRover 2026.2 by David Uzondu Recently, JetBrains released the fifth EAP build of its dedicated IDE, RustRover 2026.2, bringing improvements like a Run gutter icon for criterion_main! macro benchmarking and a feature that alerts you when there are unused traits in your current scope. Now, the company is out with a blog post addressing one of the "most common" complaints from users: false positives. In RustRover, a false positive occurs when the editor incorrectly highlights something as an error even though the project compiles and runs successfully. This mismatch flags a gap between the IDE's internal intelligence and the actual compiler. When the editor flashes red warnings over perfectly valid code, developers lose trust in the tool, which stalls momentum. Traditionally, RustRover runs cargo check to detect compiler errors and warnings, but it also relies on its own code analysis engine to power real-time features. To provide quick feedback, this engine parses your source code into a syntax tree while inferring types and resolving names as you type. Because this engine must work on broken, half-written code and react instantly, its logic sometimes diverges from the compiler's, producing false positives that do not exist in the compiler's eyes. JetBrains said that it has a "dedicated task force" focused specifically on identifying and fixing false positives by analyzing user reports and examining large-scale open-source projects. To speed up this process, the team built an internal system modeled after Crater, the famous Rust project that compiles and runs tests for every single crate published on crates.io. This automated pipeline compares the diagnostics from RustRover's analysis with actual compiler output to catch discrepancies before they reach users, ensuring smoother workflows. RustRover, for those who're unaware, is a dedicated IDE designed specifically for Rust developers. It's been around for a couple of years now, providing features like built-in debugging via LLDB, seamless cargo integration, advanced macro expansion, and HTML support. JetBrains distributes the app under two licensing models: a paid commercial subscription and a free option for non-commercial use.
    • Last year I bought the 2TB variant for $114 on Amazon. That's crazy that the 1TB is now 67% more expensive for half the storage, even with the newer T9 already on the market. And that's considered a good deal.
    • You can disable all non needed features from Brave. There is also Brave Origin which removes them entirely and it is free for Linux.
    • I wish I could use Brave but the tab suspension feature is horrible. It doesn't suspend them like Edge does. Even after 2h open with 70+ tabs (same as Edge), it has 2GB more consumption than Edge for no reason.
    • TeamViewer 15.78.4.0 by Razvan Serea TeamViewer is the fast, simple and friendly solution for remote access over the Internet - all applications in one single, very affordable module. Remote control of computers over the Internet, Instantly take control over a computer anywhere on the Internet, even through firewalls. No installation required, just use it fast and secure. Training, sales and teamwork, TeamViewer can also be used to present your desktop to a partner on the Internet. Show and share your software, PowerPoint presentations etc. File transfer, chat and more, Share your files, chat, switch the direction during a teamwork session, and a lot more is included in TeamViewer. TeamViewer key features: Cross-platform remote access (Windows, macOS, Linux, Android, iOS, IoT) Attended and unattended remote control Secure file transfer between devices Remote printing to local printers Multi-monitor support with easy switching Wake-on-LAN for sleeping devices Session links for quick connections (no password sharing) Web client access (no installation needed) End-to-end encryption (AES-256) Two-factor authentication and access controls AI-powered session insights and reporting Mass deployment and device management tools Customizable allow/block lists for security Command line and script execution remotely Performance monitoring and analytics dashboards TeamViewer 15.78.4.0 changelog: Improvements Permissions inheritance has been improved, increasing reliability when permissions are assigned to user group managers. Bugfixes Fixed a bug where 'Show details' button was not showing up on command bar upon selection of a device group. Fixed a bug which was causing the legacy groups to disappear when applying hide offline filter in basic view. Fixed a bug where devices were loading infinitely after login. Fixed a bug which was causing crash in application. Download: TeamViewer 15.78.4.0 | 32-bit | Portable | Mac | ~70.0 MB (Free for personal use) View: TeamViewer Home Page | Release Notes | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
    • Reacting Well
      Sir_Timbit earned a badge
      Reacting Well
    • Week One Done
      rubentuben8 earned a badge
      Week One Done
    • Week One Done
      ARaclen earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      524
    2. 2
      PsYcHoKiLLa
      232
    3. 3
      Edouard
      135
    4. 4
      ATLien_0
      88
    5. 5
      Steven P.
      83
  • Tell a friend

    Love Neowin? Tell a friend!