Skip to content

added some better questions :) #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from Apr 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions questions_acronyms.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,9 @@
'What does SVG stand for? What is it?', # Scalable Vector Graphics, an XML based way of rendering 2D graphics.
'What does JSON stand for? What is it?', # JavaScript Object Notation, a machine readable format for transporting data between computer programs.
'What does BEM stand for? What is it? \ninspired from a #modernweb meetup talk by @BrandonMathis at @pendoio', # Block Element Modifier
'What does VDU stand for? What is it?', # Visual Display Unit , Monitor
'What does ISCII stand for? What is it?', # Indian Standard Code for Information Interchange
'What does FIT stand for? How is FIT different from IT?', # Foundation of Information Technology
'What does SQL stand for? What is it?', # Structured Query Language

]
5 changes: 4 additions & 1 deletion questions_back_end.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@
'What are tests for? \n\ninspired by @Treybastian', #
'Why is readability so important? \n\ninspired by @Treybastian', #
'Why should you avoid single letter variables? \n\ninspired by @Treybastian @cjtaylor2390', # readability

'What is a model?', #
'What is abstraction?', #
'What are the advanced functions in python?', # map(), filter(), reduce()
'What is python best at?', #

# Real life examples
'What is a real life example of "exception handling"?', #
Expand Down
3 changes: 3 additions & 0 deletions questions_front_end.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@
'How do you make a link open in a new tab?', # target="_blank"
'Why should you add rel="noreferrer" to a target="_blank"? \n\ninspired by a tweet from @addyosmani', # https://twitter.com/addyosmani/status/1234055782896979968
'What is lazy loading? What\'s it used for?', # https://twitter.com/addyosmani/status/1227619409625174016?s=20
'What is the difference between SASS and SCSS?', #
'How would you stop divs from overlaying after using position absolute?', #


# Real life examples
'What is a real life example of "lazy loading"? \n\ninspired by a tweet from @addyosmani', #
Expand Down
1 change: 1 addition & 0 deletions questions_pop_culture.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
'In "Silicon Valley" Season 3 Episode 1, what language is being used?\n@SiliconHBO', # https://www.reddit.com/r/SiliconValleyHBO/comments/4gbra7/i_got_the_silicon_valley_s03e01_code_to_compile/)
'What day is celebrated as Programmer\'s day? Why?\n#ProgrammersDay', #
'🐠In Mr. Robot, what is the name of Elliot\'s betta fish? @whoismrrobot #MrRobot', # Qwerty
'Why is Hacktoberfest done only once in a year? @Hacktoberfest #Hacktoberfest2020', #
# 'something... \n\n@HaltAMC #HaltandCatchFire', #
# 'something... \n\n@ZoeysPlaylist #ZoeysPlaylist', #
# 'something... \n\n@Devs_FXonHulu #Devs #FXonHulu', #
Expand Down
5 changes: 4 additions & 1 deletion questions_version_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,8 @@
'What is the difference between merge and rebase', #
'What makes a good commit message?', # tells why you made a change https://dev.to/yvonnickfrin/a-guide-on-commit-messages-d8n
'What are examples of software that can be used for version control other than git?', # SVN
'What is a real life example of version control?', #
'What is a real life example of version control?', #
'What is a branch? Why do you need to make a branch?', #
'What is the difference between a fix and a hotfix?', #
'What is a master branch?', #
]