I envy you for never having issues with VS Code. I have to restart it far, far too often for it grinding to a halt. I'll lose my auto-complete menus completely. Forget auto-completing any paths (like for imports) when…
You are to the point where you know what CSS can do, and can work your way through building out UIs. From here it's about adopting a system, and a system that will work well with your needs. Are you building in a react…
I'm over here confused about how so many people are using Whatsapp. Is this is the United States or other countries? No one I know uses Whatsapp over here. I did however do what others are suggesting. I installed…
I map caplocks to control, I find the default control button in a weird spot to always be moving my pinky to (and I hardly have a use for caplocks, like yourself). However, after you said this, it reminded me of the…
> The aha moment for me was when I worked with a 26 yo trombone major who took a 3 month coding bootcamp who was showing nearly the same level of programming proficiency as me. And I wasn't a schmuck programmer.…
Whoa, whoa... explain your magic wizard. I've had caps lock mapped to control for years (i don't use the actual control keys for anything, don't like the weird pinky motion), but having a quick esc like that sounds…
this guy gets it, well said, sir. "darn kids and their forward hats"
I just want the comments in a fixed window that is draggable so i can put it where i want. I think that would make everyone happy...or at least be better. Great content tho, enjoying the read.
We have a few ppl in http://jam.now.im/c/bass Join up if you like bass music (dubstep, trap, future bass, glitch hop, chill bass, and the like) so we can test this with some dope tracks.
"You mad bro?" comes to mind. Successful rants provide solutions at the end. Otherwise, its just that, a rant that has no real meaning at all other than allowing you to vent - like this post. Feel better (I do).
I am always uneasy when i see a site wanting any of my info to sign up and they don't have a privacy policy anywhere. I know you just built this thing, and wanted to share it - but you want my email address and a…
Well it looks pretty... But in terms of the web... if you can't create it with CSS3, its not worth it IMO. All those extra little shadows and light reflections... yeaaa. No thanks. More designers should learn CSS and…
They are using jQuery. Their code is obfuscated, so hard to say exactly how they are doing it. But i know how I would do it. Nothing crazy going on there. You fetch your tweets from twitter, and build your html for…
i had to refresh and all worked fine, but yes, this happened to me as well, the "cube" game play area never loaded first load. Chrome 25.0.1364.155 Either way, fun game. Great work.
While we are posting contrived examples. What was ever wrong with this? var Foo = function() {}; Foo.prototype.jump = function() { return "I jump." }; Foo.prototype.run = function() { return "I run." }; var mario = new…
I couldnt take it, had to look. Desktop: Chrome, FF, IE 9+, Opera, Safari Mobile: Android 3.0, FF Mobile 1.0, Opera Mobile, Safari Mobile 3.0.4+ Notable issues: No support for IE 7 or 8 (is there a polyfill?), No…
I really dig this work. Been wanting something just like this! I find myself beatboxing here and there randomly, and sometimes i really brew up something nice. Would be awesome to have a great way to catalog these…
I'm with this guy. Basically the same setup. I still alias 'git' to 'g' also for all the other commands needed throughout the day. Not sure why yall would keep typing 'it'. I do enjoy the ascii car tho. Cheers to that.…
You sir, are spot on. You put it perfectly here: > Any tool that appropriately allows for all this complexity to be specified, has already become as complex as CSS itself, thus defeating the purpose. This was my…
I could not agree more with all your points. Source maps are the key, and i look forward to them very much. I am a coffeescripter, and i already have mixed emotions about the extra layer of complexity it puts on my code…
My thoughts exactly. Extend your main app var with Backbone.Events and u have a global event system. app.trigger 'boom'
I'm obviously opinionated on this point (backbone/underscore user), it just seems like it comes with so much i wont ever user - and could easily add via a mixin on a per project basis (in a nice functional manor). I…
I can't get past this (let alone the why of another MV*) - Why sugar.js? 6731 lines of bloat. This is going to turn off a great number of developers out the gates.
Nice, got me thinkin and tried this: _.throttle -> console.log("Foo") , 500 And it works!
I'd be very interested in ie7 support as well. As our contracts still all support ie7 (is there like an eta on ie7s death?). But hey, if you fork it, post the repo here! Ill help test it :)
I envy you for never having issues with VS Code. I have to restart it far, far too often for it grinding to a halt. I'll lose my auto-complete menus completely. Forget auto-completing any paths (like for imports) when…
You are to the point where you know what CSS can do, and can work your way through building out UIs. From here it's about adopting a system, and a system that will work well with your needs. Are you building in a react…
I'm over here confused about how so many people are using Whatsapp. Is this is the United States or other countries? No one I know uses Whatsapp over here. I did however do what others are suggesting. I installed…
I map caplocks to control, I find the default control button in a weird spot to always be moving my pinky to (and I hardly have a use for caplocks, like yourself). However, after you said this, it reminded me of the…
> The aha moment for me was when I worked with a 26 yo trombone major who took a 3 month coding bootcamp who was showing nearly the same level of programming proficiency as me. And I wasn't a schmuck programmer.…
Whoa, whoa... explain your magic wizard. I've had caps lock mapped to control for years (i don't use the actual control keys for anything, don't like the weird pinky motion), but having a quick esc like that sounds…
this guy gets it, well said, sir. "darn kids and their forward hats"
I just want the comments in a fixed window that is draggable so i can put it where i want. I think that would make everyone happy...or at least be better. Great content tho, enjoying the read.
We have a few ppl in http://jam.now.im/c/bass Join up if you like bass music (dubstep, trap, future bass, glitch hop, chill bass, and the like) so we can test this with some dope tracks.
"You mad bro?" comes to mind. Successful rants provide solutions at the end. Otherwise, its just that, a rant that has no real meaning at all other than allowing you to vent - like this post. Feel better (I do).
I am always uneasy when i see a site wanting any of my info to sign up and they don't have a privacy policy anywhere. I know you just built this thing, and wanted to share it - but you want my email address and a…
Well it looks pretty... But in terms of the web... if you can't create it with CSS3, its not worth it IMO. All those extra little shadows and light reflections... yeaaa. No thanks. More designers should learn CSS and…
They are using jQuery. Their code is obfuscated, so hard to say exactly how they are doing it. But i know how I would do it. Nothing crazy going on there. You fetch your tweets from twitter, and build your html for…
i had to refresh and all worked fine, but yes, this happened to me as well, the "cube" game play area never loaded first load. Chrome 25.0.1364.155 Either way, fun game. Great work.
While we are posting contrived examples. What was ever wrong with this? var Foo = function() {}; Foo.prototype.jump = function() { return "I jump." }; Foo.prototype.run = function() { return "I run." }; var mario = new…
I couldnt take it, had to look. Desktop: Chrome, FF, IE 9+, Opera, Safari Mobile: Android 3.0, FF Mobile 1.0, Opera Mobile, Safari Mobile 3.0.4+ Notable issues: No support for IE 7 or 8 (is there a polyfill?), No…
I really dig this work. Been wanting something just like this! I find myself beatboxing here and there randomly, and sometimes i really brew up something nice. Would be awesome to have a great way to catalog these…
I'm with this guy. Basically the same setup. I still alias 'git' to 'g' also for all the other commands needed throughout the day. Not sure why yall would keep typing 'it'. I do enjoy the ascii car tho. Cheers to that.…
You sir, are spot on. You put it perfectly here: > Any tool that appropriately allows for all this complexity to be specified, has already become as complex as CSS itself, thus defeating the purpose. This was my…
I could not agree more with all your points. Source maps are the key, and i look forward to them very much. I am a coffeescripter, and i already have mixed emotions about the extra layer of complexity it puts on my code…
My thoughts exactly. Extend your main app var with Backbone.Events and u have a global event system. app.trigger 'boom'
I'm obviously opinionated on this point (backbone/underscore user), it just seems like it comes with so much i wont ever user - and could easily add via a mixin on a per project basis (in a nice functional manor). I…
I can't get past this (let alone the why of another MV*) - Why sugar.js? 6731 lines of bloat. This is going to turn off a great number of developers out the gates.
Nice, got me thinkin and tried this: _.throttle -> console.log("Foo") , 500 And it works!
I'd be very interested in ie7 support as well. As our contracts still all support ie7 (is there like an eta on ie7s death?). But hey, if you fork it, post the repo here! Ill help test it :)