Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR. Learn more โ
Completions Alternatives
Similar projects and alternatives to completions
-
-
Civic Auth
Auth in Less Than 5 Minutes. Civic Auth comes with multiple SSO options, optional embedded wallets, and user management โ all implemented with just a few lines of code. Start building today.
-
Playwright
Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API.
-
-
-
ideas
Discontinued a hundred ideas for computing - a record of ideas - https://samsquire.github.io/ideas/ [GET https://api.github.com/repos/samsquire/ideas: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository] (by samsquire)
-
-
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
ideas2
Discontinued Another 85+ Ideas for Computing https://samsquire.github.io/ideas2/ [GET https://api.github.com/repos/samsquire/ideas2: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository]
-
ideas3
Discontinued An Extra 100 Ideas For Computing - https://samsquire.github.io/ideas3/ [GET https://api.github.com/repos/samsquire/ideas3: 404 - Not Found // See: https://docs.github.com/rest/repos/repos#get-a-repository]
-
selenium-python-helium
Discontinued Lighter web automation for Python [Moved to: https://github.com/mherrmann/helium]
-
-
-
-
Quick Start
๐ A Node.js Serverless Framework for front-end/full-stack developers. Build the application for next decade. Works on AWS, Alibaba Cloud, Tencent Cloud and traditional VM/Container. Super easy integrate with React and Vue. ๐
-
name-needed
๐น A one man effort to produce an intuitive and high performance Dwarf Fortress-esque game. Needs a name.
-
-
-
-
Nayuki-web-published-code
Complete collection of code files (*.java/js/py/cpp/etc.) published on Project Nayuki website.
-
jetson-nano-image
Discontinued Create minimalist, Ubuntu based images for the Nvidia jetson boards [Moved to: https://github.com/pythops/jetson-image]
-
InfluxDB
InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
completions discussion
completions reviews and mentions
-
Autotab โ Boring AI Agents for real world tasks
I am building _exactly_ the same thing for Playwright over at https://ray.run/. I think this is the future of writing tests no doubt. Planning to launch next week.
-
Efficient E2E Testing for Next.js: A Playwright Tutorial
Note: Use page.goto('/') and have "baseURL": "http://ray.run" set in the playwright.config.ts file for concise code.
-
Ask HN: What's the best way to add search to my website?
Your website https://ray.run/ does have that nostalgic early 2000s vibe, which is cool! Regarding the search functionality, you might want to explore open-source alternatives to Algolia.
Projects like Elasticsearch, Solr, or even using Google Custom Search can provide search capabilities without the cost. They might require a bit more setup and maintenance, but they can be budget-friendly options for a free community.
In case you need help or assistance with your project, feel free to contact us! https://www.ratherlabs.com
-
Ask HN: Has anyone migrated from Next.js to Astro and can offer a perspective?
* Most of the pages I use are rendered at the request time, rather than build time
For context, this is the website https://ray.run/
-
The most complete glossary of Software Testing Terms (184 terms)
Ensuring in-article hover definitions for terms on the https://ray.run/ blog.
-
I took down my website by trying to use Cloud DNS โ What's next?
I have added a zone to Cloud DNS (GCP) for https://ray.run/
- Ask HN: Could you show your personal blog here?
-
Getting JSON with TypeScript types from ChatGPT response
I updated completions library to allow statically typed responses:
-
Accessibility Testing with Playwright
import { type Browser, chromium, test as base } from '@playwright/test'; import getPort from 'get-port'; import { playAudit } from 'playwright-lighthouse'; export const test = base.extend<{}, { browser: Browser; port: number }>({ browser: [ async ({ port }, use) => { const browser = await chromium.launch({ args: [`--remote-debugging-port=${port}`], }); await use(browser); await browser.close(); }, { scope: 'worker' }, ], port: [ // eslint-disable-next-line no-empty-pattern async ({}, use) => { // Assign a unique port for each playwright worker to support parallel tests const port = await getPort(); await use(port); }, { scope: 'worker' }, ], }); test.describe('Accessibility Testing with Lighthouse', () => { test('should pass the Lighthouse accessibility audit', async ({ page, port, }) => { await page.goto('https://ray.run/'); await playAudit({ page, port, thresholds: { accessibility: 100, }, }); }); });
-
Migrating from Cypress to Playwright
import { test } from '@playwright/test' test.beforeEach(async ({ page }) => { await page.goto('https://ray.run/login') await page.fill('#username', 'admin') await page.fill('#password', 'password123') await page.click('#login-button') expect(await page.url()).toContain('/dashboard') }) test('should display user profile', async ({ page }) => { await page.click('#profile-button') expect(await page.textContent('body')).toContain('Admin User') }) // Other tests...
-
A note from our sponsor - CodeRabbit
coderabbit.ai | 17 Apr 2025
Stats
lucgagan/completions is an open source project licensed under MIT License which is an OSI approved license.
The primary programming language of completions is TypeScript.
Review โ โ โ โ โ 10/10
Helped me to develop https://ray.run/ask