p4nth3rblog

My 2021 personal blog site built with NextJS and Contentful — now deprecated. (by whitep4nth3r)

P4nth3rblog Alternatives

Similar projects and alternatives to p4nth3rblog

  • opengraph

    A python module to parse the Open Graph Protocol

  • web-vitals

    Essential metrics for a healthy site.

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • og-image

    19 p4nth3rblog VS og-image

    Discontinued Open Graph Image as a Service - generate cards for Twitter, Facebook, Slack, etc

  • puppeteer-demo

    How to use Puppeteer to take webpage screenshots and generate dynamic Open Graph images for social sharing

  • Blitz

    23 p4nth3rblog VS Blitz

    ⚡️ The Missing Fullstack Toolkit for Next.js

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better p4nth3rblog alternative or higher similarity.

p4nth3rblog reviews and mentions

Posts with mentions or reviews of p4nth3rblog. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-11-29.
  • How to load responsive images in AVIF and WebP using the HTML <picture> element
    2 projects | dev.to | 29 Nov 2021
    If you’d like to see the final code example as a React component in the code for my personal blog site, check it out on GitHub, and if you have any questions about responsive images and how you can make the best of the Contentful Images API, find me on Twitter!
  • TIL: How to use GraphQL variables to give my queries type safety
    1 project | dev.to | 25 Oct 2021
    // https://github.com/whitep4nth3r/p4nth3rblog/blob/main/contentful/Events.js import ContentfulApi from "@contentful/Api"; const defaultOptions = { future: true, }; /* * Get all events -- future by default */ static async getEvents(options = defaultOptions) { // Calculate date_ASC for future events, or date_DESC for past events const order = options.future ? "date_ASC" : "date_DESC"; // Generate today's date const date = new Date(); // And format it to an ISO String const formattedDate = date.toISOString(); // Decide on the date filter to pass in as a string const dateFilter = options.future ? "date_gt" : "date_lt"; // Construct variables object to send with the HTTP POST request const variables = { date: formattedDate, order }; // Build the query const query = `query GetEvents($date: DateTime!, $order: [EventOrder]!) { eventCollection(where: {${dateFilter}: $date}, order: $order) { items { sys { id } date name link description timeTbc isVirtual image { url description height width } } } }`; // Call out to the base API call const response = await this.callContentful(query, variables); const eventCollection = response.data.eventCollection.items ? response.data.eventCollection.items : []; return eventCollection; }
  • How to add Algolia InstantSearch to your Next.js application
    1 project | dev.to | 5 Jul 2021
    Fetch your data however you need to. View the full build-search.js file on GitHub to check out how I used the Contentful GraphQL API and node-fetch to grab my data for processing.
  • How to filter entries by linked references in GraphQL
    1 project | dev.to | 16 Jun 2021
    If you’d like to see the complete query for my topics pages, take a look at this file in the code for my personal blog site. The statically generated page is available to view here.
  • Three ways to use Puppeteer and Node.js to screenshot web pages and generate dynamic Open Graph images for social sharing
    4 projects | dev.to | 17 Mar 2021
    The URL parameters in the request hold the key to the magic being performed here. Here’s a look at the code that generates my dynamic Open Graph images in the head of my web pages, which you can find in full here.
  • A note from our sponsor - WorkOS
    workos.com | 25 Apr 2024
    The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning. Learn more →

Stats

Basic p4nth3rblog repo stats
5
32
0.0
about 2 years ago

whitep4nth3r/p4nth3rblog is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of p4nth3rblog is JavaScript.


Sponsored
Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com