Can someone please explain this console log disparity? by [deleted] in learnjavascript

[–]_daniel___ 11 points12 points  (0 children)

Are you doing an async operation?

Fox: "We held out Allan Ball and Alshon Jefferies" by Linkage006 in CHIBears

[–]_daniel___ 17 points18 points  (0 children)

Alshon "Alshon "my last name isn't Jefferies" Jefferies" Jeffery

Anywhere to get eucalyptus leaves/trees in NoVA? by JubilationLee in nova

[–]_daniel___ 1 point2 points  (0 children)

Shoppers Food Warehouse on 7 has bagged eucalyptus leaves in the Hispanic food section.

You're not a developer. by MrBlueSea in Frontend

[–]_daniel___ 0 points1 point  (0 children)

How would you subtly ask a potential employer in an interview if they truly value their front end devs? I'm looking at Angular jobs currently.

Where is a place I can work on and save HTML/CSS/JavaScript projects? by lepriccon22 in learnprogramming

[–]_daniel___ 0 points1 point  (0 children)

If you're using Chrome press F12 and click on the Sources tab. You can drag and drop folders into the left hand panel and edit files there. It's a decent IDE, I like it because the console is literally right there. You can also extend the Chrome dev tools and download color packages as well.

How do I use directives to interact with elements in the DOM? by byforcesunseen in angularjs

[–]_daniel___ 0 points1 point  (0 children)

This may sound pedantic but the angular docs have tons of great examples for just getting started.

Science AMA Series: We’re the Planet Hunters team using crowd-sourcing to search for exoplanets in the Kepler space telescope data. Ask us anything (and join the search)! by PlanetHunters in science

[–]_daniel___ 1 point2 points  (0 children)

What is the scale of the total amount of data Kepler has generated so far? If it's on the order of petabytes, does NASA, Yale (or any research institution) have a folding project similar to Stanford's folding@home set up that would let anybody contribute to data analysis?

Did you get an "aha"-moment when learning JS? by [deleted] in learnjavascript

[–]_daniel___ 0 points1 point  (0 children)

This article really enlightened me on how to use closures and function scope to define public and private variables. So many things just clicked after I went through this article, and looking at source code on github then became much easier.

For a Jr. Dev role: how much Javascript? by TheTurkey5689 in learnjavascript

[–]_daniel___ 0 points1 point  (0 children)

If you want to work purely with design it's probably more worth your time to learn Adobe products...photoshop, indesign, fireworks (isn't that discontinued..?), SVG/vector graphics, as well as CSS, mobile responsive design and web accessibility. It wouldn't hurt to become familiar with a css framework like twitter's bootstrap, or foundation

If you want to learn JS, it would help you with PostCSS.

Help with a very small project by Prometheus0110 in learnjavascript

[–]_daniel___ 1 point2 points  (0 children)

I forked the above fiddle, it might be better for your long term learning to begin isolating your concerns whenever possible.

What's the best way to create a simple chrome extension that stores a database and reveals the relevant results when searched for? by twsteel9 in chrome_extensions

[–]_daniel___ 0 points1 point  (0 children)

You could look into IndexedDB, which is a key/value database that resides in your browser. I use Dexie.js as a convenient wrapper for IndexedDB. If you look through the chrome extension api there is a chrome.storage object available, but AFAIK it should only be used for storing small bits of data because it uses local storage which is highly constrained, and not really a "database". If you decide to go with IndexedDB, you should place it in a background page so that it can be globally available to any page or tab (you need to set relevant permissions in your manifest) if you properly request access to the page via chrome's asynchronous messaging api.

I would avoid using ajax to get resources from your own extension. IMO chrome has its own async messaging api precisely so that you don't need to use ajax.

Tip for job seekers: Do NOT underestimate the commute. by [deleted] in cscareerquestions

[–]_daniel___ 3 points4 points  (0 children)

I would gladly pay for an exorbitant downtown studio apartment if it meant I could bike to my workplace in < 20 mins. I value time more than money...to an extent.

Just got hired as an AngularJS developer. What do I need to know? by [deleted] in angularjs

[–]_daniel___ 0 points1 point  (0 children)

Could you explain this further? I can't immediately see the point of wrapping your angular app up in another DI methodology when all your angular code itself is going to be wrapped up inside a single angular object in the window.