Git Product home page Git Product logo

blog's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

blog's Issues

AWS Lambda now supports NetCore 3.1 should we update the blog runtimes?

AWS announces that AWS Lambda now supports .NET Core 3.1

I think that it could be a good idea to include that runtime in the language-runtimes section of the next blog.

https://serverless.com/aws-lambda/#languages-runtimes

Is this transparent for the serverless framework or does it requires some code to build the compatibility of the new runtime?

Announcement: https://aws.amazon.com/about-aws/whats-new/2020/03/aws-lambda-now-supports-net-core-3-1/

How to add image (screen shot) in blog?

As title, if I want to add several screen shots in blog, how to add?

Review the exist blog, they use the s3 link, but how to know the link for the image I will upload.

python rest api serverless tutorial refers to wsgi.handler which appears to be outdated

I'm following https://serverless.com/blog/flask-python-rest-api-serverless-lambda-dynamodb/.

When I run sls deploy I receive the following warning:

$ sls deploy
[...]
Serverless: Warning: Please change "wsgi.handler" to "wsgi_handler.handler" in serverless.yml                                                                             
Serverless: Warning: Using "wsgi.handler" still works but has been deprecated and will be removed                                                                         
Serverless: Warning: More information at https://github.com/logandk/serverless-wsgi/issues/84                                                                             
Serverless: Using Python specified in "runtime": python3.7
[...]

I'm using the python3.7 runtime. I'm unsure if this warning is present with python3.6.

My serverless.yml file.

DX Github link is double-escaped

The link to Github at the bottom of the "CLI Autocomplete" section in the most recent 1.15 blog post double-escapes the encoded characters and ends up going to the default Issues page.

The url currently in the page is this:
https://github.com/serverless/serverless/issues?utf8=%E2%9C%93&q=is%253Aissue%20is%253Aopen%20DX%253A%20

But should be this:
https://github.com/serverless/serverless/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aopen%20DX%3A%20

I don't think there's an easy way to fix this in the post (I tried by the spaces in the query kill the markdown url). This would probably need to be changed in whatever is rendering the markdown for the site.

FOLIT

"Flash of Lorium Ipsum Text"
When initially loading the blog route, I got a page full of lorium Ipsum text, then a server error, then an error page, then a redirect to the actual live blog.
FireFox dev nightly & Chrome current on Win10, T1 over good WiFI.

I'd assume 'serverless' web pages would be prerendered as static pages with real data, or at least 'above the fold' is prerendered, & more is loaded after the initial.

Command (or Cmd) ⌘ + Click not opening post in new tab

I would like to be able to scroll through a bunch of blog post summaries on the blog home page and ⌘ + Click the titles to bring each up in a new tab; however, for me, this functionality is not working. The page opens in the same tab as the summaries. I am using MacOS and the latest Chrome.

RSS feed?

I forked the blog repo thinking it was a simple jekyll website but it's not. And it seems more complicated than I thought to add a page which is not a text.

Anyway, I think it could be useful if the blog has a RSS feed ! Like https://serverless.com/blog/index.xml or https://serverless.com/blog/rss.xml

Link broken for HTML to Markdown

I tried to access one of your provided link looks be broken or invalid URL. Please provide the correct link that relates to "Need to convert HTML to markdown?"

Endless pagination

Right now the pagination is kind of "endless" as I can click on "next" at the bottom of the page for as long as I want. The number in the URL increases that way.

Unable to create resource at path

https://github.com/serverless/blog/blob/master/posts/2018-05-07-how-create-rest-api-serverless-components.md

I am following the above post, getting an error when running 'components deploy'

BadRequestException: Errors found during import: Unable to create resource at path '/\leads': Resource's path part only allow a-zA-Z0-9._- and curly braces at the beginning and the end. Unable to create resource at path '/\leads\{id}': Resource's path part only allow a-zA-Z0-9._- and curly braces at the beginning and the end. at Object.extractError (C:\Users\jento\AppData\Roaming\npm\node_modules\serverless-components\registry\aws-apigateway\node_modules\aws-sdk\lib\protocol\json.js:48:27) at Request.extractError (C:\Users\jento\AppData\Roaming\npm\node_modules\serverless-components\registry\aws-apigateway\node_modules\aws-sdk\lib\protocol\rest_json.js:52:8) at Request.callListeners (C:\Users\jento\AppData\Roaming\npm\node_modules\serverless-components\registry\aws-apigateway\node_modules\aws-sdk\lib\sequential_executor.js:105:20) at Request.emit (C:\Users\jento\AppData\Roaming\npm\node_modules\serverless-components\registry\aws-apigateway\node_modules\aws-sdk\lib\sequential_executor.js:77:10) at Request.emit (C:\Users\jento\AppData\Roaming\npm\node_modules\serverless-components\registry\aws-apigateway\node_modules\aws-sdk\lib\request.js:683:14) at Request.transition (C:\Users\jento\AppData\Roaming\npm\node_modules\serverless-components\registry\aws-apigateway\node_modules\aws-sdk\lib\request.js:22:10) at AcceptorStateMachine.runTo (C:\Users\jento\AppData\Roaming\npm\node_modules\serverless-components\registry\aws-apigateway\node_modules\aws-sdk\lib\state_machine.js:14:12)

I tried removing {id}, but still get the same error.

Please help. My serverless.yml

....
type: rest-api
    inputs:
      gateway: aws-apigateway
      routes:
        /leads:
          post:
            function: ${createLead}
            cors: true
          get:
            function: ${listLeads}
            cors: true
          /{id}:
            get:
              function: ${getLead}
              cors: true
....

missing template file for building-a-serverless-screenshot-service-with-lambda

https://serverless.com/blog/building-a-serverless-screenshot-service-with-lambda/
I tried to use the Launch stack button provided in the blog post but the template url does not seem to be working.

https://s3-eu-west-1.amazonaws.com/serverless-screenshots-service/2016-09-23T12:50:03/template.yml seems to not exist - I'm getting

Template validation error: S3 error: The specified bucket does not exist For more information check http://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.