Public
Script
  • chet avatar
    frostNotify
    @chet
    An interactive, runnable TypeScript val by chet
    Script
  • willthereader avatar
    isMyWebsiteDown
    @willthereader
    Forked from healeycodes/isMyWebsiteDown
    Script
  • lokyeyoung_create avatar
    untitled_coralGerbil
    @lokyeyoung_create
    // Fetches a random joke.
    Cron
  • richardkaplan avatar
    btcPriceAlert
    @richardkaplan
    Forked from stevekrouse/btcPriceAlert
    Cron
  • poulin_al_northeastern avatar
    untitled_magentaWildebeest
    @poulin_al_northeastern
    // Fetches a random joke.
    Cron
  • tgrv avatar
    verySalmonEmu
    @tgrv
    Forked from stevekrouse/weatherGPT
    Cron
  • geraldo avatar
    testSendMail
    @geraldo
    An interactive, runnable TypeScript val by geraldo
    Script
  • andre avatar
    aqi
    @andre
    Forked from stevekrouse/aqi
    Cron
  • cocodrilette avatar
    hnResume
    @cocodrilette
    Send the top 5 HackerNews post to your email every day at a given Datetime.
    Cron
  • subguy avatar
    sendFoodEmail
    @subguy
    // Forked from @enyo.sendTelegramMessage
    Cron
  • njuribarri avatar
    dailyDadJoke
    @njuribarri
    Forked from stevekrouse/dailyDadJoke
    Cron
  • tgrv avatar
    weatherGPT
    @tgrv
    Forked from stevekrouse/weatherGPT
    Cron
  • andreterron avatar
    violetPerch
    @andreterron
    Website Downtime Alert This val checks the availability of a specified website. If it's down or not returning a 200 OK status, it triggers an email alert. The email includes the date, time (in UTC), and the reason for the downtime, providing a way to monitor website availability. Fork this val and edit the URL variable to set up downtime notifications for your website.
    Cron
  • thure avatar
    github_emails
    @thure
    Forked from wittjosiah/github_emails
    Email
  • nik avatar
    sendResponse
    @nik
    An interactive, runnable TypeScript val by nik
    Script
  • vez avatar
    comments
    @vez
    Comments (just add water) A self-contained comments system Val. Just fork this val and you have a complete (but extremely minimal) comment system! Call on the front-end using: const MY_FORKED_VAL_URL = "https://vez-comments.web.val.run"; const getComments = async () => { const response = await fetch(MY_FORKED_VAL_URL); const json = await response.json(); return json; }; const addComment = async (str) => { try { const response = await fetch(MY_FORKED_VAL_URL, { method: "POST", body: JSON.stringify(str), }); if (response.status >= 400 && response.status < 600) { /* error */ return false; } else { /* success */ return true; } } catch (e) { /* error */ return false; } }; Here's an example of a blog post where I used the val for the comment system: https://vezwork.github.io/polylab/dist/demo/bidirectionalParse/. Check out "view source"!
    HTTP (deprecated)
July 31, 2024