[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"article-how-to-track-multi-day-severe-weather-outbreak-en":3,"article-related-how-to-track-multi-day-severe-weather-outbreak-en":37,"series-tools-94e3e0ea-ed3a-4b04-b254-558122ea9286":89},{"id":4,"title":5,"content":6,"summary":7,"source":8,"source_url":9,"author":10,"image_url":11,"keywords":12,"language":19,"translated_content":10,"views":20,"is_premium":21,"created_at":22,"updated_at":22,"cover_image":11,"published_at":23,"rewrite_status":24,"rewrite_error":10,"rewritten_from_id":25,"slug":26,"category":27,"related_article_id":28,"status":29,"google_indexed_at":10,"x_posted_at":10,"tweet_text":10,"title_rewritten_at":10,"title_original":10,"key_takeaways":30,"topic_cluster_id":34,"embedding":35,"is_canonical_seed":36},"94e3e0ea-ed3a-4b04-b254-558122ea9286","How to Track a Multi-Day Severe Weather Outbreak","\u003Cp data-speakable=\"summary\">Use live radar, alerts, and forecast data to monitor a tornado outbreak safely.\u003C\u002Fp>\u003Cp>This guide is for developers, weather app builders, and newsroom technologists who need to follow a fast-moving \u003Ca href=\"\u002Fnews\u002Fhow-to-read-weekend-severe-weather-forecast-en\">severe weather\u003C\u002Fa> event and turn live updates into a reliable monitoring workflow. By the end, you will have a simple setup for watching alerts, reading official forecasts, and verifying tornado, hail, wind, and flood threats as they evolve.\u003C\u002Fp>\u003Cp>The example below uses public weather sources and a lightweight Node.js script so you can automate checks, surface warnings, and keep a clear record of the most important storm updates.\u003C\u002Fp>\u003Ch2>Before you start\u003C\u002Fh2>\u003Cul>\u003Cli>Node.js 20+ installed\u003C\u002Fli>\u003Cli>Git installed\u003C\u002Fli>\u003Cli>A free account on the National Weather Service API docs and access to the [National Weather Service API](https:\u002F\u002Fwww.weather.gov\u002Fdocumentation\u002Fservices-web-api)\u003C\u002Fli>\u003Cli>A weather data source or API key if you want map layers or radar tiles\u003C\u002Fli>\u003Cli>Basic comfort with HTTP requests and JSON\u003C\u002Fli>\u003Cli>Optional: an editor such as VS Code\u003C\u002Fli>\u003C\u002Ful>\u003Ch2>Step 1: Set up a weather watch project\u003C\u002Fh2>\u003Cp>Goal: create a small project that can fetch alerts and forecast data without extra tooling.\u003C\u002Fp>\n\u003Cfigure class=\"my-6\">\u003Cimg src=\"https:\u002F\u002Fxxdpdyhzhpamafnrdkyq.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Fcovers\u002Finline-1779106466031-lgc8.png\" alt=\"How to Track a Multi-Day Severe Weather Outbreak\" class=\"rounded-xl w-full\" loading=\"lazy\" \u002F>\u003C\u002Ffigure>\n\u003Cpre>\u003Ccode>mkdir severe-weather-watch\ncd severe-weather-watch\nnpm init -y\nnpm install node-fetch\u003C\u002Fcode>\u003C\u002Fpre>\u003Cp>Verification: you should see a new package.json file and a node_modules folder after installation.\u003C\u002Fp>\u003Ch2>Step 2: Pull official alert data\u003C\u002Fh2>\u003Cp>Goal: connect to the [National Weather Service \u003Ca href=\"\u002Ftag\u002Fapi\">API\u003C\u002Fa>](https:\u002F\u002Fwww.weather.gov\u002Fdocumentation\u002Fservices-web-api) so your app can read active watches and warnings from a trusted source.\u003C\u002Fp>\n\u003Cfigure class=\"my-6\">\u003Cimg src=\"https:\u002F\u002Fxxdpdyhzhpamafnrdkyq.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Fcovers\u002Finline-1779106469808-8mkt.png\" alt=\"How to Track a Multi-Day Severe Weather Outbreak\" class=\"rounded-xl w-full\" loading=\"lazy\" \u002F>\u003C\u002Ffigure>\n\u003Cpre>\u003Ccode>import fetch from 'node-fetch';\n\nconst url = 'https:\u002F\u002Fapi.weather.gov\u002Falerts\u002Factive?area=NE';\nconst res = await fetch(url, {\n  headers: { 'User-Agent': 'severe-weather-watch\u002F1.0 you@example.com' }\n});\nconst data = await res.json();\n\nconsole.log(data.features.map(f => f.properties.event));\u003C\u002Fcode>\u003C\u002Fpre>\u003Cp>Verification: you should see alert names such as Tornado Warning, Severe Thunderstorm Warning, or Flash Flood Warning.\u003C\u002Fp>\u003Ch2>Step 3: Filter the highest-risk storm signals\u003C\u002Fh2>\u003Cp>Goal: highlight the signals that matter most during a Plains outbreak, including strong tornadoes, giant hail, and destructive winds.\u003C\u002Fp>\u003Cpre>\u003Ccode>const events = data.features.map(f => f.properties);\nconst highRisk = events.filter(e =>\n  ['Tornado Warning', 'Severe Thunderstorm Warning', 'Flash Flood Warning'].includes(e.event)\n);\n\nconsole.log(highRisk.map(e => ({ event: e.event, area: e.areaDesc, severity: e.severity })) );\u003C\u002Fcode>\u003C\u002Fpre>\u003Cp>Verification: you should see a shorter list of only the most urgent alerts, not every advisory in the feed.\u003C\u002Fp>\u003Ch2>Step 4: Add a simple severity dashboard\u003C\u002Fh2>\u003Cp>Goal: turn raw alerts into a readable status view that tells you where the threat is strongest and what kind of damage is possible.\u003C\u002Fp>\u003Cpre>\u003Ccode>for (const alert of highRisk) {\n  console.log(`${alert.event} | ${alert.areaDesc} | ${alert.severity}`);\n}\u003C\u002Fcode>\u003C\u002Fpre>\u003Cp>Verification: you should see a clean text summary that can be copied into a dashboard, Slack channel, or newsroom ticker.\u003C\u002Fp>\u003Ch2>Step 5: Verify the storm against radar and forecast guidance\u003C\u002Fh2>\u003Cp>Goal: cross-check alerts with radar and forecast products so you do not rely on a single source when storms are moving quickly.\u003C\u002Fp>\u003Cp>Use live radar from your preferred provider, then compare it with the Storm Prediction Center outlook and local National Weather Service warnings. During a major outbreak, that extra check helps confirm whether a storm is still tornadic, whether hail cores are intensifying, and whether warnings are expanding eastward.\u003C\u002Fp>\u003Cp>Verification: you should be able to match at least one active warning area with a visible storm cell or forecast risk zone.\u003C\u002Fp>\u003Ch2>Step 6: Automate overnight checks and notifications\u003C\u002Fh2>\u003Cp>Goal: keep monitoring active when storms continue after dark and people may miss manual updates.\u003C\u002Fp>\u003Cp>Schedule your script to run every 5 to 10 minutes with cron, \u003Ca href=\"\u002Ftag\u002Fgithub-actions\">GitHub Actions\u003C\u002Fa>, or a serverless job, then send a message when a new Tornado Warning appears or when a warning polygon expands into a new county. That gives you a repeatable way to track changing threats during long-lived outbreaks.\u003C\u002Fp>\u003Cp>Verification: you should receive a test notification when the script detects a new alert or a changed area description.\u003C\u002Fp>\u003Ctable>\u003Cthead>\u003Ctr>\u003Cth>Metric\u003C\u002Fth>\u003Cth>Before\u002FBaseline\u003C\u002Fth>\u003Cth>After\u002FResult\u003C\u002Fth>\u003C\u002Ftr>\u003C\u002Fthead>\u003Ctbody>\u003Ctr>\u003Ctd>Alert visibility\u003C\u002Ftd>\u003Ctd>Manual checking of headlines\u003C\u002Ftd>\u003Ctd>Automated pull of active warnings every run\u003C\u002Ftd>\u003C\u002Ftr>\u003Ctr>\u003Ctd>Update latency\u003C\u002Ftd>\u003Ctd>Minutes to hours between checks\u003C\u002Ftd>\u003Ctd>Near-real-time refresh on a schedule\u003C\u002Ftd>\u003C\u002Ftr>\u003Ctr>\u003Ctd>Coverage\u003C\u002Ftd>\u003Ctd>Single article or single map view\u003C\u002Ftd>\u003Ctd>Alerts plus forecast and radar cross-checks\u003C\u002Ftd>\u003C\u002Ftr>\u003C\u002Ftbody>\u003C\u002Ftable>\u003Ch2>Common mistakes\u003C\u002Fh2>\u003Cul>\u003Cli>Using only a news recap. Fix: always verify against official alerts and forecast products before acting on the information.\u003C\u002Fli>\u003Cli>Ignoring overnight risk. Fix: schedule checks and notifications so warnings still surface while people are asleep.\u003C\u002Fli>\u003Cli>Treating every alert the same. Fix: prioritize Tornado Warning, Severe Thunderstorm Warning, and Flash Flood Warning before lower-priority advisories.\u003C\u002Fli>\u003C\u002Ful>\u003Ch2>What's next\u003C\u002Fh2>\u003Cp>Next, extend the workflow with county-level geofencing, map overlays, and a small incident log so you can compare outbreaks over time and build a stronger severe-weather monitoring tool.\u003C\u002Fp>","Use live radar, alerts, and forecast data to monitor a tornado outbreak safely.","www.foxweather.com","https:\u002F\u002Fwww.foxweather.com\u002Flive-news\u002Flive-updates-dangerous-severe-weather-outbreak-threatens-millions-with-strong-tornadoes-huge-hail",null,"https:\u002F\u002Fxxdpdyhzhpamafnrdkyq.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Fcovers\u002Finline-1779106466031-lgc8.png",[13,14,15,16,17,18],"National Weather Service API","tornado warning","severe weather","weather alerts","radar","Node.js","en",0,false,"2026-05-18T12:13:40.842225+00:00","2026-05-18T12:13:40.823+00:00","done","4c0da2ff-89b8-4a8d-bbce-b0788597321e","how-to-track-multi-day-severe-weather-outbreak-en","tools","3d70b983-2b3d-4320-bf04-04e79df3ba4f","published",[31,32,33],"You can build a simple alert-monitoring workflow with Node.js and official weather data.","Filtering for tornado, hail, wind, and flood alerts keeps the signal focused during fast-moving outbreaks.","Automating checks and notifications helps you track overnight severe weather more reliably.","15eaeec2-7f7e-4fa8-83a1-4dc8a1a61f2f","[0.017867146,-0.0006419885,0.005597333,-0.048556365,0.002743408,-0.00031231772,-0.016379649,-0.008024676,-0.03830868,0.02171645,0.010663978,-0.016551796,0.032442402,0.027123876,0.10727777,-0.0017615823,-0.016770508,-0.012296851,-0.009175328,0.042307585,0.013679113,-0.027787251,-0.006020453,-0.01787527,0.021493938,-0.013189391,0.018549735,0.011254903,0.044574596,0.032437168,-0.0012880664,0.0017814582,-0.02232038,0.004113592,-0.0097987475,-0.011873839,0.006022616,0.010286918,-0.012938409,-0.010983219,0.0041146623,0.0030006298,0.012336441,0.009432478,-0.016990146,-0.0038537201,-0.005934567,0.007572114,0.0031450836,0.037452046,-0.0031280285,-0.026775254,0.0018121139,-0.19031166,-0.0044947607,0.003532606,0.00094548357,-0.040133562,0.015526611,-0.0016481183,0.0063101365,0.031552915,-0.016560493,-0.009586708,0.01082861,-0.016986419,0.011558332,0.012930805,-0.0059190327,-0.006985675,0.02996084,0.00013447799,-0.0076440214,0.004787057,-0.016792217,-0.02702993,0.014204798,0.027557852,-0.013077858,-0.0035572369,0.013993848,-0.01305258,-0.004653913,-0.029146323,0.006758539,-0.006499129,-0.02304399,0.021702055,-0.021746531,0.008999536,-0.0058160773,0.023463584,0.0017834608,-0.022059163,0.027846206,-0.010949874,-0.021798514,-0.008220922,-3.150088e-05,-0.0014583495,-0.010958727,-0.0071309065,-0.011900918,0.02633935,0.018376429,-0.005803255,-0.0011636536,0.007870486,0.040371556,0.038444947,0.03813543,-0.00085832167,0.010857106,-0.026804244,-0.0057924706,-0.114092715,-0.020092055,0.00468387,0.0019604014,-0.008324111,-0.020908903,-0.011975302,0.004419463,0.0023295947,-0.0054962137,-0.044942215,0.03443402,-0.0005721474,-0.0051812567,8.322953e-05,0.0030340469,-0.03786708,0.022699967,0.025832705,-0.01626082,-0.006938385,-0.00954986,-0.0139315585,0.010881178,-0.039261613,0.0004361318,0.045333695,0.023183243,-0.03680794,-0.00278436,-0.022164263,-0.039302275,0.0016864488,-0.0053095147,-0.025048379,0.0090693915,-0.0107233,0.04448234,-0.0032967888,0.033134256,-0.0027551916,-0.026998378,0.008107274,0.006516943,-0.0131702125,-0.01357898,0.014165216,0.008199282,0.0041065244,-0.005812046,-0.004311582,0.020430148,-0.0030076928,0.059204146,-0.001045743,0.0051924577,0.00994034,-0.0110441465,-0.0111044,0.01815413,0.010781423,-0.026108885,-0.0043382924,-0.0009957743,-0.025272578,-0.009899205,-0.017895559,-0.016111374,0.017759848,0.0026173051,-0.0049018823,0.012462473,-0.009037794,0.009861017,0.0119632855,-0.0050123357,-0.02300307,0.0056231907,-0.025725821,0.005517173,-0.026249262,0.0067191496,-0.00624662,-0.003699205,-0.020883655,0.020894708,-0.04272299,-0.010411155,-0.013753469,0.017716374,-0.019427251,0.0035831546,0.011773604,-0.0026369535,-0.020328673,0.012043887,0.03166636,0.020868842,-0.020245116,-0.0059972582,-0.025969455,-0.0037139188,-0.016080434,-0.0048705908,-0.003130475,0.003344504,0.0006131503,0.012346833,0.013928114,0.011715345,-0.025398988,0.007690603,0.031007942,0.00095685734,0.0062996275,0.012677824,0.0030293197,0.0068960693,-0.00728481,-0.018791815,0.03295859,0.013178455,-0.010486114,0.0016867318,-0.00154419,0.0061521037,-0.028379187,-0.021119175,0.013500163,0.03664602,-0.017333338,0.00501533,0.0063018613,0.016434602,0.0128485225,0.014531253,-0.0016717133,-0.009318722,0.011204405,-0.030571863,-0.011921322,-0.004804464,-0.014180607,-0.010137043,-0.015272604,-0.007923317,0.0008743891,0.005576096,-0.059526693,0.0075852047,0.01136614,-0.0029892244,-0.01931077,0.009247813,-0.015914362,0.012361955,0.02660288,-0.007506925,-0.007756642,-0.02115419,-0.00044595543,-0.041696787,0.011292201,-0.03599562,0.002880531,0.01342175,0.0031422148,-0.0065211663,0.014150253,0.015685242,-0.01863746,-0.021712886,-0.0287159,-0.006844059,-0.014863867,0.01561149,0.006605099,-0.007183733,-0.012278297,0.01985603,-0.019823624,-0.0013928676,-0.007716466,0.01256217,-0.00032278092,0.019272929,0.02365898,0.016875703,0.036533628,-0.012740349,-0.008013193,-0.018944064,0.004118814,0.016035933,0.004529821,0.00089292676,0.00047432558,0.017482925,-0.025781997,0.009701282,-0.01735064,0.025744272,0.013457977,0.0039989185,0.002591032,-0.004379364,0.032264512,0.014057782,-0.0057725026,0.003675502,-0.017577784,0.010439452,-0.00052471255,-0.0017199368,-0.020962978,-0.0074143508,0.00066643645,-0.00638719,-0.034011945,-0.032148678,0.012694632,-0.0136507945,7.257623e-05,0.011006895,0.029666377,-0.02127969,0.0050120237,-0.015582972,-0.0025334435,0.02369229,-0.0028724484,-0.01616341,-0.0050432715,0.01369278,-0.025138788,0.04346059,0.003764873,0.012934869,0.0006511174,-0.030057156,0.03219242,-0.010922848,0.023080172,0.009305249,0.0007602788,0.014215801,0.014330294,0.01217939,0.016752655,0.004469195,-0.02146763,0.004547984,0.036285087,-0.0037370885,0.031403046,-0.011322279,-0.008158474,-0.017931433,0.017257258,-0.007788862,-0.0023493057,-0.0056954073,-0.016466016,-0.011156797,0.010265166,-0.01363982,0.02201723,0.032681197,-0.008313968,-0.017305853,-0.030136244,-0.025244733,-0.0050805514,-0.0030541725,-0.013862977,-0.0007477355,0.013590159,-0.015722904,0.009142467,-0.016057204,0.014859768,-0.003165248,0.027042286,-0.010882717,0.032582704,-0.0045133187,-0.013205369,-0.05276642,0.022695849,0.008620162,-0.01404169,-0.05436643,-0.0041289544,0.01832312,-0.013400356,-0.009715881,0.009983348,0.0024897882,0.0077886474,0.028602578,0.018361127,-0.008915061,-0.0017047283,9.1254486e-05,0.0012237446,0.0076166126,-0.0006878977,0.014426917,0.01672077,-0.0010514308,-0.0024151208,0.0018574848,0.010496559,-0.0067136185,-0.0051459633,0.0054300018,0.0111150285,-0.0055935723,-0.010709162,-0.01296415,-0.056891214,0.019217107,-0.013288732,-0.03856948,-0.021340095,-0.017820198,0.009204615,-0.010378207,0.0060302853,-0.029076159,-0.0218552,-0.01689359,0.0011918112,-0.021565052,-0.014979686,0.0060250596,0.013014163,0.03125745,0.026102776,-0.028605705,-0.014346804,-0.028713305,-0.027455095,0.01789375,0.0030695829,0.030384963,-0.01863002,0.0251465,-0.008253734,0.020033386,-0.020028733,-0.0054847565,-0.0028761332,-0.024002776,0.012888077,0.029897362,-0.012212495,-0.0002757809,-0.024112435,-0.004925983,0.004846123,0.011947986,-0.01302214,-0.00095294305,-0.014046807,-0.0053977426,-0.0029189764,-0.020206833,0.026199587,0.01624004,0.0057952763,0.027363775,0.047645975,0.021517605,-0.0009535116,0.032246865,0.010697762,0.0046528233,-0.0058267014,-0.01773808,-0.013104327,-0.0007479443,0.02515421,0.012987187,0.011080665,-0.0068096234,0.0009761735,-0.0032059064,0.0032559934,-0.01182671,-0.009452154,-0.012611891,0.0149420705,0.0090298625,-0.013110012,0.0014066963,0.018238172,0.012590612,0.007062482,-0.018929632,-0.0438816,0.0141446525,-0.009464764,-0.0068572257,0.0037559387,0.007311061,-0.024834277,-0.007373452,0.007088351,0.0069284746,-0.020656664,-0.00861137,0.004834004,-0.01551542,0.016267542,0.0018424602,0.031014469,-0.010310435,-0.012759756,0.008691828,-0.019261643,0.030410808,0.022785082,-0.0063241166,-0.0012103765,0.0074380124,-0.013619594,-0.0035917128,0.015182152,0.0010014084,-0.14000037,0.005761732,0.010489275,0.009971894,-0.031064086,0.0017944075,0.0036586819,0.011576569,0.010891997,0.011814697,-0.014950662,0.008008039,0.009739353,-0.0046159946,-0.000315404,-0.016760211,-0.0015381846,0.007602702,0.028597265,5.7255973e-05,-0.0023094602,-0.035110183,-0.0026502016,0.022935802,-0.034835864,-0.009464002,0.016599359,-0.005296236,-0.0063127764,-0.03209995,-0.017912094,0.02077705,0.012247656,0.03429072,0.02832364,0.00044348848,0.0146265635,-0.005906442,0.028125742,0.0031463597,-0.008823199,-0.023840167,0.005970131,-0.018200079,0.014622563,-0.01723947,-0.0092017865,0.02278265,0.017553125,-0.0054213926,0.028911622,0.014876476,-0.010472283,-0.03539378,-0.02100357,-0.00086978223,-0.028011605,-0.00032501944,0.0011717945,-0.0010773942,0.010981113,0.028380616,-0.011176497,0.0027826056,-0.034498848,0.003267069,-0.02414918,-0.0017477134,-0.00093742425,0.02059705,-0.021896634,-0.0062258546,-0.020895647,0.01710048,-0.01309521,-0.0045037535,-0.0031925724,-0.0012337923,0.014092756,-0.011595063,-0.022669122,-0.016027257,-0.05935299,-0.017368698,0.011343304,0.0134065095,0.00081334275,-0.01670237,-0.0049401713,-0.004497059,-0.00056003226,0.0098611945,-0.023603126,-0.013268488,-0.004892184,-0.012376726,0.024370177,0.009028067,-0.015594457,0.008264459,-0.0022030163,-0.010426175,-0.016787449,0.005810271,-0.015246073,-0.008963223,-0.005917374,0.010388632,-0.01741129,0.012530865,-0.0053051403,-0.00017981252,-0.006450979,-0.13983525,-0.018637167,-0.017020753,0.011877652,0.012152129,-0.00047052337,0.018675886,-0.012206033,-0.006745883,-0.022673594,-0.019354174,-0.004570077,-0.01878051,0.019700987,0.005549472,0.10830819,0.0117629375,0.025108654,-0.0037865173,-0.011403306,-0.026994362,-0.02396554,-0.022076145,0.022223005,0.011611287,0.012939783,0.008312357,0.021730926,0.021230115,0.010541938,-0.009656506,0.01672974,0.0015883038,-0.003252888,0.009087366,0.017444067,0.027891215,-0.031494163,-0.01004506,0.018530032,0.036923185,0.0048601297,0.011546141,-0.013836071,-0.0013790091,0.004278119,-0.011392224,0.022136021,-0.0019167489,-0.0031996968,0.008213559,-0.06415209,0.004221847,0.025698032,0.037248306,0.025150519,-0.008821328,0.02104861,0.006437044,-0.014228921,0.01090228,0.00888358,0.015939258,0.025807373,0.015387955,-0.03573759,0.00060701236,0.012526192,0.030690609,-0.027325159,0.020795329,-0.0089208465,-0.030043496,0.009949986,-0.015469995,0.0035818093,-0.008708177,0.030218925,-0.04510749,-0.032242075,-0.010598228,0.004838021,0.014236954,-0.0061850776,-0.0064808107,-0.040417366,-0.0042402977,-0.0035933,0.01839717,0.006773326,0.005885661,-0.004080058,-0.029800102,-0.01214756,0.0057450416,-0.009028061,0.005653512,-0.012297095,-0.011403592,-0.020344175,-0.0069644493,-0.004227403,0.01083407,-0.0010385435,0.013830621,0.018089363,0.0017875725,-0.022930864,0.016509276,-0.010607085]",true,{"tags":38,"relatedLang":48,"relatedPosts":52},[39,41,43,44,46],{"name":15,"slug":40},"severe-weather",{"name":14,"slug":42},"tornado-warning",{"name":17,"slug":17},{"name":13,"slug":45},"national-weather-service-api",{"name":16,"slug":47},"weather-alerts",{"id":28,"slug":49,"title":50,"language":51},"how-to-track-multi-day-severe-weather-outbreak-zh","如何追蹤多日強烈天氣爆發","zh",[53,59,65,71,77,83],{"id":54,"slug":55,"title":56,"cover_image":57,"image_url":57,"created_at":58,"category":27},"fad5cbcf-a310-4549-bf37-91cd655bef14","simple-watch-guide-ai-doc-streaming-plan-en","A simple watch guide turns AI Doc timing into a plan","https:\u002F\u002Fxxdpdyhzhpamafnrdkyq.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Fcovers\u002Finline-1779117879887-mahz.png","2026-05-18T15:24:09.53583+00:00",{"id":60,"slug":61,"title":62,"cover_image":63,"image_url":63,"created_at":64,"category":27},"bc787acf-cdad-4acd-a3f9-90ebfec98e11","mimolive-617b2-blackmagic-sdi-fix-en","mimoLive 6.17b2 fixes SDI combing on Blackmagic","https:\u002F\u002Fxxdpdyhzhpamafnrdkyq.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Fcovers\u002Finline-1779113046084-e78f.png","2026-05-18T14:03:37.151745+00:00",{"id":66,"slug":67,"title":68,"cover_image":69,"image_url":69,"created_at":70,"category":27},"2a62583f-76db-4a89-b0dd-c0890b2b6e01","why-claude-for-small-business-belongs-on-mac-en","Why Claude for Small Business belongs on every Mac, not just in demos","https:\u002F\u002Fxxdpdyhzhpamafnrdkyq.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Fcovers\u002Finline-1779089790858-uzdo.png","2026-05-18T07:13:23.828097+00:00",{"id":72,"slug":73,"title":74,"cover_image":75,"image_url":75,"created_at":76,"category":27},"441ff292-9d4c-467b-8d03-ab8678d3605b","why-deepscientist-is-right-shape-ai-research-en","Why DeepScientist is the right shape for AI research","https:\u002F\u002Fxxdpdyhzhpamafnrdkyq.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Fcovers\u002Finline-1779087834713-tjfk.png","2026-05-18T07:03:28.542844+00:00",{"id":78,"slug":79,"title":80,"cover_image":81,"image_url":81,"created_at":82,"category":27},"c727f6d6-93c4-4f23-8cff-4efb25cbb8de","claude-code-v2-1-143-background-session-fixes-en","Claude Code v2.1.143 fixes background sessions","https:\u002F\u002Fxxdpdyhzhpamafnrdkyq.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Fcovers\u002Finline-1779073444292-my8i.png","2026-05-18T03:03:37.614216+00:00",{"id":84,"slug":85,"title":86,"cover_image":87,"image_url":87,"created_at":88,"category":27},"c964fdf9-d57e-4ce4-a1bc-276f93f9daf1","microsoft-fluent-2-design-system-en","Microsoft Fluent 2: What Makes It Work","https:\u002F\u002Fxxdpdyhzhpamafnrdkyq.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Fcovers\u002Finline-1779071638452-4531.png","2026-05-18T02:33:32.965582+00:00",[90,95,100,105,110,115,120,125,130,135],{"id":91,"slug":92,"title":93,"created_at":94},"8008f1a9-7a00-4bad-88c9-3eedc9c6b4b1","surepath-ai-mcp-policy-controls-en","SurePath AI's New MCP Policy Controls Enhance AI Security","2026-03-26T01:26:52.222015+00:00",{"id":96,"slug":97,"title":98,"created_at":99},"27e39a8f-b65d-4f7b-a875-859e2b210156","mcp-standard-ai-tools-2026-en","MCP Standard in 2026: Integrating AI Tools","2026-03-26T01:27:43.127519+00:00",{"id":101,"slug":102,"title":103,"created_at":104},"165f9a19-c92d-46ba-b3f0-7125f662921d","rag-2026-transforming-enterprise-ai-en","How RAG in 2026 is Transforming Enterprise AI","2026-03-26T01:28:11.485236+00:00",{"id":106,"slug":107,"title":108,"created_at":109},"6a2a8e6e-b956-49d8-be12-cc47bdc132b2","mastering-ai-prompts-2026-guide-en","Mastering AI Prompts: A 2026 Guide for Developers","2026-03-26T01:29:07.835148+00:00",{"id":111,"slug":112,"title":113,"created_at":114},"d6653030-ee6d-4043-898d-d2de0388545b","evolving-world-prompt-engineering-en","The Evolving World of Prompt Engineering","2026-03-26T01:29:42.061205+00:00",{"id":116,"slug":117,"title":118,"created_at":119},"3ab2c67e-4664-4c67-a013-687a2f605814","garry-tan-open-sources-claude-code-toolkit-en","Garry Tan Open-Sources a Claude Code Toolkit","2026-03-26T08:26:20.245934+00:00",{"id":121,"slug":122,"title":123,"created_at":124},"66a7cbf8-7e76-41d4-9bbf-eaca9761bf69","github-ai-projects-to-watch-in-2026-en","20 GitHub AI Projects to Watch in 2026","2026-03-26T08:28:09.752027+00:00",{"id":126,"slug":127,"title":128,"created_at":129},"231306b3-1594-45b2-af81-bb80e41182f2","claude-code-vs-cursor-2026-en","Claude Code vs Cursor in 2026","2026-03-26T13:27:14.177468+00:00",{"id":131,"slug":132,"title":133,"created_at":134},"9f332fda-eace-448a-a292-2283951eee71","practical-github-guide-learning-ml-2026-en","A Practical GitHub Guide to Learning ML in 2026","2026-03-27T01:16:50.125678+00:00",{"id":136,"slug":137,"title":138,"created_at":139},"1b1f637d-0f4d-42bd-974b-07b53829144d","aiml-2026-student-ai-ml-lab-repo-review-en","AIML-2026 Is a Bare-Bones Student Lab Repo","2026-03-27T01:21:51.661231+00:00"]