Trending

#Slidev

Latest posts tagged with #Slidev on Bluesky

Latest Top
Trending

Posts tagged #Slidev

For presentations, I'm using slidev, a pretty cool and versatile tool (Markdown slides with inline HTML/Vue, so you can do basically anything on your slides), which has lots of cool features.

One minor annoyance: If you're using either of the QRCode addons and want to add more than one QR Code per slide deck, it breaks.

Luckily, with the power of the web, this is pretty easy to fix:

We can just define a component:

```vue
<template>
  <QrcodeCanvas
    :value="value"
    :size="width"
    :foreground="foreground"
    :background="background"
    :margin="margin"
    level="H"
  />
</template>

<script lang="ts" setup>
import { QrcodeCanvas } from 'qrcode.vue'

const props = withDefaults(
  defineProps<{
    value: string
    width?: number
    height?: number
    color?: string
    margin?: number
  }>(),
  {
    width: 200,
    color: '#000000',
    margin: 2,
  },
)

const foreground = props.color.startsWith('#') ? props.color : `#${props.color}`
const background = '#FFFFFF'
</script>
```

And use it:

```vue
<QRCode class="rounded" value="https://beathagenlocher.com/me" :width="140" :height="140" />
```

Sweet!

For presentations, I'm using slidev, a pretty cool and versatile tool (Markdown slides with inline HTML/Vue, so you can do basically anything on your slides), which has lots of cool features. One minor annoyance: If you're using either of the QRCode addons and want to add more than one QR Code per slide deck, it breaks. Luckily, with the power of the web, this is pretty easy to fix: We can just define a component: ```vue <template> <QrcodeCanvas :value="value" :size="width" :foreground="foreground" :background="background" :margin="margin" level="H" /> </template> <script lang="ts" setup> import { QrcodeCanvas } from 'qrcode.vue' const props = withDefaults( defineProps<{ value: string width?: number height?: number color?: string margin?: number }>(), { width: 200, color: '#000000', margin: 2, }, ) const foreground = props.color.startsWith('#') ? props.color : `#${props.color}` const background = '#FFFFFF' </script> ``` And use it: ```vue <QRCode class="rounded" value="https://beathagenlocher.com/me" :width="140" :height="140" /> ``` Sweet!

Finally fixed a minor slide annoyance of mine: Non-working QR codes

#Slidev #QRCode #slides #Vue

0 0 1 0

🌟 Huge thanks @antfu for creating & maintaining Slidev!

Just used it for the first time these past few days to build a 120-slide tech presentation and it's genuinely *delightful* - markdown simplicity + stunning visuals = perfection!

Truly impressive work 🙌 #Slidev #Slidevjs

0 0 0 0
Preview
Kostenlose PowerPoint Präsentationsvorlagen und Hintergründe | PoweredTemplate.com Der beste Anbieter für hochqualitative Premium Präsentations-Vorlagen, Folien, Hintergründe, Broschüren, Flyer, Diagramme und Charts, zu bezahlbaren Preisen.

Selten ist die Grenze zwischen Enshittification und ernsthafter, inhaltsorientierter Arbeit so deutlich wie bei Präsentationsvorlagen: poweredtemplate.com/de/free-ppt-powerpoint-t...

https://sli.dev/resources/theme-gallery

#microslop #enshittification #slidev #opensource

1 0 0 0
Preview
Vertical Slides | reveal.js

Sind hier irgendwelche slidev-Gurus anwesend?
Kann mir jemensch sagen, wie ich Folien senkrecht zusammensetze?
Ich meine so wie in https://revealjs.com/vertical-slides/

#askfedi_de #slidev

0 0 0 0
Preview
@scope - CSS | MDN The @scope CSS at-rule enables you to select elements in specific DOM subtrees, targeting elements precisely without writing overly-specific selectors that are hard to override, and without coupling y...

Use case 4: scope #CSS to the parent element in an inline `<style>` block (#2 in [1]). This is more niche, but it's been very handy in Storybook components for quick local styles (note: I'm not using Tailwind). It's also great for slides (like #slidev).

[1] developer.mozilla.org/en-US/docs/W...

0 0 1 0
Preview
Slidev Presentation slides for developers

🔍 / #software / #web / #tool / #slides

#Slidev Presentation slides for developers

🐱🔗 https://laravista.altervista.org/CatLink/links/344

#catlink #softwareweb #softwarewebtool #softwarewebtoolslides

0 1 0 0
Preview
Building True Micro-Frontends: Beyond iFrames with Module Federation The Evolution of Frontend Architecture In today's fast-paced development landscape,...

Building True Micro-Frontends: Beyond iFrames with Module Federation The Evolution of Frontend Architecture In today's fast-paced development landscape, monolithic frontend applications often b...

#webdev #microfrontend #react #slidev

Origin | Interest | Match

0 0 1 0

Check out this presentation, which uses #Slidev and #DemoTime.

1 0 0 0
Azure SQL ♡ Python - Slidev

Best of all the slide deck is 100% open source and available via #Slidev 📖. Here's the link: azuresql.dev/content/sql-...

1 0 1 0

I wonder if there's any way I could translate music sheet images into something responsive (and maintain timing of lyrics). Is there a JavaScript library or anything that could help me achieve this? #programming #js #slidev #codequestion

0 0 0 0
Video

I wanted to make a Linkedin carousel to encourage people to come to my hands-on-lab about Pulumi next week. I generated a PDF with slidev, just by using bolt.new. Funny experiment 😉

#boltnew #slidev

0 0 0 0

I wrote a little blog post about #slidev and how I use it, to create presentations with lots of code and reusable content for different audiences.

rene-wilby.de/en/blog/usin...

0 0 0 0

Sinon alternative récente et avec du potentiel #slidev par le très connu @antfu.me github.com/slidevjs/sli...

0 0 0 0