From b3390d17ce8bcff05ec625f91d43fd794bfdf28e Mon Sep 17 00:00:00 2001 From: Caleb Joshua Date: Tue, 19 Nov 2024 04:31:42 +0530 Subject: [PATCH 1/9] refactor: enhance CategoryNav component with sticky positioning and improved styles --- src/components/CategoryNav.css | 18 ++++++++++++----- src/components/CategoryNav.jsx | 37 ++++++++++++++++++---------------- 2 files changed, 33 insertions(+), 22 deletions(-) diff --git a/src/components/CategoryNav.css b/src/components/CategoryNav.css index 16b03da..4f0b960 100644 --- a/src/components/CategoryNav.css +++ b/src/components/CategoryNav.css @@ -1,8 +1,16 @@ .category-nav { - width: 100%; - box-shadow: inset 0px -1px 0px var(--border-muted); - white-space: nowrap; - overflow-x: scroll; + width: 100%; + box-shadow: inset 0px -1px 0px var(--border-muted); + white-space: nowrap; + overflow-x: scroll; + position: sticky; + top: 0; + background-color: var(--background); + --shadow-color: rgb(0 0 0 / 0.04); + box-shadow: 0px 0px 0px 0px var(--shadow-color), + 0px 1px 1px -0.5px var(--shadow-color), + 0px 3px 3px -1.5px var(--shadow-color); + z-index: 999999; } /* hide scrollbar @@ -13,4 +21,4 @@ .category-nav::-webkit-scrollbar{ display: none; } -*/ \ No newline at end of file +*/ diff --git a/src/components/CategoryNav.jsx b/src/components/CategoryNav.jsx index 8e9a658..b080784 100644 --- a/src/components/CategoryNav.jsx +++ b/src/components/CategoryNav.jsx @@ -3,21 +3,24 @@ import data from "../data/tools.json"; import CategoryNavItem from "./CategoryNavItem"; -export default function CategoryNav({ filter, setFilter }) { - const navItems = [ - {title: "All Tools", category: "all"}, - ...data.tools - ]; +export default function CategoryNav({ filter }) { + const navItems = [{ title: "All Tools", category: "all" }, ...data.tools]; - return -} \ No newline at end of file + return ( + + ); +} From 87f6a7f777cf6e27ef0f497530ce08a445d3cfa1 Mon Sep 17 00:00:00 2001 From: Caleb Joshua Date: Tue, 19 Nov 2024 04:31:55 +0530 Subject: [PATCH 2/9] feat: update CategoryNavItem to navigate on click and display category count --- src/components/CategoryNavItem.jsx | 56 +++++++++++++++++++----------- 1 file changed, 36 insertions(+), 20 deletions(-) diff --git a/src/components/CategoryNavItem.jsx b/src/components/CategoryNavItem.jsx index 0ad99f2..527028b 100644 --- a/src/components/CategoryNavItem.jsx +++ b/src/components/CategoryNavItem.jsx @@ -1,26 +1,42 @@ -import { useState, useEffect, useCallback } from "react"; +import { navigate } from "astro:transitions/client"; +import { useState, useEffect } from "react"; +import data from "../data/tools.json"; import "./CategoryNavItem.css"; export default function CategoryNavItem(props) { - const { title, category, filter, setFilter } = props; - const [isActive, setIsActive] = useState(false); - - useEffect(() => { - let subscription = true; + const { title, category, filter } = props; + const [isActive, setIsActive] = useState(false); - if (filter === category) { - setIsActive(true); - } else { - setIsActive(false); - } + const getCategoryCount = () => { + if (category === "all") { + return data.tools.reduce((acc, item) => acc + item.content.length, 0); + } - return (() => (subscription = !subscription)); - }, [filter]); + const navItemData = data.tools.filter((item) => item.category === category); + return navItemData[0]?.content.length; + }; - return -} \ No newline at end of file + useEffect(() => { + let subscription = true; + + if (filter === category) { + setIsActive(true); + } else { + setIsActive(false); + } + + return () => (subscription = !subscription); + }, [filter]); + + return ( + + ); +} From 75dadabc5830c3cd40a8d3de412092bcca11ab39 Mon Sep 17 00:00:00 2001 From: Caleb Joshua Date: Tue, 19 Nov 2024 04:32:15 +0530 Subject: [PATCH 3/9] feat: implement category-based filtering in Dashboard and add dynamic category pages --- src/components/Dashboard.jsx | 18 +++++----- src/pages/categories/[category].astro | 50 +++++++++++++++++++++++++++ src/pages/index.astro | 2 +- 3 files changed, 59 insertions(+), 11 deletions(-) create mode 100644 src/pages/categories/[category].astro diff --git a/src/components/Dashboard.jsx b/src/components/Dashboard.jsx index ccc373f..a59b712 100644 --- a/src/components/Dashboard.jsx +++ b/src/components/Dashboard.jsx @@ -1,13 +1,11 @@ -import { useState } from "react"; import CategoryNav from "./CategoryNav"; import CardsContainer from "./CardsContainer"; -export default function Dashboard() { - - const [filter, setFilter] = useState("all"); - - return <> - - - -} \ No newline at end of file +export default function Dashboard({ category }) { + return ( + <> + + + + ); +} diff --git a/src/pages/categories/[category].astro b/src/pages/categories/[category].astro new file mode 100644 index 0000000..17dd588 --- /dev/null +++ b/src/pages/categories/[category].astro @@ -0,0 +1,50 @@ +--- +import Layout from "../../layouts/Layout.astro"; + +import "@new-ui/reset"; +import "@new-ui/colors"; +import "@new-ui/typography"; +import "@new-ui/effects"; +import "@new-ui/spacings"; +import Dashboard from "../../components/Dashboard"; + +export function getStaticPaths() { + return [ + {params: {category: 'all'}}, + {params: {category: 'art'}}, + {params: {category: 'audio'}}, + {params: {category: 'code'}}, + {params: {category: 'copywriting'}}, + {params: {category: 'design'}}, + {params: {category: 'developer'}}, + {params: {category: 'education'}}, + {params: {category: 'enterprise'}}, + {params: {category: 'fashion'}}, + {params: {category: 'gaming'}}, + {params: {category: 'health'}}, + {params: {category: 'legal'}}, + {params: {category: 'llm'}}, + {params: {category: 'music'}}, + {params: {category: 'nocode'}}, + {params: {category: 'photos'}}, + {params: {category: 'productivity'}}, + {params: {category: 'prompts'}}, + {params: {category: 'research'}}, + {params: {category: 'seo'}}, + {params: {category: 'social'}}, + {params: {category: 'xtras'}}, + ]; +} + +const { category } = Astro.params; +--- + + +
+ +
+
\ No newline at end of file diff --git a/src/pages/index.astro b/src/pages/index.astro index 001b54b..491be30 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -15,6 +15,6 @@ import Dashboard from "../components/Dashboard"; tagline="Discover AI tools curated for makers and SMBs." >
- +
From a07d1c7b206904c2ed9a73d18a72ba16a92f58cd Mon Sep 17 00:00:00 2001 From: Steve Paul Date: Tue, 19 Nov 2024 23:55:11 +0530 Subject: [PATCH 4/9] Update transitions to persist theme color smoothly --- src/components/Card.css | 81 ++-- src/components/Card.jsx | 26 +- src/components/CardsContainer.jsx | 44 +- src/components/CategoryNavItem.jsx | 66 +-- src/components/Dashboard.jsx | 19 +- src/layouts/Layout.astro | 670 +++++++++++++++++------------ src/layouts/theme.js | 53 --- 7 files changed, 510 insertions(+), 449 deletions(-) delete mode 100644 src/layouts/theme.js diff --git a/src/components/Card.css b/src/components/Card.css index c4775d0..5fb8526 100644 --- a/src/components/Card.css +++ b/src/components/Card.css @@ -1,53 +1,58 @@ .link-card { - list-style: none; - display: flex; - background-color: var(--background-secondary); - background-position: 100%; - border-radius: var(--spacing-03); - height: 8.5rem; - position: relative; - --shadow-color: rgb(0 0 0 / 0.04); - box-shadow: 0px 0px 0px 1px var(--background-selected), - 0px 1px 1px -0.5px var(--shadow-color), - 0px 3px 3px -1.5px var(--shadow-color), - 0px 12px 12px -6px var(--shadow-color); - transition:all .2s ease-out; + list-style: none; + display: flex; + background-color: var(--background-secondary); + background-position: 100%; + border-radius: var(--spacing-03); + height: 8.5rem; + position: relative; + --shadow-color: rgb(0 0 0 / 0.04); + box-shadow: + 0px 0px 0px 1px var(--background-selected), + 0px 1px 1px -0.5px var(--shadow-color), + 0px 3px 3px -1.5px var(--shadow-color), + 0px 12px 12px -6px var(--shadow-color); + content-visibility: auto; + contain-intrinsic-size: 8.5rem; + will-change: transform; + transition: box-shadow 0.2s ease-out; } -.link-card>a { - width: 100%; - text-decoration: none; - padding: 0.8rem 1.2rem; - color: var(--support-info); - justify-content: space-between; +.link-card > a { + width: 100%; + text-decoration: none; + padding: 0.8rem 1.2rem; + color: var(--support-info); + justify-content: space-between; } p { - color: var(--text-secondary); + color: var(--text-secondary); } .link-card:is(:hover, :focus-within) { - background-position: 0; - box-shadow: 0px 0px 0px 2px var(--link), - 0px 1px 1px -0.5px var(--shadow-color), - 0px 3px 3px -1.5px var(--shadow-color), - 0px 12px 12px -6px var(--shadow-color); + background-position: 0; + box-shadow: + 0px 0px 0px 2px var(--link), + 0px 1px 1px -0.5px var(--shadow-color), + 0px 3px 3px -1.5px var(--shadow-color), + 0px 12px 12px -6px var(--shadow-color); } p.distribution { - margin: var(--spacing-00); - position: absolute; - bottom: var(--spacing-06); + margin: var(--spacing-00); + position: absolute; + bottom: var(--spacing-06); } span.tag { - background-color: var(--background-selected); - padding: calc(.25rem - 1px) calc(.5rem - 1px); - border-radius: var(--spacing-02); - display: inline-block; - color: var(--text-secondary); - margin-top: var(--spacing-08); - font-size: var(--desktop-caption); - line-height: var(--lh-desktop-caption); - font-family: var(--body-copy); -} \ No newline at end of file + background-color: var(--background-selected); + padding: calc(0.25rem - 1px) calc(0.5rem - 1px); + border-radius: var(--spacing-02); + display: inline-block; + color: var(--text-secondary); + margin-top: var(--spacing-08); + font-size: var(--desktop-caption); + line-height: var(--lh-desktop-caption); + font-family: var(--body-copy); +} diff --git a/src/components/Card.jsx b/src/components/Card.jsx index 83bcfad..533052c 100644 --- a/src/components/Card.jsx +++ b/src/components/Card.jsx @@ -1,19 +1,17 @@ import "./Card.css"; export default function Card(props) { - const {href, title, body, tag} = props; + const { href, title, body, tag } = props; - return
  • - - - {title} - -

    - {body} -

    -

    - {tag} -

    -
    -
  • + return ( +
  • + + {title} +

    {body}

    +

    + {tag} +

    +
    +
  • + ); } diff --git a/src/components/CardsContainer.jsx b/src/components/CardsContainer.jsx index e54aa6b..3afbb76 100644 --- a/src/components/CardsContainer.jsx +++ b/src/components/CardsContainer.jsx @@ -1,33 +1,29 @@ +import { useMemo } from "react"; import Card from "./Card"; import "./CardsContainer.css"; +import data from "../data/tools.json"; -import data from "../data/tools.json" +export default function CardsContainer({ filter }) { + const filteredCards = useMemo(() => { + return data.tools + .filter((item) => filter === "all" || filter === item.category) + .flatMap((item) => item.content) + .sort((a, b) => a.title.localeCompare(b.title)); + }, [filter]); -export default function CardsContainer(props) { - const { filter } = props; - - return
    -
      - {data.tools - .filter(item => { - if (filter === "all" || filter === item.category) { - return item; - } - }) - .flatMap(item => item.content) - .sort((a, b) => { - return a.title < b.title ? -1 : 1; - }) - .map(({url, title, body, tag}, i) => { - return +
        + {filteredCards.map(({ url, title, body, tag }, i) => ( + - }) - } -
      -
    -} \ No newline at end of file + ))} + + + ); +} diff --git a/src/components/CategoryNavItem.jsx b/src/components/CategoryNavItem.jsx index 527028b..dab0fea 100644 --- a/src/components/CategoryNavItem.jsx +++ b/src/components/CategoryNavItem.jsx @@ -4,39 +4,47 @@ import data from "../data/tools.json"; import "./CategoryNavItem.css"; export default function CategoryNavItem(props) { - const { title, category, filter } = props; - const [isActive, setIsActive] = useState(false); + const { title, category, filter } = props; + const [isActive, setIsActive] = useState(false); - const getCategoryCount = () => { - if (category === "all") { - return data.tools.reduce((acc, item) => acc + item.content.length, 0); - } + const handleNavigation = (e) => { + e.preventDefault(); + navigate(`/categories/${category}`, { + history: "push", + state: { category }, + }); + }; - const navItemData = data.tools.filter((item) => item.category === category); - return navItemData[0]?.content.length; - }; + const getCategoryCount = () => { + if (category === "all") { + return data.tools.reduce((acc, item) => acc + item.content.length, 0); + } - useEffect(() => { - let subscription = true; + const navItemData = data.tools.filter((item) => item.category === category); + return navItemData[0]?.content.length; + }; - if (filter === category) { - setIsActive(true); - } else { - setIsActive(false); - } + useEffect(() => { + let subscription = true; - return () => (subscription = !subscription); - }, [filter]); + if (filter === category) { + setIsActive(true); + } else { + setIsActive(false); + } - return ( - - ); + return () => (subscription = !subscription); + }, [filter]); + + return ( + + ); } diff --git a/src/components/Dashboard.jsx b/src/components/Dashboard.jsx index a59b712..0a68a73 100644 --- a/src/components/Dashboard.jsx +++ b/src/components/Dashboard.jsx @@ -1,11 +1,18 @@ +import { useEffect, useState } from "react"; import CategoryNav from "./CategoryNav"; import CardsContainer from "./CardsContainer"; export default function Dashboard({ category }) { - return ( - <> - - - - ); + const [currentCategory, setCurrentCategory] = useState(category); + + useEffect(() => { + setCurrentCategory(category); + }, [category]); + + return ( + <> + + + + ); } diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 54c4124..b5323e6 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,8 +1,10 @@ --- +import { ViewTransitions } from "astro:transitions"; + export interface Props { - site: string; - title: string; - tagline: string; + site: string; + title: string; + tagline: string; } const { site, title, tagline } = Astro.props; @@ -10,308 +12,406 @@ const { site, title, tagline } = Astro.props; - - - - - - - {site} — Discover AI tools curated for makers and SMBs. - - - - - - - - - + + + + + + + {site} — Discover AI tools curated for makers and SMBs. + + + + + + + + + - -
    - -
    - Submit a Tool - -
    -
    + +
    + +
    + Submit a Tool + +
    +
    -
    -
    -

    - {title} -

    -

    {tagline}

    -
    -
    - +
    +
    +

    + {title} +

    +

    + {tagline} +

    +
    +
    + - - - + + - - + + diff --git a/src/layouts/theme.js b/src/layouts/theme.js deleted file mode 100644 index 5ffce6a..0000000 --- a/src/layouts/theme.js +++ /dev/null @@ -1,53 +0,0 @@ -const storageKey = 'theme-preference' - -const onClick = () => { - // flip current value - theme.value = theme.value === 'light' - ? 'dark' - : 'light' - - setPreference() -} - -const getColorPreference = () => { - if (localStorage.getItem(storageKey)) - return localStorage.getItem(storageKey) - else - return window.matchMedia('(prefers-color-scheme: dark)').matches - ? 'dark' - : 'light' -} - -const setPreference = () => { - localStorage.setItem(storageKey, theme.value) - reflectPreference() -} - -const reflectPreference = () => { - document.firstElementChild - .setAttribute('data-new-ui-theme', theme.value) - - document - .querySelector('#theme-toggle') - ?.setAttribute('aria-label', theme.value) -} - -const theme = { - value: getColorPreference(), -} - -reflectPreference() - -window.onload = () => { - reflectPreference() - document - .querySelector('#theme-toggle') - .addEventListener('click', onClick) -} - -window - .matchMedia('(prefers-color-scheme: dark)') - .addEventListener('change', ({matches:isDark}) => { - theme.value = isDark ? 'dark' : 'light' - setPreference() - }) \ No newline at end of file From 9c0bb5ac5179a831e34be801eedb873f79baa3b0 Mon Sep 17 00:00:00 2001 From: Steve Paul Date: Tue, 19 Nov 2024 23:58:43 +0530 Subject: [PATCH 5/9] Update category count formatting --- src/components/CategoryNavItem.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/CategoryNavItem.jsx b/src/components/CategoryNavItem.jsx index dab0fea..12ede6a 100644 --- a/src/components/CategoryNavItem.jsx +++ b/src/components/CategoryNavItem.jsx @@ -43,7 +43,7 @@ export default function CategoryNavItem(props) { isActive ? "is-active" : "" }`} dangerouslySetInnerHTML={{ - __html: `${title} - ${getCategoryCount()}`, + __html: `${title} (${getCategoryCount()})`, }} > ); From 346f27ca26f0d87f76a39804b5a9ac5baf0d65ac Mon Sep 17 00:00:00 2001 From: Steve Paul Date: Wed, 20 Nov 2024 00:03:12 +0530 Subject: [PATCH 6/9] Fix border transition --- src/components/Card.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Card.css b/src/components/Card.css index 5fb8526..626ac5d 100644 --- a/src/components/Card.css +++ b/src/components/Card.css @@ -15,7 +15,6 @@ content-visibility: auto; contain-intrinsic-size: 8.5rem; will-change: transform; - transition: box-shadow 0.2s ease-out; } .link-card > a { @@ -31,6 +30,7 @@ p { } .link-card:is(:hover, :focus-within) { + transition: box-shadow 0.2s ease-out; background-position: 0; box-shadow: 0px 0px 0px 2px var(--link), From 9c8be3e861c291ce4a326a0ff50dd86d980af185 Mon Sep 17 00:00:00 2001 From: Steve Paul Date: Fri, 22 Nov 2024 15:55:45 +0530 Subject: [PATCH 7/9] Resolve conflicts --- src/data/tools.json | 1260 ++++++++++++++++++++++++++++--------------- 1 file changed, 812 insertions(+), 448 deletions(-) diff --git a/src/data/tools.json b/src/data/tools.json index 323263d..eab7e52 100644 --- a/src/data/tools.json +++ b/src/data/tools.json @@ -8,181 +8,204 @@ "title": "Astria", "body": "Create custom images.", "tag": "Starting at $0.10/prompt", - "url": "https://www.astria.ai/?ref=riseofmachine.com" + "url": "https://www.astria.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Blimey", "body": "Build 3D scene, generate images.", "tag": "Starting at $9", - "url": "https://blimeycreate.com/?ref=riseofmachine.com" - }, - { - "title": "ColorPage.ai", - "body": "Create coloring pages.", - "tag": "Freemium", - "url": "https://colorpage.ai/?ref=riseofmachine.com" + "url": "https://blimeycreate.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Designer", "body": "Generate designs & images.", "tag": "Beta, Free", - "url": "https://designer.microsoft.com/?ref=riseofmachine.com" + "url": "https://designer.microsoft.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Drawww", "body": "Real-Time AI drawing app for iPad.", "tag": "Free", - "url": "https://www.drawww.app/?ref=riseofmachine.com" + "url": "https://www.drawww.app/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Dsnr", "body": "Idea to image.", "tag": "Freemium", - "url": "https://dsnr.ai/?ref=riseofmachine.com" + "url": "https://dsnr.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Exactly", "body": "AI artwork creation platform.", "tag": "Freemium", - "url": "https://exactly.ai/?ref=riseofmachine.com" + "url": "https://exactly.ai/?ref=riseofmachine.com", + "date-added": "2023-12-25" }, { "title": "Flux Lora", "body": "Generate exquisite images.", "tag": "$5.90 one-time fee", - "url": "https://fluxlora.net/?ref=riseofmachine.com" + "url": "https://fluxlora.net/?ref=riseofmachine.com", + "date-added": "2024-09-20" }, { "title": "FurryAI", "body": "Furry AI art generator.", "tag": "Freemium", - "url": "https://www.furryaiart.com/?ref=riseofmachine.com" + "url": "https://www.furryaiart.com/?ref=riseofmachine.com", + "date-added": "2024-10-22" }, { "title": "Freepik Pikaso", "body": "Generative AI with Freepik.", "tag": "Free", - "url": "https://www.freepik.com/pikaso/?ref=riseofmachine.com" + "url": "https://www.freepik.com/pikaso/?ref=riseofmachine.com", + "date-added": "2023-12-22" }, { "title": "GenXi", "body": "Create realistic images from text.", "tag": "Freemium", - "url": "https://genxi.io/?ref=riseofmachine.com" + "url": "https://genxi.io/?ref=riseofmachine.com", + "date-added": "2024-08-23" }, { "title": "Getimg AI", "body": "Create and edit images.", "tag": "Starting at $0/mo", - "url": "https://getimg.ai/editor/?ref=riseofmachine.com" + "url": "https://getimg.ai/editor/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Imgnai", "body": "Text to art.", "tag": "Freemium", - "url": "https://imgnai.com/?ref=riseofmachine.com" + "url": "https://imgnai.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Invoke", "body": "Creative AI for professionals.", "tag": "Starting at $13/mo", - "url": "https://invoke.ai/?ref=riseofmachine.com" + "url": "https://invoke.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Leonardo", "body": "Create visual assets.", "tag": "Freemium", - "url": "https://leonardo.ai/?ref=riseofmachine.com" + "url": "https://leonardo.ai/?ref=riseofmachine.com", + "date-added": "2023-12-25" }, { "title": "Hotpot", "body": "Create graphics, pictures & writing.", "tag": "Freemium", - "url": "https://hotpot.ai/?ref=riseofmachine.com" + "url": "https://hotpot.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Krea", "body": "Image generation.", "tag": "Beta", - "url": "https://www.krea.ai/?ref=riseofmachine.com" + "url": "https://www.krea.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Lexica", "body": "Image generation engine.", "tag": "Freemium", - "url": "https://lexica.art/?ref=riseofmachine.com" + "url": "https://lexica.art/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Melies", "body": "AI Filmmaking software.", "tag": "Private Beta", - "url": "https://melies.co/?ref=riseofmachine.com" + "url": "https://melies.co/?ref=riseofmachine.com", + "date-added": "2024-09-11" }, { "title": "Midjourneysref", "body": "MidJourney sref codes.", "tag": "Free", - "url": "https://midjourneysref.com/?ref=riseofmachine.com" + "url": "https://midjourneysref.com/?ref=riseofmachine.com", + "date-added": "2024-08-23" }, { "title": "Mirrorize", "body": "Generative AI.", "tag": "Starting at $0/mo", - "url": "https://mirrorize.ai/?ref=riseofmachine.com" + "url": "https://mirrorize.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "OCMaker", "body": "Generate characters online.", "tag": "Freemium", - "url": "https://www.ocmaker.net/?ref=riseofmachine.com" + "url": "https://www.ocmaker.net/?ref=riseofmachine.com", + "date-added": "2024-10-22" }, { "title": "Pictorial", "body": "Visual generator for businesses.", "tag": "Starting at $8.99/mo", - "url": "https://www.pictorial.ai/?ref=riseofmachine.com" + "url": "https://www.pictorial.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "PixarAI", "body": "Disney pixar-inspired AI generator.", "tag": "Freemium", - "url": "https://www.pixarai.com/?ref=riseofmachine.com" + "url": "https://www.pixarai.com/?ref=riseofmachine.com", + "date-added": "2024-10-22" }, { "title": "Remix", "body": "Create, share images and video.", "tag": "Free", - "url": "https://remix.ai/?ref=riseofmachine.com" + "url": "https://remix.ai/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "SDXL Turbo", "body": "Text-to-image generation.", "tag": "Freemium", - "url": "https://sdxlturbo.ai/?ref=riseofmachine.com" + "url": "https://sdxlturbo.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "SREF Midjourney", "body": "Midjourney sref codes library.", "tag": "Freemium", - "url": "https://sref-midjourney.com/?ref=riseofmachine.com" + "url": "https://sref-midjourney.com/?ref=riseofmachine.com", + "date-added": "2024-09-11" }, { "title": "Stockimg", "body": "Create images with AI.", "tag": "Freemium", - "url": "https://stockimg.ai/?ref=riseofmachine.com" + "url": "https://stockimg.ai/?ref=riseofmachine.com", + "date-added": "2023-12-25" }, { "title": "Vieutopia", "body": "Generate art.", "tag": "Freemium", - "url": "https://vieutopia.com/?ref=riseofmachine.com" + "url": "https://vieutopia.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Vizcom", "body": "Product visualization.", "tag": "Freemium", - "url": "https://www.vizcom.ai/?ref=riseofmachine.com" + "url": "https://www.vizcom.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" } ] }, @@ -194,85 +217,99 @@ "title": "Adobe Podcast", "body": "Audio recording & editing.", "tag": "Beta, Free", - "url": "https://podcast.adobe.com/?ref=riseofmachine.com" + "url": "https://podcast.adobe.com/?ref=riseofmachine.com", + "date-added": "2023-12-11" }, { "title": "Altered", "body": "Change your voice to AI voices.", "tag": "Freemium", - "url": "https://www.altered.ai/?ref=riseofmachine.com" + "url": "https://www.altered.ai/?ref=riseofmachine.com", + "date-added": "2023-12-11" }, { "title": "BlogAudio", "body": "Convert text to audio speech.", "tag": "Starting at $16/mo", - "url": "https://blogaudio.co/?ref=riseofmachine.com" + "url": "https://blogaudio.co/?ref=riseofmachine.com", + "date-added": "2023-12-11" }, { "title": "Cleanvoice", "body": "Removes filler, stuttering & mouth sounds.", "tag": "Pay-as-you-go", - "url": "https://cleanvoice.ai/?ref=riseofmachine.com" + "url": "https://cleanvoice.ai/?ref=riseofmachine.com", + "date-added": "2023-12-11" }, { "title": "Dubbing AI", "body": "Realtime AI voice changer.", "tag": "Free", - "url": "https://dubbingai.io/?ref=riseofmachine.com" + "url": "https://dubbingai.io/?ref=riseofmachine.com", + "date-added": "2023-12-22" }, { "title": "Harmonai", "body": "Generative audio tools.", "tag": "Open-source", - "url": "https://www.harmonai.org/?ref=riseofmachine.com" + "url": "https://www.harmonai.org/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Kits AI", "body": "AI voice generation toolkit.", "tag": "Freemium", - "url": "https://app.kits.ai/?ref=riseofmachine.com" + "url": "https://app.kits.ai/?ref=riseofmachine.com", + "date-added": "2023-12-11" }, { "title": "Lalal", "body": "Split vocal & instrumental tracks.", "tag": "$18 one-time fee", - "url": "https://www.lalal.ai/?ref=riseofmachine.com" + "url": "https://www.lalal.ai/?ref=riseofmachine.com", + "date-added": "2023-12-11" }, { "title": "Mix Audio", "body": "Multimodal AI music generator.", "tag": "Freemium", - "url": "https://mix.audio/?ref=riseofmachine.com" + "url": "https://mix.audio/?ref=riseofmachine.com", + "date-added": "2024-03-23" }, { "title": "NoteVocal", "body": "Thoughts to text.", "tag": "Starting at $10/mo", - "url": "https://www.notevocal.com/?ref=riseofmachine.com" + "url": "https://www.notevocal.com/?ref=riseofmachine.com", + "date-added": "2024-06-28" }, { "title": "Podcastle", "body": "Podcasting software.", "tag": "Freemium", - "url": "https://podcastle.ai/?ref=riseofmachine.com" + "url": "https://podcastle.ai/?ref=riseofmachine.com", + "date-added": "2023-12-11" }, { "title": "SpeechLab", "body": "AI dubbing.", "tag": "Freemium", - "url": "https://www.speechlab.ai/?ref=riseofmachine.com" + "url": "https://www.speechlab.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Sync", "body": "Dub any video to any audio in any language.", "tag": "Freemium", - "url": "https://synclabs.so/?ref=riseofmachine.com" + "url": "https://synclabs.so/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Voicemod", "body": "Real-time AI voice changer.", "tag": "Freemium", - "url": "https://www.voicemod.net/?ref=riseofmachine.com" + "url": "https://www.voicemod.net/?ref=riseofmachine.com", + "date-added": "2023-12-11" } ] }, @@ -284,73 +321,85 @@ "title": "Amazon CodeWhisperer", "body": "Generate code suggestions.", "tag": "Freemium", - "url": "https://aws.amazon.com/codewhisperer/?ref=riseofmachine.com" + "url": "https://aws.amazon.com/codewhisperer/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "AskCodebase", "body": "AI programming agent.", "tag": "Starting at $10/mo", - "url": "https://askcodebase.com/?ref=riseofmachine.com" + "url": "https://askcodebase.com/?ref=riseofmachine.com", + "date-added": "2023-12-25" }, { "title": "Bito", "body": "Assistant with ChatGPT for devs.", "tag": "Freemium", - "url": "https://bito.ai/?ref=riseofmachine.com" + "url": "https://bito.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Code Snippets", "body": "Manage code snippets, visualize codebase.", "tag": "Starting at $4/mo", - "url": "https://codesnippets.ai/?ref=riseofmachine.com" + "url": "https://codesnippets.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Codeium", "body": "AI-powered toolkit.", "tag": "Starting at $0/mo", - "url": "https://codeium.com/?ref=riseofmachine.com" + "url": "https://codeium.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "CodeStory", "body": "AI-powered mod of VSCode.", "tag": "Starting at $0/mo", - "url": "https://codestory.ai/?ref=riseofmachine.com" + "url": "https://codestory.ai/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Continue", "body": "Autopilot in IDE.", "tag": "Open-source", - "url": "https://continue.dev/?ref=riseofmachine.com" + "url": "https://continue.dev/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Continuum", "body": "AI-powered coding.", "tag": "Freemium", - "url": "https://continuum.sh/?ref=riseofmachine.com" + "url": "https://continuum.sh/?ref=riseofmachine.com", + "date-added": "2023-12-27" }, { "title": "Cursor", "body": "Editor for pair-programming with AI.", "tag": "Freemium", - "url": "https://cursor.sh/?ref=riseofmachine.com" + "url": "https://cursor.sh/?ref=riseofmachine.com", + "date-added": "2024-08-26" }, { "title": "Cursor Directory", "body": ".cursorrules files directory.", "tag": "Freemium", - "url": "https://cursor.directory/?ref=riseofmachine.com" + "url": "https://cursor.directory/?ref=riseofmachine.com", + "date-added": "2024-08-26" }, { "title": "GitHub Copilot", "body": "AI pair programmer.", "tag": "Starting at $10/mo", - "url": "https://github.com/features/copilot/?ref=riseofmachine.com" + "url": "https://github.com/features/copilot/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Melty", "body": "AI code editor.", "tag": "Early access", - "url": "https://melty.sh/?ref=riseofmachine.com" + "url": "https://melty.sh/?ref=riseofmachine.com", + "date-added": "2024-09-11" } ] }, @@ -362,193 +411,225 @@ "title": "Anyword", "body": "On-brand copywriting.", "tag": "Starting at $24/mo", - "url": "https://anyword.com/?ref=riseofmachine.com" + "url": "https://anyword.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Audit Landing", "body": "Audit your landing page.", "tag": "Starting at $2", - "url": "https://audit.landin.page/?ref=riseofmachine.com" + "url": "https://audit.landin.page/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Bertha", "body": "Copywriting assistant for WordPress & in Chrome.", "tag": "Pay-as-you-go", - "url": "https://bertha.ai/?ref=riseofmachine.com" + "url": "https://bertha.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Boo.ai", "body": "Text editor to generate copy.", "tag": "Freemium", - "url": "https://boo.ai/?ref=riseofmachine.com" + "url": "https://boo.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Botowski", "body": "Content generator.", "tag": "Starting at $0/mo", - "url": "https://www.botowski.com/?ref=riseofmachine.com" + "url": "https://www.botowski.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Closerscopy", "body": "Copywriting robot.", "tag": "Starting at $49.99/mo", - "url": "https://www.closerscopy.com/?ref=riseofmachine.com" + "url": "https://www.closerscopy.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Contents", "body": "Create original, SEO-optimized content.", "tag": "Pay-as-you-go", - "url": "https://www.contents.com/?ref=riseofmachine.com" + "url": "https://www.contents.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "CopyAI", "body": "Content generator.", "tag": "Starting at $0/mo", - "url": "https://www.copy.ai/?ref=riseofmachine.com" + "url": "https://www.copy.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Copymatic", "body": "Generate content, copy & images.", "tag": "Starting at $19/mo", - "url": "https://copymatic.ai/?ref=riseofmachine.com" + "url": "https://copymatic.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Cowriter", "body": "Platform for creative writing.", "tag": "Free", - "url": "https://cowriter.org/?ref=riseofmachine.com" + "url": "https://cowriter.org/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Detector Writer", "body": "Free AI content detector.", "tag": "Free", - "url": "https://aidetectorwriter.com/?ref=riseofmachine.com" + "url": "https://aidetectorwriter.com/?ref=riseofmachine.com", + "date-added": "2024-10-30" }, { "title": "HyperWrite", "body": "AI writing assistant.", "tag": "Freemium", - "url": "https://www.hyperwriteai.com/?ref=riseofmachine.com" + "url": "https://www.hyperwriteai.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Humanize", "body": "AI text into human text.", "tag": "Starting at $7/mo", - "url": "https://aihumanize.io/?ref=riseofmachine.com" + "url": "https://aihumanize.io/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "Humanize", "body": "Humanize AI text free online.", "tag": "Free", - "url": "https://humanize.im/?ref=riseofmachine.com" + "url": "https://humanize.im/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "Hypotenuse", "body": "Writing assistant.", "tag": "Starting at $29/mo", - "url": "https://www.hypotenuse.ai/?ref=riseofmachine.com" + "url": "https://www.hypotenuse.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Jasper", "body": "Create on-brand content.", "tag": "Starting at $39/mo", - "url": "https://www.jasper.ai/?ref=riseofmachine.com" + "url": "https://www.jasper.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Lek", "body": "Content generator.", "tag": "Starting at $0/mo", - "url": "https://lek.ai/?ref=riseofmachine.com" + "url": "https://lek.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Magento", "body": "Generate product descriptions.", "tag": "Freemium", - "url": "https://writetext.ai/magento?ref=riseofmachine.com" + "url": "https://writetext.ai/magento?ref=riseofmachine.com", + "date-added": "2024-05-02" }, { "title": "Originality", "body": "AI content detector & plagiarism checker.", "tag": "Pay-as-you-go", - "url": "https://originality.ai/?ref=riseofmachine.com" + "url": "https://originality.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "ParagraphAI", "body": "Writing assistant.", "tag": "Starting at $9/mo", - "url": "https://paragraphai.com/?ref=riseofmachine.com" + "url": "https://paragraphai.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Pepper Content", "body": "Ideate, create, distribute & measure content.", "tag": "Starting at $399/mo", - "url": "https://www.peppercontent.io/peppertype-ai/?ref=riseofmachine.com" + "url": "https://www.peppercontent.io/peppertype-ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Remagine AI", "body": "Content writing tools & templates.", "tag": "Freemium", - "url": "https://remagineai.com/?ref=riseofmachine.com" + "url": "https://remagineai.com/?ref=riseofmachine.com", + "date-added": "2024-04-18" }, { "title": "Rytr", "body": "Writing assistant.", "tag": "Freemium", - "url": "https://rytr.me/?ref=riseofmachine.com" + "url": "https://rytr.me/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Simplified", "body": "Generate marketing copy.", "tag": "Freemium", - "url": "https://simplified.com/ai-writer/?ref=riseofmachine.com" + "url": "https://simplified.com/ai-writer/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Strut", "body": "AI workspace for writers.", "tag": "Freemium", - "url": "https://strut.so/?ref=riseofmachine.com" + "url": "https://strut.so/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "TextGen", "body": "Note-taking and content creation.", "tag": "Open-source", - "url": "https://text-gen.com/?ref=riseofmachine.com" + "url": "https://text-gen.com/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Typli", "body": "Writing assistant with SEO checker.", "tag": "Starting at $49/mo", - "url": "https://typli.ai/?ref=riseofmachine.com" + "url": "https://typli.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Undetect", "body": "AI detector to evaluate AI content.", "tag": "Starting at $6/mo", - "url": "https://aiundetect.com/?ref=riseofmachine.com" + "url": "https://aiundetect.com/?ref=riseofmachine.com", + "date-added": "2024-07-27" }, { "title": "WooCommerce AI", "body": "AI product description writer.", "tag": "Freemium", - "url": "https://writetext.ai/woocommerce/?ref=riseofmachine.com" + "url": "https://writetext.ai/woocommerce/?ref=riseofmachine.com", + "date-added": "2024-03-23" }, { "title": "Word.Studio", "body": "AI tools, templates, and workflows.", "tag": "Free", - "url": "https://word.studio/?ref=riseofmachine.com" + "url": "https://word.studio/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Wordtune", "body": "AI writing assistant.", "tag": "Freemium", - "url": "https://www.wordtune.com/?ref=riseofmachine.com" + "url": "https://www.wordtune.com/?ref=riseofmachine.com", + "date-added": "2023-12-23" }, { "title": "WriteGo", "body": "Writing assistant for academic use.", "tag": "Freemium", - "url": "https://writego.ai/app?ref=riseofmachine.com" + "url": "https://writego.ai/app?ref=riseofmachine.com", + "date-added": "2024-05-21" } ] }, @@ -560,97 +641,113 @@ "title": "DesignsAI", "body": "Create logos, videos, banners & mockups.", "tag": "Starting at $29/mo", - "url": "https://designs.ai/?ref=riseofmachine.com" + "url": "https://designs.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Diagram", "body": "Generative design tool kit.", "tag": "Monthly subscription", - "url": "https://diagram.com/?ref=riseofmachine.com" + "url": "https://diagram.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Dora", "body": "3D website.", "tag": "Freemium", - "url": "https://www.dora.run/?ref=riseofmachine.com" + "url": "https://www.dora.run/?ref=riseofmachine.com", + "date-added": "2023-12-25" }, { "title": "Durable", "body": "AI website builder.", "tag": "Starting at $0/mo", - "url": "https://durable.co/?ref=riseofmachine.com" + "url": "https://durable.co/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Flair", "body": "Design tool for branded content.", "tag": "Freemium", - "url": "https://flair.ai/?ref=riseofmachine.com" + "url": "https://flair.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Gamma", "body": "Generate docs, decks & webpages.", "tag": "Freemium", - "url": "https://gamma.app/?ref=riseofmachine.com" + "url": "https://gamma.app/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Illostration AI", "body": "Create illustrations.", "tag": "Starting at $4.90/mo", - "url": "https://www.illostration.com/?ref=riseofmachine.com" + "url": "https://www.illostration.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Illustroke", "body": "Create illustrations.", "tag": "$6 for 50 tokens", - "url": "https://illustroke.com/?ref=riseofmachine.com" + "url": "https://illustroke.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Kittl", "body": "Design tool.", "tag": "Freemium", - "url": "https://www.kittl.com/?ref=riseofmachine.com" + "url": "https://www.kittl.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Logo Galleria", "body": "AI logo maker.", "tag": "Freemium", - "url": "https://logogalleria.com/?ref=riseofmachine.com" + "url": "https://logogalleria.com/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "Magician", "body": "Generate icons, copy & images in Figma.", "tag": "Beta, $5/mo", - "url": "https://magician.design/?ref=riseofmachine.com" + "url": "https://magician.design/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Patterned AI", "body": "Generate patterns.", "tag": "Starting at $10/mo", - "url": "https://www.patterned.ai/?ref=riseofmachine.com" + "url": "https://www.patterned.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Recraft V3 SVG", "body": "Text to SVG images.", "tag": "$0.08 per image", - "url": "https://replicate.com/recraft-ai/recraft-v3-svg?ref=riseofmachine.com" + "url": "https://replicate.com/recraft-ai/recraft-v3-svg?ref=riseofmachine.com", + "date-added": "2024-11-07" }, { "title": "Shape of AI", "body": "UX patterns for AI design.", "tag": "Freemium", - "url": "https://www.shapeof.ai/?ref=riseofmachine.com" + "url": "https://www.shapeof.ai/?ref=riseofmachine.com", + "date-added": "2024-08-26" }, { "title": "Uizard", "body": "Design & ideation tool", "tag": "Freemium", - "url": "https://uizard.io/?ref=riseofmachine.com" + "url": "https://uizard.io/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "V0", "body": "Generate UI with text prompts.", "tag": "Beta", - "url": "https://v0.dev/?ref=riseofmachine.com" + "url": "https://v0.dev/?ref=riseofmachine.com", + "date-added": "2023-12-23" } ] }, @@ -662,97 +759,113 @@ "title": "Axflow", "body": "TypeScript framework for AI development.", "tag": "Open-source", - "url": "https://axflow.dev/?ref=riseofmachine.com" + "url": "https://axflow.dev/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "AutoRegex", "body": "From English to RegEx.", "tag": "Free", - "url": "https://www.autoregex.xyz/?ref=riseofmachine.com" + "url": "https://www.autoregex.xyz/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "BuildShip", "body": "Build workflows, APIs, & scheduled jobs.", "tag": "Freemium", - "url": "https://buildship.com/?ref=riseofmachine.com" + "url": "https://buildship.com/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Codebuddy", "body": "AI powered coding.", "tag": "Freemium", - "url": "https://codebuddy.ca/?ref=riseofmachine.com" + "url": "https://codebuddy.ca/?ref=riseofmachine.com", + "date-added": "2024-08-21" }, { "title": "Cosine", "body": "Search & understand large codebases.", "tag": "Free, Extension", - "url": "https://cosine.sh/?ref=riseofmachine.com" + "url": "https://cosine.sh/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Hatchet", "body": "Incident response partner.", "tag": "Free, Extension", - "url": "https://gethatchet.com/?ref=riseofmachine.com" + "url": "https://gethatchet.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Lightning", "body": "Train. Deploy. Host AI web apps.", "tag": "Freemium", - "url": "https://lightning.ai/?ref=riseofmachine.com" + "url": "https://lightning.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Liner", "body": "Build & deploy ML applications.", "tag": "Free, Beta", - "url": "https://liner.ai/?ref=riseofmachine.com" + "url": "https://liner.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Lintrule", "body": "Using LLM for code reviews.", "tag": "$1.00/1,000 lines", - "url": "https://www.lintrule.com/?ref=riseofmachine.com" + "url": "https://www.lintrule.com/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Open Interpreter", "body": "Code Interpreter in terminal, running locally.", "tag": "Open-source", - "url": "https://openinterpreter.com/?ref=riseofmachine.com" + "url": "https://openinterpreter.com/?ref=riseofmachine.com", + "date-added": "2023-12-28" }, { "title": "Pieces", "body": "Developer productivity tool.", "tag": "Free", - "url": "https://pieces.app/?ref=riseofmachine.com" + "url": "https://pieces.app/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Postbot", "body": "AI assistant for API workflows.", "tag": "Freemium", - "url": "https://learning.postman.com/docs/getting-started/basics/about-postbot/?ref=riseofmachine.com" + "url": "https://learning.postman.com/docs/getting-started/basics/about-postbot/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Shaped", "body": "Deploy embeddings infrastructure.", "tag": "Flat-fee/mo", - "url": "https://www.shaped.ai/?ref=riseofmachine.com" + "url": "https://www.shaped.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Sweep", "body": "Handles small features in your codebase.", "tag": "Freemium", - "url": "https://sweep.dev/?ref=riseofmachine.com" + "url": "https://sweep.dev/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Tabnine", "body": "Assistant for software developers.", "tag": "Freemium", - "url": "https://www.tabnine.com/?ref=riseofmachine.com" + "url": "https://www.tabnine.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Vellum", "body": "Developer platform for LLM apps.", "tag": "Not available", - "url": "https://www.vellum.ai/?ref=riseofmachine.com" + "url": "https://www.vellum.ai/?ref=riseofmachine.com", + "date-added": "2023-12-29" } ] }, @@ -764,61 +877,71 @@ "title": "Bevinzey", "body": "Learning platform for students and educators.", "tag": "Starting at $13/mo", - "url": "https://bevinzey.com/?ref=riseofmachine.com" + "url": "https://bevinzey.com/?ref=riseofmachine.com", + "date-added": "2024-05-02" }, { "title": "Eduaide", "body": "Create lesson, teaching resources, & assessments.", "tag": "Freemium", - "url": "https://www.eduaide.ai/?ref=riseofmachine.com" + "url": "https://www.eduaide.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "EverLearns", "body": "AI learning space.", "tag": "Starting at $119/yr", - "url": "https://everlearns.com/?ref=riseofmachine.com" + "url": "https://everlearns.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Examful AI", "body": "AP, IB, A-Level papers and tutoring.", "tag": "Free", - "url": "https://examful.ai/?ref=riseofmachine.com" + "url": "https://examful.ai/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "Grader Good", "body": "Grading tool for educators.", "tag": "Starting at $119/yr", - "url": "https://gradergood.com/?ref=riseofmachine.com" + "url": "https://gradergood.com/?ref=riseofmachine.com", + "date-added": "2024-10-04" }, { "title": "LearnFast", "body": "Solve math & physics problems.", "tag": "Freemium", - "url": "https://learnfast.ai/?ref=riseofmachine.com" + "url": "https://learnfast.ai/?ref=riseofmachine.com", + "date-added": "2024-11-07" }, { "title": "Math.now", "body": "Solve math problems.", "tag": "Free", - "url": "https://math.now/?ref=riseofmachine.com" + "url": "https://math.now/?ref=riseofmachine.com", + "date-added": "2024-10-22" }, { "title": "My Math Solver AI", "body": "Solve math problems.", "tag": "Free", - "url": "https://mymathsolver.ai/?ref=riseofmachine.com" + "url": "https://mymathsolver.ai/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "Studdy", "body": "Snap and ask.", "tag": "Freemium", - "url": "https://studdy.ai/?ref=riseofmachine.com" + "url": "https://studdy.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Study Fetch", "body": "Cleart flashcards, quizzes, and chat help.", "tag": "Not available", - "url": "https://www.studyfetch.com/?ref=riseofmachine.com" + "url": "https://www.studyfetch.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" } ] }, @@ -830,175 +953,197 @@ "title": "Albus", "body": "Knowledge bot for Slack.", "tag": "Starting at $4.99/mo", - "url": "https://www.springworks.in/albus/?ref=riseofmachine.com" + "url": "https://www.springworks.in/albus/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Arches", "body": "AI-driven solutions.", "tag": "Freemium", - "url": "https://platform.archesai.com/?ref=riseofmachine.com" + "url": "https://platform.archesai.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Autoblocks", "body": "GenAI product workspace.", "tag": "Freemium", - "url": "https://www.autoblocks.ai/?ref=riseofmachine.com" + "url": "https://www.autoblocks.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Bland", "body": "Implementing AI phone calls.", "tag": "Starting at $0.12/min", - "url": "https://www.bland.ai/?ref=riseofmachine.com" + "url": "https://www.bland.ai/?ref=riseofmachine.com", + "date-added": "2023-12-28" }, { "title": "Bloc", "body": "Create and share a chatbot.", "tag": "Starting at $0/mo", - "url": "https://www.askbloc.ai/?ref=riseofmachine.com" + "url": "https://www.askbloc.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Brainfish", "body": "AI customer support.", "tag": "Starting at $159/mo", - "url": "https://www.brainfi.sh/?ref=riseofmachine.com" - }, - { - "title": "Chatclient", - "body": "Build a custom AI chatbot.", - "tag": "Freemium", - "url": "https://chatclient.ai/?ref=riseofmachine.com" + "url": "https://www.brainfi.sh/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Chatsimple", "body": "AI-powered virtual agent.", "tag": "Freemium", - "url": "https://www.chatsimple.ai/?ref=riseofmachine.com" + "url": "https://www.chatsimple.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Cody", "body": "AI assistant for business.", "tag": "$29/mo", - "url": "https://meetcody.ai/?ref=riseofmachine.com" + "url": "https://meetcody.ai/?ref=riseofmachine.com", + "date-added": "2023-12-27" }, { "title": "Credal AI", "body": "Securely connect internal data to LLMs.", "tag": "Freemium", - "url": "https://www.credal.ai/?ref=riseofmachine.com" + "url": "https://www.credal.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Dust", "body": "AI assistant for teams.", "tag": "Freemium", - "url": "https://dust.tt/?ref=riseofmachine.com" + "url": "https://dust.tt/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "GPTbots.ai", "body": "Build AI bot for your business.", "tag": "Starting at $0/mo", - "url": "https://www.gptbots.ai/?ref=riseofmachine.com" + "url": "https://www.gptbots.ai/?ref=riseofmachine.com", + "date-added": "2023-12-23" }, { "title": "Glean", "body": "Search all company apps.", "tag": "Not available", - "url": "https://www.glean.com/?ref=riseofmachine.com" + "url": "https://www.glean.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Gradient", "body": "AI cloud for enterprise.", "tag": "Not available", - "url": "https://gradient.ai/?ref=riseofmachine.com" + "url": "https://gradient.ai/?ref=riseofmachine.com", + "date-added": "2023-12-27" }, { "title": "Guidde", "body": "Create video documentation.", "tag": "Freemium", - "url": "https://www.guidde.com/?ref=riseofmachine.com" + "url": "https://www.guidde.com/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Ioni", "body": "Automate for customer support.", "tag": "Starting at $29/mo", - "url": "https://ioni.ai/?ref=riseofmachine.com" + "url": "https://ioni.ai/?ref=riseofmachine.com", + "date-added": "2023-12-23" }, { "title": "Kommunicate", "body": "Customer support with chatbot.", "tag": "Starting at $100/mo", - "url": "https://www.kommunicate.io/?ref=riseofmachine.com" + "url": "https://www.kommunicate.io/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Mendable", "body": "Train AI on technical resources.", "tag": "Freemium", - "url": "https://www.mendable.ai/?ref=riseofmachine.com" + "url": "https://www.mendable.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Mosaic", "body": "Integrate AI features into your projects.", "tag": "Starting at $125/mo", - "url": "https://edison-ai.com/mosaic?ref=riseofmachine.com" + "url": "https://edison-ai.com/mosaic?ref=riseofmachine.com", + "date-added": "2023-12-28" }, { "title": "Mutual", "body": "Customer service with AI.", "tag": "Freemium", - "url": "https://mutual.info/?ref=riseofmachine.com" + "url": "https://mutual.info/?ref=riseofmachine.com", + "date-added": "2023-12-30" }, { "title": "My AskAI", "body": "AI customer service assistant.", "tag": "Freemium", - "url": "https://myaskai.com/?ref=riseofmachine.com" + "url": "https://myaskai.com/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Multimodal", "body": "AI agents to automate workflows.", "tag": "Freemium", - "url": "https://www.multimodal.dev/?ref=riseofmachine.com" + "url": "https://www.multimodal.dev/?ref=riseofmachine.com", + "date-added": "2024-03-23" }, { "title": "Nanonets", "body": "Capture data from documents.", "tag": "Pay-as-you-go", - "url": "https://nanonets.com/?ref=riseofmachine.com" + "url": "https://nanonets.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Normal", "body": "AI models for core enterprise workflows.", "tag": "Not available", - "url": "https://normalcomputing.ai/?ref=riseofmachine.com" + "url": "https://normalcomputing.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Nuclia", "body": "Embed search & generative answers.", "tag": "Starting at $30/mo", - "url": "https://nuclia.com/?ref=riseofmachine.com" + "url": "https://nuclia.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Retune", "body": "Train & customize your own AI model, generate API.", "tag": "Freemium", - "url": "https://retune.so/?ref=riseofmachine.com" + "url": "https://retune.so/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Scale AI", "body": "Training data for AI apps.", "tag": "Pay-as-you-go", - "url": "https://scale.com/?ref=riseofmachine.com" + "url": "https://scale.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Simple Phones", "body": "AI phone agent.", "tag": "Starting at $49/mo", - "url": "https://www.simplephones.ai/?ref=riseofmachine.com" + "url": "https://www.simplephones.ai/?ref=riseofmachine.com", + "date-added": "2023-12-27" }, { "title": "Together.ai", "body": "Platform for building & running generative AI.", "tag": "Pay-as-you-go", - "url": "https://www.together.ai/?ref=riseofmachine.com" + "url": "https://www.together.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" } ] }, @@ -1010,7 +1155,8 @@ "title": "Uwear", "body": "AI generated fashion models.", "tag": "Freemium", - "url": "https://uwear.ai/?ref=riseofmachine.com" + "url": "https://uwear.ai/?ref=riseofmachine.com", + "date-added": "2024-10-23" } ] }, @@ -1022,31 +1168,36 @@ "title": "Meshy", "body": "Create 3D models & assets.", "tag": "Freemium", - "url": "https://www.meshy.ai/?ref=riseofmachine.com" + "url": "https://www.meshy.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Qmai", "body": "AI motion capture.", "tag": "Not available", - "url": "https://www.qmai.vip/?ref=riseofmachine.com" + "url": "https://www.qmai.vip/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Rosebud AI", "body": "Create games.", "tag": "Beta", - "url": "https://www.rosebud.ai/?ref=riseofmachine.com" + "url": "https://www.rosebud.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Saga", "body": "AI text role-playing game.", "tag": "Freemium", - "url": "https://sagarpg.io/?ref=riseofmachine.com" + "url": "https://sagarpg.io/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Soga AI", "body": "AI character chatbot game.", "tag": "Freemium", - "url": "https://soga.gg/?ref=riseofmachine.com" + "url": "https://soga.gg/?ref=riseofmachine.com", + "date-added": "2024-04-18" } ] }, @@ -1058,43 +1209,50 @@ "title": "Body Fat Calc", "body": "Body fat percentage calculation.", "tag": "Not applicable", - "url": "https://bodyfatcalc.top/en/ai-calc/?ref=riseofmachine.com" + "url": "https://bodyfatcalc.top/en/ai-calc/?ref=riseofmachine.com", + "date-added": "2024-01-17" }, { "title": "Deepen", "body": "AI therapy app.", "tag": "Free", - "url": "https://thedeepen.app/?ref=riseofmachine.com" + "url": "https://thedeepen.app/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "MealByMeal", "body": "Nutrition tracker.", "tag": "Starting at $7/mo", - "url": "https://www.mealbymeal.com/?ref=riseofmachine.com" + "url": "https://www.mealbymeal.com/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Meals.chat", "body": "Track your diet with a photo.", "tag": "Free", - "url": "https://meals.chat/?ref=riseofmachine.com" + "url": "https://meals.chat/?ref=riseofmachine.com", + "date-added": "2024-04-18" }, { "title": "Meet Lily", "body": "AI therapist.", "tag": "Starting at $9.99/mo", - "url": "https://www.meetlily.ai/?ref=riseofmachine.com" + "url": "https://www.meetlily.ai/?ref=riseofmachine.com", + "date-added": "2023-12-28" }, { "title": "Noetik", "body": "AI-native biotechnology company.", "tag": "Not applicable", - "url": "https://www.noetik.ai/?ref=riseofmachine.com" + "url": "https://www.noetik.ai/?ref=riseofmachine.com", + "date-added": "2023-12-28" }, { "title": "Rex", "body": "AI nutrition and fitness coach.", "tag": "Freemium", - "url": "https://www.rex.fit/?ref=riseofmachine.com" + "url": "https://www.rex.fit/?ref=riseofmachine.com", + "date-added": "2023-12-26" } ] }, @@ -1106,37 +1264,43 @@ "title": "AI Lawyer", "body": "Personal legal AI assistant.", "tag": "Freemium", - "url": "https://ailawyer.pro/?ref=riseofmachine.com" + "url": "https://ailawyer.pro/?ref=riseofmachine.com", + "date-added": "2024-09-28" }, { "title": "Westaway Ace", "body": "AI startup legal assistant.", "tag": "Freemium", - "url": "https://westaway.com/ace/?ref=riseofmachine.com" + "url": "https://westaway.com/ace/?ref=riseofmachine.com", + "date-added": "2023-12-27" }, { "title": "Lawyer", "body": "Personal AI legal assistant.", "tag": "Freemium", - "url": "https://ailawyer.pro/?ref=riseofmachine.com" + "url": "https://ailawyer.pro/?ref=riseofmachine.com", + "date-added": "2024-09-28" }, { "title": "Law School AI", "body": "AI chatbot for law learning.", "tag": "Freemium", - "url": "https://www.lawschoolai.com/?ref=riseofmachine.com" + "url": "https://www.lawschoolai.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "LegalNOW", "body": "Create or review legal docs.", "tag": "Starting at $49/mo", - "url": "https://www.legalnowai.com/?ref=riseofmachine.com" + "url": "https://www.legalnowai.com/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Spellbook", "body": "Draft contracts with AI.", "tag": "Waitlist", - "url": "https://www.spellbook.legal/?ref=riseofmachine.com" + "url": "https://www.spellbook.legal/?ref=riseofmachine.com", + "date-added": "2023-12-24" } ] }, @@ -1148,103 +1312,120 @@ "title": "AI Agents List", "body": "AI agents to complete workflows.", "tag": "Free", - "url": "https://aiagentslist.com/?ref=riseofmachine.com" + "url": "https://aiagentslist.com/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "BingChain", "body": "Langchain/AutoGPT alternative in ~300 lines of core code.", "tag": "Open-source", - "url": "https://github.com/postman-open-technologies/bingchain/?ref=riseofmachine.com" + "url": "https://github.com/postman-open-technologies/bingchain/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "ChatBotKit", "body": "Create conversational AI bots.", "tag": "Freemium", - "url": "https://chatbotkit.com/?ref=riseofmachine.com" + "url": "https://chatbotkit.com/?ref=riseofmachine.com", + "date-added": "2024-08-04" }, { "title": "Giga ML", "body": "On premise secure LLM.", "tag": "Not available", - "url": "https://gigaml.com/?ref=riseofmachine.com" + "url": "https://gigaml.com/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Helicone", "body": "Monitor LLM-applications.", "tag": "Freemium", - "url": "https://www.helicone.ai/?ref=riseofmachine.com" + "url": "https://www.helicone.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "LangChain", "body": "LLM app from prototype to prod.", "tag": "Beta", - "url": "https://www.langchain.com/?ref=riseofmachine.com" + "url": "https://www.langchain.com/?ref=riseofmachine.com", + "date-added": "2023-12-25" }, { "title": "Langfuse", "body": "Observability & analytics for LLM apps.", "tag": "Open-source", - "url": "https://langfuse.com/?ref=riseofmachine.com" + "url": "https://langfuse.com/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "LiteLLM", "body": "Call all LLM APIs using the OpenAI format.", "tag": "Open-source", - "url": "https://docs.litellm.ai/?ref=riseofmachine.com" + "url": "https://docs.litellm.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "LlamaIndex", "body": "Connect custom data sources to LLMs.", "tag": "Open-source", - "url": "https://www.llamaindex.ai/?ref=riseofmachine.com" + "url": "https://www.llamaindex.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Numbers Station", "body": "Data analytics copilot.", "tag": "Not available", - "url": "https://www.numbersstation.ai/?ref=riseofmachine.com" + "url": "https://www.numbersstation.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "OpenRouter", "body": "A unified interface for LLMs.", "tag": "Not available", - "url": "https://openrouter.ai/?ref=riseofmachine.com" + "url": "https://openrouter.ai/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Patronus AI", "body": "Automated AI evaluation.", "tag": "Not available", - "url": "https://www.patronus.ai/?ref=riseofmachine.com" + "url": "https://www.patronus.ai/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Replicate", "body": "Run, fine-tune, deploy open-source models.", "tag": "Freemium", - "url": "https://replicate.com/?ref=riseofmachine.com" + "url": "https://replicate.com/?ref=riseofmachine.com", + "date-added": "2024-10-30" }, { "title": "Run LLM", "body": "Develop. Iterate. Run LLM.", "tag": "Freemium", - "url": "https://runllm.com/?ref=riseofmachine.com" + "url": "https://runllm.com/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Sarvam", "body": "Models for India's diverse linguistic culture.", "tag": "Not available", - "url": "https://www.sarvam.ai/?ref=riseofmachine.com" + "url": "https://www.sarvam.ai/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Sid", "body": "Connect data to AI apps.", "tag": "Freemium", - "url": "https://www.sid.ai/?ref=riseofmachine.com" + "url": "https://www.sid.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Superpowered", "body": "Connect LLMs to your data.", "tag": "Freemium", - "url": "https://superpowered.ai/?ref=riseofmachine.com" + "url": "https://superpowered.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" } ] }, @@ -1256,79 +1437,92 @@ "title": "AudioStrip", "body": "Split vocals from backing music.", "tag": "Freemium", - "url": "https://www.audiostrip.co.uk/?ref=riseofmachine.com" + "url": "https://www.audiostrip.co.uk/?ref=riseofmachine.com", + "date-added": "2023-12-11" }, { "title": "Beatoven", "body": "Create royalty free music.", "tag": "Freemium", - "url": "https://www.beatoven.ai/?ref=riseofmachine.com" + "url": "https://www.beatoven.ai/?ref=riseofmachine.com", + "date-added": "2023-12-11" }, { "title": "Music AI", "body": "Audio intelligence platform.", "tag": "Freemium", - "url": "https://music.ai/?ref=riseofmachine.com" + "url": "https://music.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Imagetomusic", "body": "AI Image to Music Generator", "tag": "Freemium", - "url": "https://imagetomusic.top/?ref=riseofmachine.com" + "url": "https://imagetomusic.top/?ref=riseofmachine.com", + "date-added": "2024-03-23" }, { "title": "Jen", "body": "Idea to a full track.", "tag": "Waitlist", - "url": "https://www.jenmusic.ai/?ref=riseofmachine.com" + "url": "https://www.jenmusic.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Songburst", "body": "Generate music with AI", "tag": "Free", - "url": "https://www.songburst.ai/?ref=riseofmachine.com" + "url": "https://www.songburst.ai/?ref=riseofmachine.com", + "date-added": "2023-12-28" }, { "title": "Song Generator", "body": "AI music generator free online.", "tag": "Freemium", - "url": "https://songgenerator.io/?ref=riseofmachine.com" + "url": "https://songgenerator.io/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "Soundry", "body": "Text-to-sample generation.", "tag": "Freemium", - "url": "https://soundry.ai/?ref=riseofmachine.com" + "url": "https://soundry.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Stable Audio", "body": "Create music with AI.", "tag": "Freemium", - "url": "https://www.stableaudio.com/?ref=riseofmachine.com" + "url": "https://www.stableaudio.com/?ref=riseofmachine.com", + "date-added": "2023-12-11" }, { "title": "Suno", "body": "Make a song.", "tag": "Freemium", - "url": "https://www.suno.ai/?ref=riseofmachine.com" + "url": "https://www.suno.ai/?ref=riseofmachine.com", + "date-added": "2023-12-22" }, { "title": "ToMusic", "body": "Text to music generator.", "tag": "Freemium", - "url": "https://tomusic.ai/?ref=riseofmachine.com" + "url": "https://tomusic.ai/?ref=riseofmachine.com", + "date-added": "2024-10-22" }, { "title": "Tracksy", "body": "AI assistant to create music.", "tag": "Freemium", - "url": "https://www.tracksy.ai/?ref=riseofmachine.com" + "url": "https://www.tracksy.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Vocal Remover", "body": "Separate voice from music out of a song.", "tag": "Free", - "url": "https://vocalremover.org/?ref=riseofmachine.com" + "url": "https://vocalremover.org/?ref=riseofmachine.com", + "date-added": "2023-12-29" } ] }, @@ -1340,79 +1534,92 @@ "title": "Brancher AI", "body": "Connect models to build AI apps.", "tag": "100 credits free", - "url": "https://www.brancher.ai/?ref=riseofmachine.com" + "url": "https://www.brancher.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "BuildAI", "body": "Build AI-powered web apps.", "tag": "Freemium", - "url": "https://www.buildai.space/?ref=riseofmachine.com" + "url": "https://www.buildai.space/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Chaindesk", "body": "Custom AI chatbot.", "tag": "Freemium", - "url": "https://www.chaindesk.ai/?ref=riseofmachine.com" + "url": "https://www.chaindesk.ai/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Create", "body": "Text to app.", "tag": "Freemium", - "url": "https://www.create.xyz/?ref=riseofmachine.com" + "url": "https://www.create.xyz/?ref=riseofmachine.com", + "date-added": "2024-11-07" }, { "title": "Droxy", "body": "No-code chatbot builder.", "tag": "Freemium", - "url": "https://www.droxy.ai/?ref=riseofmachine.com" + "url": "https://www.droxy.ai/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Imagica", "body": "Build no-code AI apps.", "tag": "Freemium", - "url": "https://get.imagica.ai/?ref=riseofmachine.com" + "url": "https://get.imagica.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Lindo", "body": "Build landing pages.", "tag": "Starting at $17/mo", - "url": "https://www.lindoai.com/?ref=riseofmachine.com" + "url": "https://www.lindoai.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Riku", "body": "Build & deploy.", "tag": "Starting at $29/mo", - "url": "https://riku.ai/?ref=riseofmachine.com" + "url": "https://riku.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Shader", "body": "Create AI filters.", "tag": "Private Beta", - "url": "https://www.shaderapp.com/?ref=riseofmachine.com" + "url": "https://www.shaderapp.com/?ref=riseofmachine.com", + "date-added": "2023-12-25" }, { "title": "Stack", "body": "Build custom AI assistants.", "tag": "Freemium", - "url": "https://www.stack-ai.com/?ref=riseofmachine.com" + "url": "https://www.stack-ai.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Structured", "body": "Serverless, no-code platform.", "tag": "Freemium", - "url": "https://www.structuredlabs.io/?ref=riseofmachine.com" + "url": "https://www.structuredlabs.io/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Takomo", "body": "Visual builder to create AI apps.", "tag": "Freemium", - "url": "https://takomo.datacrunch.io/?ref=riseofmachine.com" + "url": "https://takomo.datacrunch.io/?ref=riseofmachine.com", + "date-added": "2024-07-05" }, { "title": "Vectorize AI", "body": "Data into optimized vector search indexes.", "tag": "Freemium", - "url": "https://vectorize.io/?ref=riseofmachine.com" + "url": "https://vectorize.io/?ref=riseofmachine.com", + "date-added": "2024-08-04" } ] }, @@ -1420,185 +1627,201 @@ "title": "Photos", "category": "photos", "content": [ - { - "title": "Aesthetic Background", - "body": "Aesthetic & background generator.", - "tag": "Free", - "url": "https://www.aestheticbackground.com/?ref=riseofmachine.com" - }, { "title": "BeFunky", "body": "Edit photos,create graphics & collages.", "tag": "Freemium", - "url": "https://www.befunky.com/?ref=riseofmachine.com" + "url": "https://www.befunky.com/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Bg Eraser", "body": "Remove objects & clean up pics.", "tag": "Starting at $0/mo", - "url": "https://bgeraser.com/?ref=riseofmachine.com" + "url": "https://bgeraser.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Booth.AI", "body": "Create product photography.", "tag": "Starting at $199/mo", - "url": "https://www.booth.ai/?ref=riseofmachine.com" + "url": "https://www.booth.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Bria", "body": "Create visual content at scale.", "tag": "Freemium", - "url": "https://bria.ai/?ref=riseofmachine.com" + "url": "https://bria.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Can of Soup", "body": "AI photos with your friends.", "tag": "Free", - "url": "https://canofsoup.com/?ref=riseofmachine.com" + "url": "https://canofsoup.com/?ref=riseofmachine.com", + "date-added": "2023-12-28" }, { "title": "Clipdrop", "body": "Create visuals without a photo studio.", "tag": "Freemium", - "url": "https://clipdrop.co/?ref=riseofmachine.com" + "url": "https://clipdrop.co/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Erase Bg", "body": "Remove background from images.", "tag": "Starting at $0/mo", - "url": "https://www.erase.bg/?ref=riseofmachine.com" + "url": "https://www.erase.bg/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "FaceRate", "body": "Rate and analyze your face.", "tag": "Freemium", - "url": "https://facerate.ai/?ref=riseofmachine.com" + "url": "https://facerate.ai/?ref=riseofmachine.com", + "date-added": "2024-10-30" }, { "title": "Flux AI Online", "body": "Generate AI images.", "tag": "Freemium", - "url": "https://fluxaiweb.com/?ref=riseofmachine.com" + "url": "https://fluxaiweb.com/?ref=riseofmachine.com", + "date-added": "2024-08-31" }, { "title": "Green Screen AI", "body": "Change the background of any image.", "tag": "Free, In-app purchases", - "url": "https://greenscreenai.com/?ref=riseofmachine.com" + "url": "https://greenscreenai.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Hairstyle", "body": "AI haircut simulator.", "tag": "Freemium", - "url": "https://aihairstyle.net/?ref=riseofmachine.com" + "url": "https://aihairstyle.net/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "Hama", "body": "Erase objects from your photo.", "tag": "Freemium", - "url": "https://www.hama.app/?ref=riseofmachine.com" + "url": "https://www.hama.app/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Imggen AI", "body": "Free online AI image generator.", "tag": "Free", - "url": "https://imggen.ai/?ref=riseofmachine.com" + "url": "https://imggen.ai/?ref=riseofmachine.com", + "date-added": "2024-03-23" }, { "title": "Image Enlarger", "body": "Enhance & upscale images.", "tag": "Starting at $0/mo", - "url": "https://imglarger.com/?ref=riseofmachine.com" + "url": "https://imglarger.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Lets Enhance", "body": "Enhance, upscale & generate pictures.", "tag": "Freemium", - "url": "https://letsenhance.io/?ref=riseofmachine.com" + "url": "https://letsenhance.io/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Magic Eraser", "body": "Remove objects from photos.", "tag": "Freemium", - "url": "https://magicstudio.com/magiceraser/?ref=riseofmachine.com" + "url": "https://magicstudio.com/magiceraser/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Magnific", "body": "Image upscaler & enhancer.", "tag": "Freemium", - "url": "https://magnific.ai/?ref=riseofmachine.com" + "url": "https://magnific.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Nostalgia Photo", "body": "Restore old photographs.", "tag": "Starting at $3", - "url": "https://www.nostalgia.photo/?ref=riseofmachine.com" + "url": "https://www.nostalgia.photo/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Palette", "body": "Colorize pictures.", "tag": "Pay-as-you-go", - "url": "https://palette.fm/?ref=riseofmachine.com" + "url": "https://palette.fm/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Pebblely", "body": "Create photos for any product.", "tag": "Freemium", - "url": "https://pebblely.com/?ref=riseofmachine.com" + "url": "https://pebblely.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Photoleap", "body": "Photo editing app.", "tag": "Freemium", - "url": "https://www.photoleapapp.com/?ref=riseofmachine.com" + "url": "https://www.photoleapapp.com/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "PhotoRoom", "body": "Remove & change background.", "tag": "Freemium", - "url": "https://www.photoroom.com/?ref=riseofmachine.com" + "url": "https://www.photoroom.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "PortraitArt", "body": "Turn photos into art.", "tag": "Starting at $7.99", - "url": "https://portraitart.app/?ref=riseofmachine.com" + "url": "https://portraitart.app/?ref=riseofmachine.com", + "date-added": "2024-03-23" }, { "title": "Removebg", "body": "Remove image background.", "tag": "Pay-as-you-go", - "url": "https://www.remove.bg/?ref=riseofmachine.com" + "url": "https://www.remove.bg/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Restore Photos", "body": "Restoring old photos.", "tag": "Open-source", - "url": "https://www.restorephotos.io/?ref=riseofmachine.com" + "url": "https://www.restorephotos.io/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Snapby", "body": "AI generated images.", "tag": "Free", - "url": "https://snapby.ai/?ref=riseofmachine.com" + "url": "https://snapby.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Storia", "body": "AI-powered image editor.", "tag": "Freemium", - "url": "https://www.storia.ai/?ref=riseofmachine.com" + "url": "https://www.storia.ai/?ref=riseofmachine.com", + "date-added": "2023-12-27" }, { "title": "Topaz Photo AI", "body": "Noise reduction, sharpening & upscaling.", "tag": "Starting at $149", - "url": "https://www.topazlabs.com/topaz-photo-ai/?ref=riseofmachine.com" - }, - { - "title": "Wishhush", - "body": "Create unlimited content for your fans.", - "tag": "Starting at $50", - "url": "https://www.wishhush.com/?ref=riseofmachine.com" + "url": "https://www.topazlabs.com/topaz-photo-ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" } ] }, @@ -1610,175 +1833,204 @@ "title": "Autotab", "body": "Build browser automations.", "tag": "Freemium", - "url": "https://www.autotab.com/?ref=riseofmachine.com" + "url": "https://www.autotab.com/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "ChatGPT Writer", "body": "Generate emails & replies.", "tag": "Extension", - "url": "https://chatgptwriter.ai/?ref=riseofmachine.com" + "url": "https://chatgptwriter.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Chatize", "body": "Chat with documents.", "tag": "Freemium", - "url": "https://www.chatize.com/?ref=riseofmachine.com" + "url": "https://www.chatize.com/?ref=riseofmachine.com", + "date-added": "2024-03-31" }, { "title": "CognosysAI", "body": "Web-based AI Agent.", "tag": "Freemium", - "url": "https://www.cognosys.ai/?ref=riseofmachine.com" + "url": "https://www.cognosys.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Cvbee.ai", "body": "AI-powered CV maker.", "tag": "Freemium", - "url": "https://cvbee.ai/?ref=riseofmachine.com" + "url": "https://cvbee.ai/?ref=riseofmachine.com", + "date-added": "2024-09-20" }, { "title": "Fireflies", "body": "Transcribe, search & analyze voice convos.", "tag": "Freemium", - "url": "https://fireflies.ai/?ref=riseofmachine.com" + "url": "https://fireflies.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "FocusFlow.ai", "body": "Track and improve your day.", "tag": "Beta", - "url": "https://focusflow.ai/?ref=riseofmachine.com" + "url": "https://focusflow.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Groupthink", "body": "Creates meeting agendas, takes notes, & share summary.", "tag": "Free", - "url": "https://groupthink.com/?ref=riseofmachine.com" + "url": "https://groupthink.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Humata", "body": "Chat through long documents.", "tag": "Starting at $0/mo", - "url": "https://www.humata.ai/?ref=riseofmachine.com" + "url": "https://www.humata.ai/?ref=riseofmachine.com", + "date-added": "2023-12-27" }, { "title": "Intellibar", "body": "Assistant for Mac.", "tag": "Freemium", - "url": "https://intellibar.app/?ref=riseofmachine.com" + "url": "https://intellibar.app/?ref=riseofmachine.com", + "date-added": "2024-09-28" }, { "title": "Krisp", "body": "Assistant for meetings & calls.", "tag": "Freemium", - "url": "https://krisp.ai/?ref=riseofmachine.com" + "url": "https://krisp.ai/?ref=riseofmachine.com", + "date-added": "2023-12-11" }, { "title": "Linnk.ai", "body": "Instant insights where you read.", "tag": "Freemium", - "url": "https://www.linnk.ai/?ref=riseofmachine.com" + "url": "https://www.linnk.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Merlin", "body": "Finish any task on any website.", "tag": "Starting at $19/mo", - "url": "https://merlin.foyer.work/?ref=riseofmachine.com" + "url": "https://merlin.foyer.work/?ref=riseofmachine.com", + "date-added": "2023-12-28" }, { "title": "MultiOn", "body": "Agents that act on your behalf.", "tag": "Starting at $0.04/request", - "url": "https://www.multion.ai/?ref=riseofmachine.com" + "url": "https://www.multion.ai/?ref=riseofmachine.com", + "date-added": "2024-07-16" }, { "title": "Noty", "body": "Meetings into action items & follow-ups.", "tag": "Freemium", - "url": "https://noty.ai/?ref=riseofmachine.com" + "url": "https://noty.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Otter", "body": "Meeting assistant.", "tag": "Freemium", - "url": "https://otter.ai/?ref=riseofmachine.com" + "url": "https://otter.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Reclaim AI", "body": "Smart calendar tool.", "tag": "Freemium", - "url": "https://reclaim.ai/?ref=riseofmachine.com" + "url": "https://reclaim.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "ShortcutAI", "body": "ChatGPT for Apple notes.", "tag": "Freemium", - "url": "https://shortcutai.com/?ref=riseofmachine.com" + "url": "https://shortcutai.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Sider", "body": "AI assistant.", "tag": "Starting at $10/mo", - "url": "https://sider.ai/?ref=riseofmachine.com" + "url": "https://sider.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "SummerEyes", "body": "Summarize any text.", "tag": "Beta, Free", - "url": "https://summereyes.ai/?ref=riseofmachine.com" + "url": "https://summereyes.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Supernormal", "body": "Create meeting notes.", "tag": "Freemium", - "url": "https://supernormal.com/?ref=riseofmachine.com" + "url": "https://supernormal.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Taskade", "body": "AI-powered productivity.", "tag": "Freemium", - "url": "https://www.taskade.com/?ref=riseofmachine.com" + "url": "https://www.taskade.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "TimeOS", "body": "Automate meetings.", "tag": "Freemium", - "url": "https://www.timeos.ai/?ref=riseofmachine.com" + "url": "https://www.timeos.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "TL;DV", "body": "Transcribe & summarize meetings.", "tag": "Freemium", - "url": "https://tldv.io/?ref=riseofmachine.com" + "url": "https://tldv.io/?ref=riseofmachine.com", + "date-added": "2023-12-23" }, { "title": "Ultra", "body": "Chat with your email.", "tag": "Not available", - "url": "https://ultramail.ai/?ref=riseofmachine.com" + "url": "https://ultramail.ai/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "VocalScribe", "body": "Voice recordings into polished blog posts.", "tag": "Freemium", - "url": "https://vocalscribe.xyz/?ref=riseofmachine.com" + "url": "https://vocalscribe.xyz/?ref=riseofmachine.com", + "date-added": "2024-11-07" }, { "title": "Walles", "body": "AI assistant plugin.", "tag": "Freemium", - "url": "https://walles.ai/?ref=riseofmachine.com" + "url": "https://walles.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Wiseone", "body": "AI-powered reading tool.", "tag": "Extension", - "url": "https://wiseone.io/?ref=riseofmachine.com" + "url": "https://wiseone.io/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Wudpecker", "body": "Storing meeting knowledge.", "tag": "Freemium", - "url": "https://www.wudpecker.io/?ref=riseofmachine.com" + "url": "https://www.wudpecker.io/?ref=riseofmachine.com", + "date-added": "2023-12-15" } ] }, @@ -1790,67 +2042,78 @@ "title": "Dallelist", "body": "DALL-E prompt helper.", "tag": "Free, Extension", - "url": "https://www.dallelist.com/?ref=riseofmachine.com" + "url": "https://www.dallelist.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Eye for AI", "body": "Visual prompt builder.", "tag": "Freemium", - "url": "https://eyeforai.xyz/?ref=riseofmachine.com" + "url": "https://eyeforai.xyz/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "FlowGPT", "body": "Library of ChatGPT prompts.", "tag": "Community", - "url": "https://flowgpt.com/?ref=riseofmachine.com" + "url": "https://flowgpt.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "GoodPrompts", "body": "Curated prompts.", "tag": "Free", - "url": "https://www.aigoodprompts.com/?ref=riseofmachine.com" + "url": "https://www.aigoodprompts.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Img2prompt", "body": "Image to prompt.", "tag": "Pay-as-you-go", - "url": "https://replicate.com/methexis-inc/img2prompt/?ref=riseofmachine.com" + "url": "https://replicate.com/methexis-inc/img2prompt/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "OpenArt", "body": "Discover 10M+ prompts.", "tag": "Freemium", - "url": "https://openart.ai/?ref=riseofmachine.com" + "url": "https://openart.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "PromptBase", "body": "Marketplace for GPT3 prompts.", "tag": "Marketplace", - "url": "https://promptbase.com/?ref=riseofmachine.com" + "url": "https://promptbase.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "PromptBox", "body": "Organize your prompts.", "tag": "Freemium, Extension", - "url": "https://www.promptbox.ai/?ref=riseofmachine.com" + "url": "https://www.promptbox.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "PromptHero", "body": "Prompts for Stable Diffusion & Midjourney.", "tag": "Freemium", - "url": "https://prompthero.com/?ref=riseofmachine.com" + "url": "https://prompthero.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "PromptLayer", "body": "Visually manage prompts.", "tag": "Open-source", - "url": "https://promptlayer.com/?ref=riseofmachine.com" + "url": "https://promptlayer.com/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "SrefHunter", "body": "Midjourney sref codes.", "tag": "Free", - "url": "https://srefhunter.top/?ref=riseofmachine.com" + "url": "https://srefhunter.top/?ref=riseofmachine.com", + "date-added": "2024-06-17" } ] }, @@ -1862,55 +2125,64 @@ "title": "BizNest", "body": "Discover the top product opportunities.", "tag": "Freemium", - "url": "https://www.biznest.io/?ref=riseofmachine.com" + "url": "https://www.biznest.io/?ref=riseofmachine.com", + "date-added": "2024-10-30" }, { "title": "Capgo AI", "body": "Market research in sheet.", "tag": "Freemium", - "url": "https://capgo.ai/?ref=riseofmachine.com" + "url": "https://capgo.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Consensus", "body": "Search engine for research.", "tag": "Freemium", - "url": "https://consensus.app/?ref=riseofmachine.com" + "url": "https://consensus.app/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Domain Name Generator", "body": "Generate domain names.", "tag": "Freemium", - "url": "https://refined.so/tools/free-domain-name-generator?ref=riseofmachine.com" + "url": "https://refined.so/tools/free-domain-name-generator?ref=riseofmachine.com", + "date-added": "2024-09-11" }, { "title": "Isaac", "body": "Workspace for researchers.", "tag": "Freemium", - "url": "https://isaaceditor.com/?ref=riseofmachine.com" + "url": "https://isaaceditor.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Merlin", "body": "Qualitative research with AI.", "tag": "Waitlist", - "url": "https://talktomerlin.com/?ref=riseofmachine.com" + "url": "https://talktomerlin.com/?ref=riseofmachine.com", + "date-added": "2023-12-28" }, { "title": "Silatus", "body": "Research automation engine.", "tag": "Starting at $14/mo", - "url": "https://silatus.com/?ref=riseofmachine.com" + "url": "https://silatus.com/?ref=riseofmachine.com", + "date-added": "2023-12-27" }, { "title": "Synthetic Users", "body": "Test product with AI participants.", "tag": "Starting at $99/mo", - "url": "https://www.syntheticusers.com/?ref=riseofmachine.com" + "url": "https://www.syntheticusers.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Wokelo", "body": "Investment research and due diligence.", "tag": "Not available", - "url": "https://www.wokelo.ai/?ref=riseofmachine.com" + "url": "https://www.wokelo.ai/?ref=riseofmachine.com", + "date-added": "2023-12-27" } ] }, @@ -1922,19 +2194,22 @@ "title": "Blawgy", "body": "AI-powered daily content.", "tag": "Starting at $249/mo", - "url": "https://blawgy.com/?ref=riseofmachine.com" + "url": "https://blawgy.com/?ref=riseofmachine.com", + "date-added": "2024-10-04" }, { "title": "SEOAIBOT", "body": "Automated SEO content creation.", "tag": "Freemium", - "url": "https://www.seoaibot.com/?ref=riseofmachine.com" + "url": "https://www.seoaibot.com/?ref=riseofmachine.com", + "date-added": "2024-10-30" }, { "title": "WriteText Shopify", "body": "Generate product and SEO texts.", "tag": "Freemium", - "url": "https://writetext.ai/shopify?ref=riseofmachine.com" + "url": "https://writetext.ai/shopify?ref=riseofmachine.com", + "date-added": "2024-09-11" } ] }, @@ -1946,67 +2221,78 @@ "title": "Assembo", "body": "Generate product photos & videos.", "tag": "Freemium", - "url": "https://app.assembo.ai/?ref=riseofmachine.com" + "url": "https://app.assembo.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Docsfold", "body": "Create social media images, banners, and PDFs.", "tag": "Freemium", - "url": "https://www.docsfold.com/?ref=riseofmachine.com" + "url": "https://www.docsfold.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Ocoya", "body": "Create & post social media content.", "tag": "Starting at $15/mo", - "url": "https://www.ocoya.com/?ref=riseofmachine.com" + "url": "https://www.ocoya.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Quickads", "body": "AI ad generator.", "tag": "Starting at $9/mo", - "url": "https://www.quickads.ai/?ref=riseofmachine.com" + "url": "https://www.quickads.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "RePixify", "body": "Content generation for social media.", "tag": "Free", - "url": "https://www.repixify.com/?ref=riseofmachine.com" + "url": "https://www.repixify.com/?ref=riseofmachine.com", + "date-added": "2024-06-17" }, { "title": "ReplyMind", "body": "Social growth assistant.", "tag": "Freemium", - "url": "https://www.replymind.com/?ref=riseofmachine.com" + "url": "https://www.replymind.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Sivi", "body": "Content into visual designs.", "tag": "Freemium", - "url": "https://sivi.ai/?ref=riseofmachine.com" + "url": "https://sivi.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Social Hub", "body": "AI-native marketing cloud.", "tag": "Freemium", - "url": "https://www.socialhub.ai/?ref=riseofmachine.com" + "url": "https://www.socialhub.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "TimetoTok", "body": "AI agent for TikTok growth.", "tag": "Freemium", - "url": "https://timetotok.com/?ref=riseofmachine.com" + "url": "https://timetotok.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Toolz", "body": "Social media and SEO tools.", "tag": "Not available", - "url": "https://www.360toolz.com/?ref=riseofmachine.com" + "url": "https://www.360toolz.com/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Videolulu", "body": "Ideas into viral shorts.", "tag": "Freemium", - "url": "https://videolulu.com/?ref=riseofmachine.com" + "url": "https://videolulu.com/?ref=riseofmachine.com", + "date-added": "2024-09-11" } ] }, @@ -2018,151 +2304,169 @@ "title": "Boolvideo", "body": "AI-powered video editor.", "tag": "Starting at $1/mo", - "url": "https://boolv.video/?ref=riseofmachine.com" + "url": "https://boolv.video/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Creatify", "body": "Generate videos from link or text.", "tag": "Freemium", - "url": "https://creatify.ai/?ref=riseofmachine.com" + "url": "https://creatify.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Decohere", "body": "Generate AI video.", "tag": "Freemium", - "url": "https://www.decohere.ai/?ref=riseofmachine.com" + "url": "https://www.decohere.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Deforum", "body": "Stable Diffusion to generate AI visuals.", "tag": "Beta", - "url": "https://deforum.art/?ref=riseofmachine.com" + "url": "https://deforum.art/?ref=riseofmachine.com", + "date-added": "2023-12-31" }, { "title": "DreamCut", "body": "AI video editor and screen recorder.", "tag": "Freemium", - "url": "https://dreamcut.ai/?ref=riseofmachine.com" + "url": "https://dreamcut.ai/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "Fal", "body": "Stable video diffusion.", "tag": "Starting $0.00003/s", - "url": "https://www.fal.ai/models/svd/playground/?ref=riseofmachine.com" + "url": "https://www.fal.ai/models/svd/playground/?ref=riseofmachine.com", + "date-added": "2023-12-31" }, { "title": "Fliki", "body": "Create video & audio content.", "tag": "Freemium", - "url": "https://fliki.ai/?ref=riseofmachine.com" + "url": "https://fliki.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Genmo", "body": "Make videos using AI.", "tag": "Freemium", - "url": "https://www.genmo.ai/?ref=riseofmachine.com" + "url": "https://www.genmo.ai/?ref=riseofmachine.com", + "date-added": "2023-12-31" }, { "title": "Heygen", "body": "Produce videos with AI-generated avatars & voices.", "tag": "Freemium", - "url": "https://www.heygen.com/?ref=riseofmachine.com" + "url": "https://www.heygen.com/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Image2Video", "body": "Image to video generator.", "tag": "Freemium", - "url": "https://image2video.ai/?ref=riseofmachine.com" + "url": "https://image2video.ai/?ref=riseofmachine.com", + "date-added": "2024-09-20" }, { "title": "Img2Video", "body": "Text & images into short videos.", "tag": "Freemium", - "url": "https://img2video.ai/?ref=riseofmachine.com" + "url": "https://img2video.ai/?ref=riseofmachine.com", + "date-added": "2024-10-30" }, { "title": "Kaiber", "body": "Text, photos, and music to videos.", "tag": "Starting at $5/mo", - "url": "https://kaiber.ai/?ref=riseofmachine.com" + "url": "https://kaiber.ai/?ref=riseofmachine.com", + "date-added": "2023-12-31" }, { "title": "Kite", "body": "Create Apple-style marketing videos.", "tag": "Freemium", - "url": "https://kite.video/?ref=riseofmachine.com" - }, - { - "title": "Libretto", - "body": "Audio & video production.", - "tag": "Freemium", - "url": "https://libretto.fm/?ref=riseofmachine.com" + "url": "https://kite.video/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Magic Hour", "body": "AI video for creators.", "tag": "Freemium", - "url": "https://magichour.ai/?ref=riseofmachine.com" + "url": "https://magichour.ai/?ref=riseofmachine.com", + "date-added": "2023-12-31" }, { "title": "Moonvalley", "body": "Text-to-video generative AI model.", "tag": "Beta", - "url": "https://moonvalley.ai/?ref=riseofmachine.com" + "url": "https://moonvalley.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Morph Studio", "body": "Text to video.", "tag": "Beta", - "url": "https://www.morphstudio.com/?ref=riseofmachine.com" + "url": "https://www.morphstudio.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Neural Frames", "body": "Text to video.", "tag": "Freemium", - "url": "https://www.neuralframes.com/?ref=riseofmachine.com" + "url": "https://www.neuralframes.com/?ref=riseofmachine.com", + "date-added": "2023-12-31" }, { "title": "OpusClip", "body": "AI video clipping tool.", "tag": "Beta", - "url": "https://www.opus.pro/?ref=riseofmachine.com" + "url": "https://www.opus.pro/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Pika", "body": "Idea-to-video platform.", "tag": "Invite Only", - "url": "https://pika.art/?ref=riseofmachine.com" + "url": "https://pika.art/?ref=riseofmachine.com", + "date-added": "2023-12-22" }, { "title": "PixVerse", "body": "Video creation platform.", "tag": "Beta", - "url": "https://pixverse.ai/?ref=riseofmachine.com" + "url": "https://pixverse.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Rask AI", "body": "Translate video & audio.", "tag": "Starting at $50/mo", - "url": "https://www.rask.ai/?ref=riseofmachine.com" + "url": "https://www.rask.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Runway", "body": "Text to video generation", "tag": "Freemium", - "url": "https://runwayml.com/ai-magic-tools/gen-2/?ref=riseofmachine.com" + "url": "https://runwayml.com/ai-magic-tools/gen-2/?ref=riseofmachine.com", + "date-added": "2023-12-31" }, { "title": "SpiritMe", "body": "Create videos with digital avatars.", "tag": "Starting at $30/mo", - "url": "https://spiritme.tech/?ref=riseofmachine.com" + "url": "https://spiritme.tech/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Videomaker", "body": "Luma AI video maker free online.", "tag": "Free", - "url": "https://videomaker.me/?ref=riseofmachine.com" + "url": "https://videomaker.me/?ref=riseofmachine.com", + "date-added": "2024-10-23" } ] }, @@ -2174,445 +2478,505 @@ "title": "Amazely", "body": "AI growth platform for businesses.", "tag": "Freemium", - "url": "https://amazely.co/?ref=riseofmachine.com" + "url": "https://amazely.co/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Archetype", "body": "AI foundation model.", "tag": "Early Access", - "url": "https://www.archetypeai.io/?ref=riseofmachine.com" + "url": "https://www.archetypeai.io/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "BarGPT", "body": "Create new cocktails.", "tag": "Freemium", - "url": "https://www.bargpt.app/?ref=riseofmachine.com" + "url": "https://www.bargpt.app/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Blocks", "body": "Email builder.", "tag": "Freemium", - "url": "https://useblocks.io/?ref=riseofmachine.com" + "url": "https://useblocks.io/?ref=riseofmachine.com", + "date-added": "2023-12-23" }, { "title": "BlogSEO", "body": "Create SEO content in 19 languages.", "tag": "Freemium", - "url": "https://www.blogseo.ai/?ref=riseofmachine.com" + "url": "https://www.blogseo.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "BoostBot", "body": "Find and contact with influencers.", "tag": "Starting at $41/mo", - "url": "https://boostbot.ai/?ref=riseofmachine.com" + "url": "https://boostbot.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "BrickCenter", "body": "Generate custom brick sets.", "tag": "Freemium", - "url": "https://www.brickcenter.net/?ref=riseofmachine.com" + "url": "https://www.brickcenter.net/?ref=riseofmachine.com", + "date-added": "2024-10-22" }, { "title": "BypassGPT", "body": "AI-generated text into human-like content.", "tag": "Freemium", - "url": "https://bypassgpt.co/?ref=riseofmachine.com" + "url": "https://bypassgpt.co/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "Chat100", "body": "Free AI chat with GPT4o & Claude 3.5 Sonnet.", "tag": "Free", - "url": "https://chat100.ai/?ref=riseofmachine.com" + "url": "https://chat100.ai/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "Clickable", "body": "Generate ads for marketing channels.", "tag": "Beta", - "url": "https://www.clickable.so/?ref=riseofmachine.com" + "url": "https://www.clickable.so/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Chatru", "body": "Free online AI chat.", "tag": "Free", - "url": "https://aichatru.ru/?ref=riseofmachine.com" + "url": "https://aichatru.ru/?ref=riseofmachine.com", + "date-added": "2024-10-30" }, { "title": "Coframe", "body": "Self-optimize your site.", "tag": "Not available", - "url": "https://www.coframe.com/?ref=riseofmachine.com" - }, - { - "title": "Crumb", - "body": "Food generator.", - "tag": "Free, In-app purchases", - "url": "https://www.eatwithcrumb.com/?ref=riseofmachine.com" + "url": "https://www.coframe.com/?ref=riseofmachine.com", + "date-added": "2024-10-30" }, { "title": "CSM", "body": "Data into 3D world models.", "tag": "Free", - "url": "https://csm.ai/?ref=riseofmachine.com" + "url": "https://csm.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Cypher", "body": "Create your personal AI clone.", "tag": "Freemium", - "url": "https://cypher.is/?ref=riseofmachine.com" + "url": "https://cypher.is/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Daydrm", "body": "For creative advertising ideas.", "tag": "Starting at $19/mo", - "url": "https://www.daydrm.ai/?ref=riseofmachine.com" + "url": "https://www.daydrm.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Delphi", "body": "Clone yourself.", "tag": "Starting at $25", - "url": "https://www.delphi.ai/?ref=riseofmachine.com" + "url": "https://www.delphi.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Dubbah", "body": "Dub videos in 28 different languages.", "tag": "Starting at $49.99", - "url": "https://www.dubbah.co/?ref=riseofmachine.com" + "url": "https://www.dubbah.co/?ref=riseofmachine.com", + "date-added": "2023-12-27" }, { "title": "DupDub", "body": "Craft content.", "tag": "Freemium", - "url": "https://www.dupdub.com/?ref=riseofmachine.com" + "url": "https://www.dupdub.com/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Easy-Peasy", "body": "Generate content.", "tag": "Starting at $0/mo", - "url": "https://easy-peasy.ai/?ref=riseofmachine.com" + "url": "https://easy-peasy.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Floworks", "body": "AI-powered assistant.", "tag": "Not available", - "url": "https://floworks.ai/?ref=riseofmachine.com" + "url": "https://floworks.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Generators", "body": "A curated list of AI generators.", "tag": "Free", - "url": "https://aigenerator.cc/?ref=riseofmachine.com" + "url": "https://aigenerator.cc/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "GPT4o", "body": "Discover GPT-4o's capabilities.", "tag": "Freemium", - "url": "https://gpt4o.so/?ref=riseofmachine.com" + "url": "https://gpt4o.so/?ref=riseofmachine.com", + "date-added": "2024-10-23" }, { "title": "Helix", "body": "Build, optimize text and image AI.", "tag": "Freemium", - "url": "https://tryhelix.ai/?ref=riseofmachine.com" + "url": "https://tryhelix.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "HelloScribe", "body": "Toolkit for PR & marketing.", "tag": "Starting at $49/mo", - "url": "https://www.helloscribe.ai/?ref=riseofmachine.com" + "url": "https://www.helloscribe.ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Jude AI", "body": "Real estate with AI.", "tag": "Starting at $12.99/mo", - "url": "https://www.judeai.com/?ref=riseofmachine.com" + "url": "https://www.judeai.com/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Krater.ai", "body": "SuperApp for all things AI.", "tag": "Freemium", - "url": "https://www.krater.ai/?ref=riseofmachine.com" + "url": "https://www.krater.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Lindy", "body": "AI employee.", "tag": "Beta", - "url": "https://www.lindy.ai/?ref=riseofmachine.com" + "url": "https://www.lindy.ai/?ref=riseofmachine.com", + "date-added": "2023-12-27" }, { "title": "Maester", "body": "GPT-3 template engine.", "tag": "Free", - "url": "https://maester.app/?ref=riseofmachine.com" + "url": "https://maester.app/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Marvin", "body": "Build AI interfaces.", "tag": "Free", - "url": "https://www.askmarvin.ai/?ref=riseofmachine.com" + "url": "https://www.askmarvin.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Mavex.ai", "body": "Personal AI executive assistant.", "tag": "Freemium, Extension", - "url": "https://mavex.ai/?ref=riseofmachine.com" + "url": "https://mavex.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Mem", "body": "Personal AI thought partner.", "tag": "Freemium", - "url": "https://get.mem.ai/?ref=riseofmachine.com" + "url": "https://get.mem.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "MetaGPT", "body": "Agent as a service.", "tag": "Freemium", - "url": "https://www.deepwisdom.ai/?ref=riseofmachine.com" + "url": "https://www.deepwisdom.ai/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Modal", "body": "Run generative AI models.", "tag": "Freemium", - "url": "https://modal.com/?ref=riseofmachine.com" + "url": "https://modal.com/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Monica", "body": "AI assistant for chatting & copywriting.", "tag": "Freemium", - "url": "https://monica.im/?ref=riseofmachine.com" + "url": "https://monica.im/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Move", "body": "Capture and create 3D animations.", "tag": "Starting at $15", - "url": "https://www.move.ai/?ref=riseofmachine.com" + "url": "https://www.move.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Mystic", "body": "Serverless GPU inference for ML models.", "tag": "Starting at $12.99/mo", - "url": "https://www.mystic.ai/pipeline-catalyst/?ref=riseofmachine.com" + "url": "https://www.mystic.ai/pipeline-catalyst/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Nara", "body": "Al-powered digital sales associate.", "tag": "Starting at $19/mo", - "url": "https://trynara.com/?ref=riseofmachine.com" + "url": "https://trynara.com/?ref=riseofmachine.com", + "date-added": "2023-12-27" }, { "title": "Nexusflow", "body": "Generative AI for cybersecurity.", "tag": "Not available", - "url": "https://nexusflow.ai/?ref=riseofmachine.com" + "url": "https://nexusflow.ai/?ref=riseofmachine.com", + "date-added": "2023-12-28" }, { "title": "Neum", "body": "RAG framework for large-scale and real-time data.", "tag": "Open-source", - "url": "https://www.neum.ai/?ref=riseofmachine.com" + "url": "https://www.neum.ai/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Penny", "body": "Online shopping assistant.", "tag": "Free, Extension", - "url": "https://penny.im/?ref=riseofmachine.com" + "url": "https://penny.im/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Peerfect", "body": "Cover letter generator.", "tag": "Free", - "url": "https://peerfect.net/coverletter?ref=riseofmachine.com" + "url": "https://peerfect.net/coverletter?ref=riseofmachine.com", + "date-added": "2024-10-22" }, { "title": "Personal", "body": "Personal AI messenger.", "tag": "Starting at $0/mo", - "url": "https://www.personal.ai/?ref=riseofmachine.com" + "url": "https://www.personal.ai/?ref=riseofmachine.com", + "date-added": "2024-09-28" }, { "title": "Pitch", "body": "Create & share presentations.", "tag": "Freemium", - "url": "https://pitch.com/?ref=riseofmachine.com" + "url": "https://pitch.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Plus Docs", "body": "Generate & edit presentations.", "tag": "Freemium", - "url": "https://www.plusdocs.com/?ref=riseofmachine.com" + "url": "https://www.plusdocs.com/?ref=riseofmachine.com", + "date-added": "2023-12-22" }, { "title": "Postli", "body": "LinkedIn post generator.", "tag": "Freemium", - "url": "https://www.postli.co/?ref=riseofmachine.com" + "url": "https://www.postli.co/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Ptool", "body": "NSFW AI image generator.", "tag": "Freemium", - "url": "https://www.ptool.ai/?ref=riseofmachine.com" + "url": "https://www.ptool.ai/?ref=riseofmachine.com", + "date-added": "2024-10-04" }, { "title": "RealChar", "body": "Communication with AI character.", "tag": "Freemium", - "url": "https://realchar.ai/?ref=riseofmachine.com" - }, - { - "title": "Revyou", - "body": "Aggregate, collect, & showcase client reviews.", - "tag": "Freemium", - "url": "https://www.revyou.me/?ref=riseofmachine.com" + "url": "https://realchar.ai/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Rewin.ai", "body": "Videos to Youtube and TikTok scripts.", "tag": "Freemium", - "url": "https://rewin.ai/?ref=riseofmachine.com" + "url": "https://rewin.ai/?ref=riseofmachine.com", + "date-added": "2023-12-22" }, { "title": "Rewind AI", "body": "Find anything you have seen, said, or heard.", "tag": "Freemium", - "url": "https://www.rewind.ai/?ref=riseofmachine.com" + "url": "https://www.rewind.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Reword", "body": "AI-powered copilot.", "tag": "Freemium", - "url": "https://reword.com/?ref=riseofmachine.com" + "url": "https://reword.com/?ref=riseofmachine.com", + "date-added": "2023-12-25" }, { "title": "Rizz AI", "body": "AI dating assistant.", "tag": "Starting at $4/mo", - "url": "https://rizzai.ai/?ref=riseofmachine.com" + "url": "https://rizzai.ai/?ref=riseofmachine.com", + "date-added": "2024-07-27" }, { "title": "Roboto", "body": "Copilot for sensor data.", "tag": "Freemium", - "url": "https://www.roboto.ai/?ref=riseofmachine.com" + "url": "https://www.roboto.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "RunDiffusion", "body": "Stable diffusion in the cloud.", "tag": "Starting at $0.50/hr", - "url": "https://rundiffusion.com/?ref=riseofmachine.com" + "url": "https://rundiffusion.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "RunPod", "body": "Develop, train, and scale AI apps.", "tag": "Starting at $0.2/hr", - "url": "https://www.runpod.io/?ref=riseofmachine.com" + "url": "https://www.runpod.io/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Rysana", "body": "AIUX toolkits and APIs.", "tag": "Open-source", - "url": "https://rysana.com/?ref=riseofmachine.com" + "url": "https://rysana.com/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Scade", "body": "Develop products and services.", "tag": "Beta", - "url": "https://www.scade.pro/?ref=riseofmachine.com" + "url": "https://www.scade.pro/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "SlidesAI", "body": "Create slides from any text.", "tag": "Starting at $0/mo", - "url": "https://www.slidesai.io/?ref=riseofmachine.com" + "url": "https://www.slidesai.io/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Success.ai", "body": "AI-powered cold emails.", "tag": "Starting at $23/mo", - "url": "https://www.success.ai/?ref=riseofmachine.com" + "url": "https://www.success.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Synthetic", "body": "Synthetic data for vision AI.", "tag": "Beta", - "url": "https://syntheticaidata.com/?ref=riseofmachine.com" + "url": "https://syntheticaidata.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Tallow Balm", "body": "Create tallow-based skincare formulations.", "tag": "Freemium", - "url": "https://tallowbalm.io/?ref=riseofmachine.com" + "url": "https://tallowbalm.io/?ref=riseofmachine.com", + "date-added": "2024-11-07" }, { "title": "Teachable Machine", "body": "Create ML models for your sites & apps.", "tag": "Free", - "url": "https://teachablemachine.withgoogle.com/?ref=riseofmachine.com" + "url": "https://teachablemachine.withgoogle.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Textomap", "body": "Generate interactive maps from text.", "tag": "Freemium", - "url": "https://www.textomap.com/?ref=riseofmachine.com" + "url": "https://www.textomap.com/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Tinq", "body": "NLP API toolkit, NLP as a service.", "tag": "Starting at $15/mo", - "url": "https://tinq.ai/?ref=riseofmachine.com" + "url": "https://tinq.ai/?ref=riseofmachine.com", + "date-added": "2023-12-15" }, { "title": "Tinygrad", "body": "Neural network framework.", "tag": "Open-source", - "url": "https://tinygrad.org/?ref=riseofmachine.com" + "url": "https://tinygrad.org/?ref=riseofmachine.com", + "date-added": "2023-12-29" }, { "title": "Tome", "body": "Create presentations and microsites.", "tag": "Freemium", - "url": "https://tome.app/ai/?ref=riseofmachine.com" + "url": "https://tome.app/ai/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Tripo", "body": "Generate 3D models with text or images.", "tag": "Freemium", - "url": "https://www.tripo3d.ai/?ref=riseofmachine.com" + "url": "https://www.tripo3d.ai/?ref=riseofmachine.com", + "date-added": "2023-12-26" }, { "title": "Unbounce", "body": "Generate marketing content.", "tag": "Freemium", - "url": "https://unbounce.com/product/smart-copy/?ref=riseofmachine.com" + "url": "https://unbounce.com/product/smart-copy/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "VoicePen", "body": "Convert audio, video, voice to blog posts.", "tag": "Starting at $6.99", - "url": "https://voicepen.ai/?ref=riseofmachine.com" + "url": "https://voicepen.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Wantace", "body": "AI development services.", "tag": "Not applicable", - "url": "https://wantace.ai/?ref=riseofmachine.com" + "url": "https://wantace.ai/?ref=riseofmachine.com", + "date-added": "2023-12-28" }, { "title": "Wondercraft", "body": "End-to-end podcast builder.", "tag": "Freemium", - "url": "https://www.wondercraft.ai/?ref=riseofmachine.com" + "url": "https://www.wondercraft.ai/?ref=riseofmachine.com", + "date-added": "2023-12-24" }, { "title": "Writesonic", "body": "Writer, copywriting & paraphrasing tool.", "tag": "Starting at $0/mo", - "url": "https://writesonic.com/?ref=riseofmachine.com" + "url": "https://writesonic.com/?ref=riseofmachine.com", + "date-added": "2023-12-12" }, { "title": "Zeno", "body": "AI evaluation.", "tag": "Open-source", - "url": "https://zenoml.com/?ref=riseofmachine.com" + "url": "https://zenoml.com/?ref=riseofmachine.com", + "date-added": "2023-12-26" } ] } From 3a47ecbb9632012f136dfb2e410b61baa686bfb1 Mon Sep 17 00:00:00 2001 From: Steve Paul Date: Fri, 22 Nov 2024 15:39:54 +0530 Subject: [PATCH 8/9] Add date meta to json and new tag to ui --- src/components/Card.jsx | 14 +++++++++++++- src/components/CardsContainer.jsx | 3 ++- src/components/CategoryNav.css | 13 +++++-------- 3 files changed, 20 insertions(+), 10 deletions(-) diff --git a/src/components/Card.jsx b/src/components/Card.jsx index 533052c..358d625 100644 --- a/src/components/Card.jsx +++ b/src/components/Card.jsx @@ -1,7 +1,18 @@ import "./Card.css"; export default function Card(props) { - const { href, title, body, tag } = props; + const { href, title, body, tag, dateAdded } = props; + + const isNew = () => { + if (!dateAdded) return false; + + const addedDate = new Date(dateAdded); + const today = new Date(); + const differenceInTime = today.getTime() - addedDate.getTime(); + const differenceInDays = differenceInTime / (1000 * 3600 * 24); + + return differenceInDays <= 30; + }; return (
  • @@ -9,6 +20,7 @@ export default function Card(props) { {title}

    {body}

    + {isNew() && New} {tag}

    diff --git a/src/components/CardsContainer.jsx b/src/components/CardsContainer.jsx index 3afbb76..814dff1 100644 --- a/src/components/CardsContainer.jsx +++ b/src/components/CardsContainer.jsx @@ -14,13 +14,14 @@ export default function CardsContainer({ filter }) { return (
      - {filteredCards.map(({ url, title, body, tag }, i) => ( + {filteredCards.map(({ url, title, body, tag, "date-added": dateAdded }, i) => ( ))}
    diff --git a/src/components/CategoryNav.css b/src/components/CategoryNav.css index 4f0b960..9f05413 100644 --- a/src/components/CategoryNav.css +++ b/src/components/CategoryNav.css @@ -3,6 +3,8 @@ box-shadow: inset 0px -1px 0px var(--border-muted); white-space: nowrap; overflow-x: scroll; + /* scrollbar-width: none; /* Firefox */ + /* -ms-overflow-style: none; /* Internet Explorer and Edge */ position: sticky; top: 0; background-color: var(--background); @@ -13,12 +15,7 @@ z-index: 999999; } -/* hide scrollbar -.category-nav { - scrollbar-width: none; - -ms-overflow-style: none; -} -.category-nav::-webkit-scrollbar{ +/* Hide scrollbar for Chrome, Safari and Opera */ +/* .category-nav::-webkit-scrollbar { display: none; -} -*/ +} */ From 5fa78484bcad4a57f98e8599adb9f16fcc4816fa Mon Sep 17 00:00:00 2001 From: Steve Paul Date: Fri, 22 Nov 2024 16:43:52 +0530 Subject: [PATCH 9/9] Add recently added weekly entries --- src/data/tools.json | 49 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/src/data/tools.json b/src/data/tools.json index eab7e52..d7aa104 100644 --- a/src/data/tools.json +++ b/src/data/tools.json @@ -18,6 +18,13 @@ "url": "https://blimeycreate.com/?ref=riseofmachine.com", "date-added": "2023-12-26" }, + { + "title": "ColorPage.ai", + "body": "Create coloring pages.", + "tag": "Freemium", + "url": "https://colorpage.ai/?ref=riseofmachine.com", + "date-added": "2024-11-17" + }, { "title": "Designer", "body": "Generate designs & images.", @@ -991,6 +998,13 @@ "url": "https://www.brainfi.sh/?ref=riseofmachine.com", "date-added": "2023-12-26" }, + { + "title": "Chatclient", + "body": "Build a custom AI chatbot.", + "tag": "Freemium", + "url": "https://chatclient.ai/?ref=riseofmachine.com", + "date-added": "2024-11-17" + }, { "title": "Chatsimple", "body": "AI-powered virtual agent.", @@ -1627,6 +1641,13 @@ "title": "Photos", "category": "photos", "content": [ + { + "title": "Aesthetic Background", + "body": "Aesthetic & background generator.", + "tag": "Free", + "url": "https://www.aestheticbackground.com/?ref=riseofmachine.com", + "date-added": "2024-11-17" + }, { "title": "BeFunky", "body": "Edit photos,create graphics & collages.", @@ -1822,6 +1843,13 @@ "tag": "Starting at $149", "url": "https://www.topazlabs.com/topaz-photo-ai/?ref=riseofmachine.com", "date-added": "2023-12-15" + }, + { + "title": "Wishhush", + "body": "Create unlimited content for your fans.", + "tag": "Starting at $50", + "url": "https://www.wishhush.com/?ref=riseofmachine.com", + "date-added": "2024-11-17" } ] }, @@ -2391,6 +2419,13 @@ "url": "https://kite.video/?ref=riseofmachine.com", "date-added": "2023-12-26" }, + { + "title": "Libretto", + "body": "Audio & video production.", + "tag": "Freemium", + "url": "https://libretto.fm/?ref=riseofmachine.com", + "date-added": "2024-11-17" + }, { "title": "Magic Hour", "body": "AI video for creators.", @@ -2558,6 +2593,13 @@ "url": "https://www.coframe.com/?ref=riseofmachine.com", "date-added": "2024-10-30" }, + { + "title": "Crumb", + "body": "Food generator.", + "tag": "Free, In-app purchases", + "url": "https://www.eatwithcrumb.com/?ref=riseofmachine.com", + "date-added": "2024-11-17" + }, { "title": "CSM", "body": "Data into 3D world models.", @@ -2803,6 +2845,13 @@ "url": "https://realchar.ai/?ref=riseofmachine.com", "date-added": "2023-12-29" }, + { + "title": "Revyou", + "body": "Aggregate, collect, & showcase client reviews.", + "tag": "Freemium", + "url": "https://www.revyou.me/?ref=riseofmachine.com", + "date-added": "2024-11-17" + }, { "title": "Rewin.ai", "body": "Videos to Youtube and TikTok scripts.",