Earlier quoted context omitted.
I'm fascinated by the use of random word combinations instead of a random alphanumeric sequence for passing a unique URL. What was the reasoning behind this decision? On one hand, it sort of acts like a phonetic alphabet if you want to read out the URL over skype. But on the other hand - is OberonNostalgicCeciliaVoltage really that easy to spell if you aren't a native English speaker?
Also, would "TouchingPlayfulEnjoyAspect" be something you want to tell a interview candidate? (First one it generated for me)
Show HN: Start a pair programming session over WebRTC by just sharing a link
31–40 of 47 posts
Re: Show HN: Start a pair programming session over WebRTC by just sharing a link
#32I like how simplistic this is. Btw, I am one of the makers of: https://codepad.remoteinterview.io We used Firepad[1] (which is based on Firebase) to sync data. [1] https://github.com/firebase/firepad
I'm fascinated by the use of random word combinations instead of a random alphanumeric sequence for passing a unique URL. What was the reasoning behind this decision? On one hand, it sort of acts like a phonetic alphabet if you want to read out the URL over skype. But on the other hand - is OberonNostalgicCeciliaVoltage really that easy to spell if you aren't a native English speaker?
a 4 character alpha-numeric code is 36^4 (1.6M) which is fine for new websites.
If you run out, add a 5th character which gets you to 60M, and a 6th character gets you 2T.
Re: Show HN: Start a pair programming session over WebRTC by just sharing a link
#33Earlier quoted context omitted.
I suggest you do not run things as root inside your docker containers. :)
How else would he do it?
(Search for "as root")
Re: Show HN: Start a pair programming session over WebRTC by just sharing a link
#34Re: Show HN: Start a pair programming session over WebRTC by just sharing a link
#35I like how simplistic this is. Btw, I am one of the makers of: https://codepad.remoteinterview.io We used Firepad[1] (which is based on Firebase) to sync data. [1] https://github.com/firebase/firepad
I suggest you do not run things as root inside your docker containers. :)
Re: Show HN: Start a pair programming session over WebRTC by just sharing a link
#36Earlier quoted context omitted.
Great. Thanks!
Btw a workaround: You can enable the shell (from languages dropdown) and "cat > file.cpp" and compile it yourself with whatever compilers you want. You are also able to "apt-get" any other compilers/packages you need.
Re: Show HN: Start a pair programming session over WebRTC by just sharing a link
#37It is just showing connecting with my own video at the right top corner. I think something is wrong. I am on the latest chrome. Getting these errors in dev console. Could not open document: [object Object]
Re: Show HN: Start a pair programming session over WebRTC by just sharing a link
#38Hey, awesome service! I'd be interested in using this at my site (BugRex.com). We're a chat based help line for developers in the need for help. Sharing code is an issue we haven't solved properly yet. Let me know if you want to chat.
Re: Show HN: Start a pair programming session over WebRTC by just sharing a link
#39I like how simplistic this is. Btw, I am one of the makers of: https://codepad.remoteinterview.io We used Firepad[1] (which is based on Firebase) to sync data. [1] https://github.com/firebase/firepad
Re: Show HN: Start a pair programming session over WebRTC by just sharing a link
#40Nicely done. I'm myself toying with webrtc and remote pair programming, so I think this is really cool. One question: before beginning the session I got a "popup" claiming that the session is encrypted, does it just mean it's https or are you doing any other encryption?
They are referring to the video stream that is encrypted using RTPS (RTP + SSL), as is standard when using WebRTC.