| |
| import type { PanelConfig, MapLayers } from '@/types'; |
| import type { VariantConfig } from './base'; |
|
|
| |
| export * from './base'; |
|
|
| |
| export * from '../tech-companies'; |
| export * from '../ai-research-labs'; |
| export * from '../startup-ecosystems'; |
| export * from '../ai-regulations'; |
|
|
| |
| export { |
| SOURCE_TIERS, |
| getSourceTier, |
| SOURCE_TYPES, |
| getSourceType, |
| getSourcePropagandaRisk, |
| type SourceRiskProfile, |
| type SourceType, |
| } from '../feeds'; |
|
|
| |
| import type { Feed } from '@/types'; |
| import { rssProxyUrl } from '@/utils'; |
|
|
| const rss = rssProxyUrl; |
|
|
| export const FEEDS: Record<string, Feed[]> = { |
| |
| tech: [ |
| { name: 'TechCrunch', url: rss('https://techcrunch.com/feed/') }, |
| { name: 'The Verge', url: rss('https://www.theverge.com/rss/index.xml') }, |
| { name: 'Ars Technica', url: rss('https://feeds.arstechnica.com/arstechnica/technology-lab') }, |
| { name: 'Hacker News', url: rss('https://hnrss.org/frontpage') }, |
| { name: 'MIT Tech Review', url: rss('https://www.technologyreview.com/feed/') }, |
| { name: 'ZDNet', url: rss('https://www.zdnet.com/news/rss.xml') }, |
| { name: 'TechMeme', url: rss('https://www.techmeme.com/feed.xml') }, |
| { name: 'Engadget', url: rss('https://www.engadget.com/rss.xml') }, |
| { name: 'Fast Company', url: rss('https://feeds.feedburner.com/fastcompany/headlines') }, |
| ], |
|
|
| |
| ai: [ |
| { name: 'AI News', url: rss('https://news.google.com/rss/search?q=(OpenAI+OR+Anthropic+OR+Google+AI+OR+"large+language+model"+OR+ChatGPT+OR+Claude+OR+"AI+model")+when:2d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'VentureBeat AI', url: rss('https://venturebeat.com/category/ai/feed/') }, |
| { name: 'The Verge AI', url: rss('https://www.theverge.com/rss/ai-artificial-intelligence/index.xml') }, |
| { name: 'MIT Tech Review AI', url: rss('https://www.technologyreview.com/topic/artificial-intelligence/feed') }, |
| { name: 'MIT Research', url: rss('https://news.mit.edu/rss/research') }, |
| { name: 'ArXiv AI', url: rss('https://export.arxiv.org/rss/cs.AI') }, |
| { name: 'ArXiv ML', url: rss('https://export.arxiv.org/rss/cs.LG') }, |
| { name: 'AI Weekly', url: rss('https://news.google.com/rss/search?q="artificial+intelligence"+OR+"machine+learning"+when:3d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'Anthropic News', url: rss('https://news.google.com/rss/search?q=Anthropic+Claude+AI+when:7d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'OpenAI News', url: rss('https://news.google.com/rss/search?q=OpenAI+ChatGPT+GPT-4+when:7d&hl=en-US&gl=US&ceid=US:en') }, |
| ], |
|
|
| |
| startups: [ |
| { name: 'TechCrunch Startups', url: rss('https://techcrunch.com/category/startups/feed/') }, |
| { name: 'VentureBeat', url: rss('https://venturebeat.com/feed/') }, |
| { name: 'Crunchbase News', url: rss('https://news.crunchbase.com/feed/') }, |
| { name: 'SaaStr', url: rss('https://www.saastr.com/feed/') }, |
| { name: 'TechCrunch Venture', url: rss('https://techcrunch.com/category/venture/feed/') }, |
| { name: 'The Information', url: rss('https://news.google.com/rss/search?q=site:theinformation.com+startup+OR+funding+when:3d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'Fortune Term Sheet', url: rss('https://news.google.com/rss/search?q="Term+Sheet"+venture+capital+OR+startup+when:7d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'PitchBook News', url: rss('https://pitchbook.com/feed') }, |
| { name: 'CB Insights', url: rss('https://www.cbinsights.com/research/feed/') }, |
| ], |
|
|
| |
| vcblogs: [ |
| { name: 'Y Combinator Blog', url: rss('https://www.ycombinator.com/blog/rss/') }, |
| { name: 'a16z Blog', url: rss('https://www.a16z.news/feed') }, |
| { name: 'First Round Review', url: rss('https://review.firstround.com/articles/rss') }, |
| { name: 'Sequoia Blog', url: rss('https://www.sequoiacap.com/feed/') }, |
| { name: 'NFX Essays', url: rss('https://www.nfx.com/feed') }, |
| { name: 'Paul Graham Essays', url: rss('https://www.aaronsw.com/2002/feeds/pgessays.rss') }, |
| { name: 'Both Sides of Table', url: rss('https://bothsidesofthetable.com/feed') }, |
| { name: 'Lenny\'s Newsletter', url: rss('https://www.lennysnewsletter.com/feed') }, |
| { name: 'Stratechery', url: rss('https://stratechery.com/feed/') }, |
| ], |
|
|
| |
| regionalStartups: [ |
| { name: 'EU Startups', url: rss('https://www.eu-startups.com/feed/') }, |
| { name: 'Tech.eu', url: rss('https://tech.eu/feed/') }, |
| { name: 'Sifted (Europe)', url: rss('https://sifted.eu/feed') }, |
| { name: 'Tech in Asia', url: rss('https://www.techinasia.com/feed') }, |
| { name: 'KrASIA', url: rss('https://kr-asia.com/feed') }, |
| { name: 'TechCabal (Africa)', url: rss('https://techcabal.com/feed/') }, |
| { name: 'Disrupt Africa', url: rss('https://disrupt-africa.com/feed/') }, |
| { name: 'LAVCA (LATAM)', url: rss('https://lavca.org/feed/') }, |
| { name: 'Contxto (LATAM)', url: rss('https://contxto.com/feed/') }, |
| { name: 'Inc42 (India)', url: rss('https://inc42.com/feed/') }, |
| { name: 'YourStory', url: rss('https://yourstory.com/feed') }, |
| ], |
|
|
| |
| security: [ |
| { name: 'Krebs Security', url: rss('https://krebsonsecurity.com/feed/') }, |
| { name: 'The Hacker News', url: rss('https://feeds.feedburner.com/TheHackersNews') }, |
| { name: 'Dark Reading', url: rss('https://www.darkreading.com/rss.xml') }, |
| { name: 'Schneier', url: rss('https://www.schneier.com/feed/') }, |
| { name: 'CISA Advisories', url: rss('https://www.cisa.gov/cybersecurity-advisories/all.xml') }, |
| { name: 'Cyber Incidents', url: rss('https://news.google.com/rss/search?q=cyber+attack+OR+data+breach+OR+ransomware+OR+hacking+when:3d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'Ransomware.live', url: rss('https://www.ransomware.live/rss.xml') }, |
| ], |
|
|
| |
| policy: [ |
| { name: 'Politico Tech', url: rss('https://rss.politico.com/technology.xml') }, |
| { name: 'AI Regulation', url: rss('https://news.google.com/rss/search?q=AI+regulation+OR+"artificial+intelligence"+law+OR+policy+when:7d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'Tech Antitrust', url: rss('https://news.google.com/rss/search?q=tech+antitrust+OR+FTC+Google+OR+FTC+Apple+OR+FTC+Amazon+when:7d&hl=en-US&gl=US&ceid=US:en') }, |
| ], |
|
|
| |
| finance: [ |
| { name: 'CNBC Tech', url: rss('https://www.cnbc.com/id/19854910/device/rss/rss.html') }, |
| { name: 'MarketWatch Tech', url: rss('https://news.google.com/rss/search?q=site:marketwatch.com+technology+markets+when:2d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'Yahoo Finance', url: rss('https://finance.yahoo.com/rss/topstories') }, |
| { name: 'Seeking Alpha Tech', url: rss('https://seekingalpha.com/market_currents.xml') }, |
| ], |
|
|
| |
| hardware: [ |
| { name: "Tom's Hardware", url: rss('https://www.tomshardware.com/feeds/all') }, |
| { name: 'SemiAnalysis', url: rss('https://www.semianalysis.com/feed') }, |
| { name: 'Semiconductor News', url: rss('https://news.google.com/rss/search?q=semiconductor+OR+chip+OR+TSMC+OR+NVIDIA+OR+Intel+when:3d&hl=en-US&gl=US&ceid=US:en') }, |
| ], |
|
|
| |
| cloud: [ |
| { name: 'InfoQ', url: rss('https://feed.infoq.com/') }, |
| { name: 'The New Stack', url: rss('https://thenewstack.io/feed/') }, |
| { name: 'DevOps.com', url: rss('https://devops.com/feed/') }, |
| ], |
|
|
| |
| dev: [ |
| { name: 'Dev.to', url: rss('https://dev.to/feed') }, |
| { name: 'Lobsters', url: rss('https://lobste.rs/rss') }, |
| { name: 'Changelog', url: rss('https://changelog.com/feed') }, |
| { name: 'Show HN', url: rss('https://hnrss.org/show') }, |
| { name: 'YC Launches', url: rss('https://hnrss.org/launches') }, |
| { name: 'Dev Events', url: rss('https://dev.events/rss.xml') }, |
| ], |
|
|
| |
| layoffs: [ |
| { name: 'Layoffs.fyi', url: rss('https://news.google.com/rss/search?q=tech+layoffs+when:7d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'TechCrunch Layoffs', url: rss('https://techcrunch.com/tag/layoffs/feed/') }, |
| ], |
|
|
| |
| unicorns: [ |
| { name: 'Unicorn News', url: rss('https://news.google.com/rss/search?q=("unicorn+startup"+OR+"unicorn+valuation"+OR+"$1+billion+valuation")+when:7d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'CB Insights Unicorn', url: rss('https://news.google.com/rss/search?q=site:cbinsights.com+unicorn+when:14d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'Decacorn News', url: rss('https://news.google.com/rss/search?q=("decacorn"+OR+"$10+billion+valuation"+OR+"$10B+valuation")+startup+when:14d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'New Unicorns', url: rss('https://news.google.com/rss/search?q=("becomes+unicorn"+OR+"joins+unicorn"+OR+"reaches+unicorn"+OR+"achieved+unicorn")+when:14d&hl=en-US&gl=US&ceid=US:en') }, |
| ], |
|
|
| |
| ipo: [ |
| { name: 'IPO News', url: rss('https://news.google.com/rss/search?q=(IPO+OR+"initial+public+offering"+OR+SPAC)+tech+when:7d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'Tech IPO News', url: rss('https://news.google.com/rss/search?q=tech+IPO+OR+"tech+company"+IPO+when:7d&hl=en-US&gl=US&ceid=US:en') }, |
| ], |
|
|
| |
| producthunt: [ |
| { name: 'Product Hunt', url: rss('https://www.producthunt.com/feed') }, |
| ], |
|
|
| |
| accelerators: [ |
| { name: 'YC News', url: rss('https://news.ycombinator.com/rss') }, |
| { name: 'YC Blog', url: rss('https://www.ycombinator.com/blog/rss/') }, |
| { name: 'Techstars Blog', url: rss('https://www.techstars.com/blog/feed/') }, |
| { name: '500 Global News', url: rss('https://news.google.com/rss/search?q="500+Global"+OR+"500+Startups"+accelerator+when:14d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'Demo Day News', url: rss('https://news.google.com/rss/search?q=("demo+day"+OR+"YC+batch"+OR+"accelerator+batch")+startup+when:7d&hl=en-US&gl=US&ceid=US:en') }, |
| { name: 'Startup School', url: rss('https://news.google.com/rss/search?q="Startup+School"+OR+"YC+Startup+School"+when:14d&hl=en-US&gl=US&ceid=US:en') }, |
| ], |
| }; |
|
|
| |
| export const DEFAULT_PANELS: Record<string, PanelConfig> = { |
| map: { name: 'Global Tech Map', enabled: true, priority: 1 }, |
| 'live-news': { name: 'Tech Headlines', enabled: true, priority: 1 }, |
| events: { name: 'Tech Events', enabled: true, priority: 1 }, |
| ai: { name: 'AI/ML News', enabled: true, priority: 1 }, |
| tech: { name: 'Technology', enabled: true, priority: 1 }, |
| startups: { name: 'Startups & VC', enabled: true, priority: 1 }, |
| vcblogs: { name: 'VC Insights & Essays', enabled: true, priority: 1 }, |
| regionalStartups: { name: 'Global Startup News', enabled: true, priority: 1 }, |
| unicorns: { name: 'Unicorn Tracker', enabled: true, priority: 1 }, |
| accelerators: { name: 'Accelerators & Demo Days', enabled: true, priority: 1 }, |
| security: { name: 'Cybersecurity', enabled: true, priority: 1 }, |
| policy: { name: 'AI Policy & Regulation', enabled: true, priority: 1 }, |
| layoffs: { name: 'Layoffs Tracker', enabled: true, priority: 1 }, |
| markets: { name: 'Tech Stocks', enabled: true, priority: 2 }, |
| finance: { name: 'Financial News', enabled: true, priority: 2 }, |
| crypto: { name: 'Crypto', enabled: true, priority: 2 }, |
| hardware: { name: 'Semiconductors & Hardware', enabled: true, priority: 2 }, |
| cloud: { name: 'Cloud & Infrastructure', enabled: true, priority: 2 }, |
| dev: { name: 'Developer Community', enabled: true, priority: 2 }, |
| 'macro-signals': { name: 'Market Radar', enabled: true, priority: 2 }, |
| 'etf-flows': { name: 'BTC ETF Tracker', enabled: true, priority: 2 }, |
| stablecoins: { name: 'Stablecoins', enabled: true, priority: 2 }, |
| monitors: { name: 'My Monitors', enabled: true, priority: 2 }, |
| }; |
|
|
| |
| export const DEFAULT_MAP_LAYERS: MapLayers = { |
| |
| gpsJamming: false, |
| satellites: false, |
|
|
|
|
| conflicts: false, |
| bases: false, |
| cables: true, |
| pipelines: false, |
| hotspots: false, |
| ais: false, |
| nuclear: false, |
| irradiators: false, |
| sanctions: false, |
| weather: true, |
| economic: true, |
| waterways: false, |
| outages: true, |
| cyberThreats: false, |
| datacenters: true, |
| protests: false, |
| flights: false, |
| military: false, |
| natural: true, |
| spaceports: false, |
| minerals: false, |
| fires: false, |
| ucdpEvents: false, |
| displacement: false, |
| climate: false, |
| |
| startupHubs: true, |
| cloudRegions: true, |
| accelerators: false, |
| techHQs: true, |
| techEvents: true, |
| |
| stockExchanges: false, |
| financialCenters: false, |
| centralBanks: false, |
| commodityHubs: false, |
| gulfInvestments: false, |
| |
| positiveEvents: false, |
| kindness: false, |
| happiness: false, |
| speciesRecovery: false, |
| renewableInstallations: false, |
| tradeRoutes: false, |
| iranAttacks: false, |
| ciiChoropleth: false, |
| resilienceScore: false, |
| dayNight: false, |
| |
| miningSites: false, |
| processingPlants: false, |
| commodityPorts: false, |
| webcams: false, |
| diseaseOutbreaks: false, |
| }; |
|
|
| |
| export const MOBILE_DEFAULT_MAP_LAYERS: MapLayers = { |
| gpsJamming: false, |
| satellites: false, |
|
|
|
|
| conflicts: false, |
| bases: false, |
| cables: false, |
| pipelines: false, |
| hotspots: false, |
| ais: false, |
| nuclear: false, |
| irradiators: false, |
| sanctions: false, |
| weather: false, |
| economic: false, |
| waterways: false, |
| outages: true, |
| cyberThreats: false, |
| datacenters: true, |
| protests: false, |
| flights: false, |
| military: false, |
| natural: true, |
| spaceports: false, |
| minerals: false, |
| fires: false, |
| ucdpEvents: false, |
| displacement: false, |
| climate: false, |
| |
| startupHubs: true, |
| cloudRegions: false, |
| accelerators: false, |
| techHQs: false, |
| techEvents: true, |
| |
| stockExchanges: false, |
| financialCenters: false, |
| centralBanks: false, |
| commodityHubs: false, |
| gulfInvestments: false, |
| |
| positiveEvents: false, |
| kindness: false, |
| happiness: false, |
| speciesRecovery: false, |
| renewableInstallations: false, |
| tradeRoutes: false, |
| iranAttacks: false, |
| ciiChoropleth: false, |
| resilienceScore: false, |
| dayNight: false, |
| |
| miningSites: false, |
| processingPlants: false, |
| commodityPorts: false, |
| webcams: false, |
| diseaseOutbreaks: false, |
| }; |
|
|
| export const VARIANT_CONFIG: VariantConfig = { |
| name: 'tech', |
| description: 'Tech, AI & Startups intelligence dashboard', |
| panels: DEFAULT_PANELS, |
| mapLayers: DEFAULT_MAP_LAYERS, |
| mobileMapLayers: MOBILE_DEFAULT_MAP_LAYERS, |
| }; |
|
|