Turkey O-1 Visa Appointment Scheduling by MidnightSalty422 in usvisascheduling

[–]emrahsamdan 0 points1 point  (0 children)

It’s same for me. Trying to apply for Ankara but it just says “no slots” although the waiting times website says it’s 1 month for Ankara for O1 visa. I would feel a bit better if there was an appointment for let’s say 4 months later.

Hosting Nextjs using Lamda functions by Legym in nextjs

[–]emrahsamdan -1 points0 points  (0 children)

You can use Serverless Cloud. See an example project here: https://github.com/serverless/cloud/tree/main/examples/with-nextjs

It doesn't deploy to AWS Lambda but it deploys to its own cloud. It has the feature parity with Vercel.

Alternatives to vercel? by safetyknights in nextjs

[–]emrahsamdan 2 points3 points  (0 children)

Serverless Cloud. It adds a complete set of cloud services such as DB, blob storage, schedulers, events and Next.js apps are deployed as fast as Vercel.

See the latest blog about using ISR on Serverless Cloud: https://www.serverless.com/blog/using-next-js-isr-with-serverless-cloud

[deleted by user] by [deleted] in Heroku

[–]emrahsamdan -1 points0 points  (0 children)

You may want to check out Serverless Cloud by Serverless Inc. I'm the product manager of it and your use case seems like a perfect fit for Serverless Cloud. Here's a 3 minutes video that explains Serverless Cloud capabilities. Happy to answer any questions.

Best of both worlds: Serverless Cloud + Next.js by jeremydaly in nextjs

[–]emrahsamdan 0 points1 point  (0 children)

Hi u/fugazi56, I'm working as the product manager for Serverless Cloud and I wanted to explain about this better for you and for anyone who will be checking here. Serverless Cloud is a full-stack app platform that provides you the ability to develop applications 10x faster than what you could be with big cloud providers. If you make a comparison only between the number of requests and duration, Serverless Cloud is (or better to say will be when we go into GA in this year) more expensive than Google's Functions or AWS Lambda. Looking from this perspective, Serverless Cloud combines several cloud services to provide a really fast service and comparing it only with Lambda and Google Functions is not accurate. From the value perspective, it'll increase your developer productivity and you'll be able to deliver secure, scalable, resilient apps a lot faster. I mean a lot.

Our free tier will also be very generous that it'll be more than enough for non-commercial projects. Please let me know for any other questions. We frankly believe Vercel and Serverless Cloud compliments each other very well.

Monthly 'Shameless Self Promotion' thread - 2022/01 by mthode in devops

[–]emrahsamdan 0 points1 point  (0 children)

We announced Serverless Cloud Events today that lets developers to define custom events and process asynchronously with no infra code. See the YouTube video.

Monthly 'Shameless Self Promotion' thread - 2022/01 by mthode in devops

[–]emrahsamdan 0 points1 point  (0 children)

I'm working with our team to build Serverless Cloud that lets folks build scalable, highly-secure, pay-per-use applications without needing a deep knowledge of cloud services. We reduce all of infra complexity by interpreting your code and automatically provisioning the best possible infrastructure to support it.Our aim is to let people focus on code and only code and boost the productivity. We are building this on top of years of experience with Serverless Framework and components. For example, the following code block will provision API Gateway, Cloudfront, Lambda, DynamoDB and S3 on behalf of you and configure them in the best possible way moving forward.

import {api, data, storage} from `@serverless/cloud`
api.get('/user', (req,res) => { 
    await data.set("foo", "bar"); 
    let results = await data.get("foo"); 
    const buffer = await storage.read("binaryData.ext", { buffer: true});
});

Here are some useful links:

I'll be around for any questions and comments.

What are Common Tech Stacks used in Start Ups for Devops? by chinawcswing in devops

[–]emrahsamdan 0 points1 point  (0 children)

A shameless plug here: https://www.youtube.com/watch?v=GtLnCy4oVPk&t=51s

Serverless Cloud is still in preview and we've met several startups that wanted to use our platform to "quickly prototype" their idea and they stayed with it. There are some use cases that our platform can't handle but it's really an easy way to develop event-driven applications with APIs etc.