Skip to content

Instantly share code, notes, and snippets.

@genisys89
genisys89 / materials.js
Created January 26, 2024 06:49 — forked from adrianhajdin/materials.js
Alan AI News Project Materials
// 1. NewsCard/styles.js:
import { makeStyles } from '@material-ui/core/styles';
export default makeStyles({
media: {
height: 250,
},
border: {
border: 'solid',
},
@genisys89
genisys89 / alanStudio.js
Created January 26, 2024 06:48 — forked from adrianhajdin/alanStudio.js
Alan Studio Code Materials
intent('What does this app do?', 'What can I do here?',
reply('This is a news project.'));
const API_KEY = '7bdfb1b10aca41c6becea47611b7c35a';
let savedArticles = [];
// News by Source
intent('Give me the news from $(source* (.*))', (p) => {
let NEWS_API_URL = `https://newsapi.org/v2/top-headlines?apiKey=${API_KEY}`;