Skip to content
View bowber's full-sized avatar

Highlights

  • Pro

Block or report bowber

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

Pinned Loading

  1. msr msr Public

    Environment for container-based application. Inspired by GCP Cloud Run. Available to run as a single-node or multi-node cluster for High Availability.

    TypeScript 2

  2. city-builder city-builder Public

    Game Engine for tower defense games

    C 2

  3. Auto scale font size for quick & dir... Auto scale font size for quick & dirty responsive
    1
    <!DOCTYPE html>
    2
    <html lang="en">
    3
      <head>
    4
        <meta charset="UTF-8" />
    5
        <link rel="icon" type="image/png" href="/images/logo.png" />
  4. Webp converter that auto convert eve... Webp converter that auto convert every (*.jpg *.jpeg *.tif *.tiff *.png) files into webp and keep the original extension (OVERRIDE original files)
    1
    @echo off
    2
    setlocal enabledelayedexpansion
    3
    
                  
    4
    set "PARAMS=-m 6 -q 70 -mt -af -progress"
    5
    
                  
  5. Simple vite.config.ts setup manualCh... Simple vite.config.ts setup manualChunks for each package, auto lazyload.
    1
    import { defineConfig } from 'vite'
    2
    import solid from 'vite-plugin-solid'
    3
    import tsconfigPaths from 'vite-tsconfig-paths'
    4
    
                  
    5
    export default defineConfig({
  6. Sample index.css match common use ca... Sample index.css match common use cases with TailwindCSS
    1
    @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
    2
    @tailwind base;
    3
    @tailwind components;
    4
    @tailwind utilities;
    5