Skip to content

Instantly share code, notes, and snippets.

Name of your app: Breadcrumbs News Aggregator
Link to live static version:https://breadcrumbs.now.sh/
Link to repo on GitHub:https://github.com/thinkful-ei-gecko/BreadCrumbs-Client
https://github.com/thinkful-ei-gecko/BreadCrumbs-Server
Talked to my family members theytold the app is intersting and told to add differnt categories.
@nrrao
nrrao / Proposal
Last active December 13, 2019 23:57
News Aggregator
Information > All
Fast evaluation
Blurb
Source
Author
Launch full article in new tab
1.) As an informed citizen, I want to be able to review news from wide variety of sources without bias or partisan filtering.
No central point of content control.
News from as many sources as possible.
A constant stream of new articles, regardless of the time or day of the week.
2.) I'm interested in information, not clickbait or vapid articles.
Users can quickly preview the article, and not just rely on the article's title or editor's tagline.
Users can see the source of each article.
Users can view the author's name.
If interested in the article, users can click to view the complete article in a new tab.
3.) I am a believer in the power of Decentralized Autonomous Organizations (DAOs). As such, I would like to see a method for user to be able to determine the visibility/popularity of content with organic unincentivized user voting.
@nrrao
nrrao / p1.PNG
Last active December 6, 2019 17:51
Layout of Portfolio
p1.PNG
When you're done, copy/paste your headline, bio, and the text for your projects into a Gist and submit the link below.
HeadLine
Bio
I'm a Full stack Web Developer based in Philadelphia area.
I love to develop simple, clean, responsive Websites.
Projects
How are the syntaxes async and await useful when writing JavaScript code?
The async function declaration defines an asynchronous function, which returns an AsyncFunction object.
An asynchronous function is a function which operates asynchronously via the event loop, using an implicit
Promise to return its result. But the syntax and structure of your code using async functions is much more
like using standard synchronous functions.
An async function can contain an await expression that pauses the execution of the async function and waits for
the passed Promise's resolution,
and then resumes the async function's execution and evaluates as the resolved value.
Remember, the await keyword is only valid inside async functions. If you use it outside of an async function's body,
Write a statement describing your project idea and the name for your app.
NAme of App: HAbit Tracker
The can be used to track your habits daily.
@nrrao
nrrao / gist:f853fcb28b407c5649ec9a838a22840c
Created November 18, 2019 14:44
spaced-repetition-server-day0
Which database tables are created in the migrations?
word,language,user
What are the endpoints for user registration, login and refresh?
registration POST/api/user
login - POST/api/auth
What endpoints have been implemented in the language router?
GET /api/language
Which endpoints need implementing in the language router?
Designing Layout
Building Your portfolio
Basics of typography and color
Visit the meetup.com API docs found here: https://www.meetup.com/meetup_api/. Answer the following questions:
Does this API require authentication?
Does this API support CORS?
Find the events search endpoint documentation. Describe in detail the response format of the events search endpoint.
What are the limitations placed on the number of requests that can be made?
List the errors that you can expect when making calls to this API.