Example functions to show off what you can achieve with Open Runtimes

Overview

Open Runtimes Functions Examples ⚡️

open-runtimes-box-bg-cover

Discord Twitter Account

Example functions to show off what you can achieve with Open Runtimes.

List of Examples

Example Dart Deno Node PHP Python Ruby Swift
Send email with Mailgun
Send SMS with Twilio
Translate text with Google
Object Detection
Generate Giphy GIF
Get COVID-19 Stats

Contributing

All code contributions - including those of people having commit access - must go through a pull request and be approved by a core developer before being merged. This is to ensure a proper review of all the code.

All functions should have the exactly same functionality as their other language counterparts and if possible you should avoid using any third-party libraries to keep the functions simple and secure.

We truly ❤️ pull requests! If you wish to help, you can learn more about how you can contribute to this project in the contribution guide.

Security

For security issues, kindly email us at [email protected] instead of posting a public issue on GitHub.

Discord Server

Join our live Discord server for more help, ideas, and discussions.

License

This repository is available under the MIT License.

Comments
  • Implemented generateWebsiteScreenshot() in dart using Screeenly API.

    Implemented generateWebsiteScreenshot() in dart using Screeenly API.

    Implemented the function mentioned in https://github.com/appwrite/appwrite/issues/4107 Closes https://github.com/appwrite/appwrite/issues/4107

    Sample Scareenshots: Success image

    Failure (Old Screenshot, a minor change was made in the code https://github.com/open-runtimes/examples/pull/63/commits/62a062c05fd64b8990bbed2b9201dac8aca110f7 i'm sure it works fine.) image

    Signed-off-by: 35C4n0r [email protected]

    hacktoberfest-accepted 
    opened by 35C4n0r 5
  • ⚡  Write a sendMessage() Function using Python #3956

    ⚡ Write a sendMessage() Function using Python #3956

    Closes #3956

    Description

    According to the issue #3956 on appwrite,

    I created a Python Cloud Function for sending a message using a specific channel to a receiver

    It can send mail (using mailgun), send discord messages (webhook), send a tweet, and send SMS (using Twilio)

    Screenshots

    1. Sending SMS

    payload and response

    image

    message received

    image

    2. Sending Email

    payload and response

    image

    email received

    image

    3. Tweet

    payload and response

    image

    Tweeted

    image

    4. Sending Discord message

    payload and response

    image

    message received image

    hacktoberfest-accepted 
    opened by Rinshin-Jalal 5
  • Added Generate Short URL example in Java

    Added Generate Short URL example in Java

    Github Issue

    Closes: https://github.com/appwrite/appwrite/issues/4191

    Description

    This change will add the example of generating a short URL using Java. The supported providers are [tinyurl, bitly] This change also adds a README for deploying the code using docker.

    Successful executions

    Successful execution using bitly

    Screen Shot 2022-10-04 at 3 24 00 PM

    Successful execution using tinyurl

    Screen Shot 2022-10-04 at 3 23 35 PM

    Errors

    Empty payload error

    Screen Shot 2022-10-04 at 3 30 23 PM

    Empty variables error

    Screen Shot 2022-10-04 at 3 32 22 PM

    Empty API key error

    Screen Shot 2022-10-04 at 3 33 29 PM

    No provider error

    Screen Shot 2022-10-04 at 3 34 24 PM

    No URL error

    Screen Shot 2022-10-04 at 3 35 52 PM

    Unsupported provider error

    Screen Shot 2022-10-04 at 3 36 59 PM

    Invalid URL error

    Screen Shot 2022-10-04 at 3 38 20 PM hacktoberfest-accepted 
    opened by Pooja444 5
  • feat-4477-Write-a-deepgramTranscribeVideo()-Function-using-Node

    feat-4477-Write-a-deepgramTranscribeVideo()-Function-using-Node

    This PR adds an example of Dart function to transcribe video using Deepgram.

    Closes https://github.com/appwrite/appwrite/issues/4477.

    Working screenshots of the function:

    1. Success
    Screenshot 2022-10-21 at 2 23 48 AM
    1. Failure
    Screenshot 2022-10-21 at 2 24 08 AM

    Let me know if anything else needs to be implemented!

    hacktoberfest-accepted 
    opened by Aadeesh11 4
  • ⚡ Add a Deno example to wipe an Appwrite bucket

    ⚡ Add a Deno example to wipe an Appwrite bucket

    This adds an example for Deno to wipe a complete Appwrite bucket. This PR should close: https://github.com/appwrite/appwrite/issues/4075

    • Function Payload
    Screenshot 2022-10-04 at 23 47 54
    • Execution Log
    Screenshot 2022-10-04 at 23 48 04
    • Proof that all files are deleted
    Screenshot 2022-10-04 at 23 48 12 hacktoberfest-accepted 
    opened by Aragur 4
  • Added wipeAppwriteCollection() Function using Ruby

    Added wipeAppwriteCollection() Function using Ruby

    Summary

    This PR adds an example for Ruby to wipe all documents in an Appwrite database.

    Screens

    Database with existing documents screen-sel-221008-2037-50 Executing function with payload screen-sel-221008-2045-59 Database after executing function screen-sel-221008-2046-25 Function response screen-sel-221008-2053-02 Function response when passing a payload without database id screen-sel-221008-2046-43

    Ticket Link

    Fixes https://github.com/appwrite/appwrite/issues/4101

    hacktoberfest-accepted 
    opened by pikami 3
  • Implemented generateShortURL() in Python with Tinyurl and Bitly APIs.

    Implemented generateShortURL() in Python with Tinyurl and Bitly APIs.

    Implemented generateShortURL() in Python as mentioned in Issue https://github.com/appwrite/appwrite/issues/4188 the function uses APIs provided by TinyURL and Bitly.

    Example Screenshot: Succesful Short url creation using TinyURL image

    Failed TinyURL Creation image

    Succesful Short url creation using Bitly image

    Failed short url creation using Bitly image

    Wrong Provider image

    Incomplete Payload: image

    Signed-off-by: 35C4n0r [email protected]

    hacktoberfest-accepted 
    opened by 35C4n0r 3
  • Feat: add translate text function

    Feat: add translate text function

    This PR should close appwrite/appwrite#4142

    Description

    Implemented translate text function using different providers. Currently the supoorted providers are :

    • Google
    • AWS
    • Azure

    Screenshots

    Translation using Google

    google_proof

    Translation using Azure

    azure_proof

    Translation using AWS

    aws_proof

    hacktoberfest-accepted 
    opened by aknsal 3
  • Fix Ruby's send SMS with Twillio docs

    Fix Ruby's send SMS with Twillio docs

    This commit fixes copy issues:

    • Some places where it should read Ruby and instead was Python
    • An incorrect path
    • A place where it should read with and instead was without
    • There was a warning pointing to replace a value that was set with another name
    hacktoberfest-accepted 
    opened by fagiani 2
  • ⚡  Write a sendMessage() Function using Python #3956

    ⚡ Write a sendMessage() Function using Python #3956

    Closes #3956

    Description

    According to the issue #3956 on appwrite,

    I created a Python Cloud Function for sending a message using a specific channel to a receiver

    It can send mail (using mailgun), send discord messages (webhook), send a tweet, and send SMS (using Twilio)

    Screenshots

    1. Sending SMS

    payload and response

    image

    message received

    image

    2. Sending Email

    payload and response

    image

    email received

    image

    3. Tweet

    payload and response

    image

    Tweeted

    image

    4. Sending Discord message

    payload and response

    image

    message received image

    opened by Rinshin-Jalal 2
  • feat-4176-send-http-request

    feat-4176-send-http-request

    Issue #4176 write a sendHTTPRequest() function using PHP

    Closes https://github.com/appwrite/appwrite/issues/4176

    • created function to send http request
    • added guzzle client dependency
    • added vendor to gitignore
    • added readme file

    Successful response: Bildschirmfoto 2022-10-04 um 21 04 15

    Error response: Bildschirmfoto 2022-10-04 um 21 04 52

    hacktoberfest-accepted 
    opened by Yordaniss 2
  • feat-4453-Write a deepgramTopicDetection() Function using Dart

    feat-4453-Write a deepgramTopicDetection() Function using Dart

    This PR adds an example of Dart function to transcribe audio using Deepgram

    Closes https://github.com/appwrite/appwrite/issues/4453

    Working screenshots of the function:

    Success Screenshot 2022-12-17 at 6 00 29 AM

    Failure Screenshot 2022-12-17 at 6 01 36 AM

    Let me know if anything else needs to be implemented!

    opened by tanmoy27112000 0
  • feat: 4451 - deepgramAudioSummary() Function using Dart

    feat: 4451 - deepgramAudioSummary() Function using Dart

    Closes https://github.com/appwrite/appwrite/issues/4451

    • Added deepgramAudioSummary() function example
    • Readme file for going through all the details, running and testing it.
    hacktoberfest-accepted 
    opened by ItsAdityaKSingh 2
Owner
Open Runtimes
Open runtime environments for serverless cloud computing
Open Runtimes
A social media platform where you can build your own community.

Commun App A social media platform where you can build your own community. Contributing If you wish to contribute a change to any of the existing feat

Sonu Sharma 61 Dec 24, 2022
Real short video app with firebase and pixels API.Where you can create a short video with pixels' stock videos and also merge your audio.

Real short video app with firebase and pixels API.Where you can create a short video with pixels' stock videos and also merge your audio.

Ansh rathod 55 Dec 26, 2022
A simple, interactive and customizable on-tap bounce animation that can be wrapped on any widgets that you like.

A simple, interactive and customizable on-tap bounce animation that can be wrapped on any widgets that you like.

null 16 Nov 2, 2022
It is an application where you can find out how many people are in space, news about space and access random space photos.

It is an application where you can find out how many people are in space, news about space and access random space photos. This application was made to learn the dart language.

Emre Taner Çetinkaya 4 Oct 8, 2021
Flutter Developer Profile App, you can contribute by adding yourself as a developer.

Flutter App - Developers Profile Flutter Developer Profile App. You can contribute by adding yourself as a developer. ?? About the repository This Rep

Hacktoberfest SIT '21 3 Nov 17, 2022
mezza 0 Nov 24, 2021
Poi-Poi-ToDo - A Task Management App where you can create task & maintain your daily life easily

"Poi Poi Todo" is a Task Management App where you can create task & maintain your daily life easily. In this app we use Path Provider, SQLite Database, DateTime Picker etc flutter pakages.

CPAD-Gazipur 8 Oct 30, 2022
A simple App made with flutter where you can create Q&A List

iQuestions ?? Welcome to Iquestions project! A simple App made with flutter where you can create Q&A List. This is a Fully Functional App that uses Ge

Filipe Lukebana 3 Sep 13, 2022
An app that keeps track of what you're watching and allows you to watch the shows from within the app itself. It uses Kitsu API as it's data source.

Anilemon A small app to keep track of and watch your favorite anime. Features Save anime that you are interested in in your library Open the website y

Pumpkin Person 0 Oct 12, 2021
2 screens you maybe find useful wan you plan to build your flutter app

2 screens to a travel application 2 screens you maybe find useful wan you plan t

Abdelghani meliani 5 Nov 14, 2022
Getx Pattern example

Getx Pattern example

Kauê Murakami 17 Oct 28, 2022
A basic demo example for integrating between Appwrite & Flutter 💙

?? Quiz With Flutter A simple Quiz App built with Flutter and Appwrite ?? Getting Started ?? Install Appwrite Follow our simple Installation Guide to

Appwrite 35 Nov 22, 2022
An Example project showing usage of drupal_linkset_menu flutter package

drupal_menu_flutter An Example project showing usage of drupal_linkset_menu flutter package Getting Started This project is a starting point for a Flu

Aqib Gatoo 4 May 11, 2021
Flutter Basic Sqflite Example

sqflite_demo A new Flutter application. Getting Started This project is a starting point for a Flutter application. A few resources to get you started

İbrahim Tunç 2 Sep 5, 2021
An example showing how to handle common scrolling gesture conflicts in Flutter.

scroll_master An example showing how to handle common scrolling gesture conflicts in Flutter.

null 11 Nov 11, 2022
Flutter Home Service Application Example - Day 35

Flutter Home Service Application Example - Day 35

Mohammad Rahmani 138 Dec 23, 2022
Flutter Wallet Application Example - Day 40

Flutter Wallet Application Example - Day 40

Mohammad Rahmani 89 Dec 23, 2022
Example of how to create scenes with Rive content in Flutter

rive-centaur Example of how to create scenes with Rive content in Flutter! no_audio_apples.mov Getting Started This project is a starting point for a

Luigi Rosso 14 Nov 6, 2022
Example of injectable package and get it

inject_sample A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if

Rifat Khadafy 2 Oct 13, 2021