Key AI Programming Tools
Code smarter, not harder
15 tools
1 subscriber
Subscribe
Author

Luke PERLITA
๐ 8 karma
-
824,953635v1.6 released 13d agoFree + from $12/moSahil Mohan Bansal๐ 233 karmaNov 13, 2024Reducing manual efforts in first-pass during code-review process helps speed up the "final check" before merging PRs
-
10,10970Released 1y agoFree + from $20/moHelps a lot and saves us time with PR review - great cozy tool!
-
30,653301v0.48.6 released 6mo agoFree + from $16/mo
-
13,46969v2.0 released 5mo agoFree + from $22/moWarp is probably the best CLI on the Mac Platform, even better when you are in the middle of that complex linux string and you think How do I...just ask the AI and it will give you that answer you forget all those years ago.
-
3,51659v2.1 released 5mo agoFree + from $10/moIt gets 2 stars for actually being able to deploy an app. But I'd give it negative 5 stars because it will cause pure rage when it starts to break your app and won't reference what is currently deployed or it will break backups. Wtf?!?!
-
1,93418Released 2y ago100% FreeIt's a great AI assistant that have made my coding life so much easier.
-
2,45236Released 2mo agoFrom $12/moReally cool app to code faster and get less errors
-
12,84812Released 24d agoNo pricing
-
Secuarden is your LLM-powered, context-aware security co-pilot for code reviews.Open4,5959Released 2mo agoFree + from $30
-
1,4812Released 26d agoFrom $99Hey, it's Taylor here! Really excited to share Atai with you all! Not sure if you knew, but not only is this super helpful, but it comes with full source code!!
-
40,550856Released 3y agoNo pricingCode varies from run to run. Still it is a helpful app. You can specify coding languages that are not in the dropdown menu.
-
Converts JavaScript code to TypeScript.Open3,57916Released 2y agoNo pricing
-
1377Released 1mo ago100% Free
-
2103260Released 11mo ago100% Free```python def add(x, y): return x + y def subtract(x, y): return x - y def multiply(x, y): return x * y def divide(x, y): if y == 0: return "Error: Division by zero" return x / y print("Simple Calculator") print("1. Add") print("2. Subtract") print("3. Multiply") print("4. Divide") while True: choice = input("Enter choice (1/2/3/4): ") if choice in ('1', '2', '3', '4'): num1 = float(input("Enter first number: ")) num2 = float(input("Enter second number: ")) if choice == '1': print(f"{num1} + {num2} = {add(num1, num2)}") elif choice == '2': print(f"{num1} - {num2} = {subtract(num1, num2)}") elif choice == '3': print(f"{num1} * {num2} = {multiply(num1, num2)}") elif choice == '4': print(f"{num1} / {num2} = {divide(num1, num2)}") else: print("Invalid input") again = input("Do you want to perform another calculation? (yes/no): ") if again.lower() != 'yes': break print("Thank you for using the calculator!") ``` This simple calculator program does the following: 1. Defines functions for basic arithmetic operations: add, subtract, multiply, and divide. 2. Presents a menu for the user to choose an operation. 3. Takes two numbers as input from the user. 4. Performs the selected operation and displays the result. 5. Asks if the user wants to perform another calculation. 6. Continues until the user chooses to exit. You can run this script, and it will allow you to perform basic calculations. Feel free to ask if you have any questions or if you'd like to add more features to the calculator!
-
Transform programming ideas into crystal-clear pseudocode instantly.Open22109Released 1mo ago100% Free