Skip to content
View danim47c's full-sized avatar
🐒
🐒

Highlights

  • Pro

Organizations

@kashin-dev

Block or report danim47c

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
danim47c/README.md

Pinned Loading

  1. danim47c danim47c Public

    Astro

  2. Layouts util for Next.js Layouts util for Next.js
    1
    import { FC } from "react"
    2
    import { AppProps, RenderLayout } from "utils/layouts"
    3
    
                  
    4
    const App: FC<AppProps> = ({ Component, ...props }) => {
    5
      return (
  3. A command that converts all jpg and ... A command that converts all jpg and png images in a folder and subfolders into .webp
    1
    find ./ -type f -name '*.jpg' -exec sh -c 'cwebp -q 100 $1 -o "${1%.jpg}.webp"' _ {} \; && find ./ -type f -name '*.png' -exec sh -c 'cwebp -q 100 $1 -o "${1%.png}.webp"' _ {} \; && rm */**/*.jpg && rm */**/*.png
  4. certificates.bat certificates.bat
    1
    certbot certonly --manual -d {domain} -m {email} --agree-tos