Advertisement
Guest User

Untitled

a guest
Apr 28th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. Detailed Supporting Technology Questions
  2.  
  3. Why would you use SCSS instead of CSS?
  4. SCSS is cleaner, you can specify elements very specifically and whether they're contained in other elements
  5. Easier to make a more uniform styling for an app
  6. Nesting
  7. SCSS is a bonus, css still works
  8. You can assign variables and use those throughout your style
  9. You can import files and make a mixin to make groups of CSS declarations that you want to reuse throughout your site
  10.  
  11. Why would you use JSON instead of HTML?
  12. JSON is nuts and bolts, easier for a computer to read the info
  13. Better for APIs
  14.  
  15. What is the difference between JQuery and Javascript?
  16. JQuery is a library or framework built on top of Javascript
  17.  
  18.  
  19. Big Picture Questions
  20.  
  21. What do you think about Angular and Ember? Which one seems better to you?
  22. These are MVC javascript frameworks
  23. Backbone is not MVC, the simplist thing you can call a js framework, but you have to bring a lot of your own js knowledge
  24. Angular and Ember are more structured -- Ember does a lot, but you have to follow the rules
  25. Not object-oriented
  26. Differences: Angular is more common
  27. Ember was developed by Matz
  28.  
  29. Have you used any NoSQL databases? Do you think they're useful when developing Rails apps?
  30. NoSQL is more for enterprise apps
  31. Postgres, mysql, sqlite (comes with rails)
  32. NoSQL is useful when you already know the exact questions you're going to ask your database
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement