Skip to content

Instantly share code, notes, and snippets.

View akirco's full-sized avatar
🎯
Focusing

akirco

🎯
Focusing
View GitHub Profile
@akirco
akirco / select.html
Created September 28, 2023 12:16
use ui and li write a select
<div class="flex items-center justify-center pt-48">
<div
class="inline-flex w-96 items-center justify-between gap-3 rounded-full px-2 text-gray-500 ring ring-indigo-300"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
@akirco
akirco / .Cloud.md
Created September 20, 2023 03:17 — forked from imba-tjd/.Cloud.md
☁️ 一些免费的云资源

IaaS指提供系统(可以自己选)或者储存空间之类的硬件,软件要自己手动装;PaaS提供语言环境和框架(可以自己选);SaaS只能使用开发好的软件(卖软件本身);BaaS一般类似于非关系数据库,但各家不通用,有时还有一些其它东西。

其他人的集合

@akirco
akirco / player.css
Last active September 19, 2023 03:44
use video.js play m3u8 stream
.vjs-control-bar {
@apply !bg-black/50 !h-[4rem] sm:!text-xl font-medium;
}
.vjs-control-text {
@apply !border-none;
}
.video-js .vjs-big-play-button {
@apply !rounded-full !h-[3rem] !bg-black/50 !border-none;
}
.vjs-button > .vjs-icon-placeholder:before {
@akirco
akirco / player.css
Last active September 18, 2023 07:08
use xgplayer in next.js
#xgplayer {
@apply xl:!pt-[40%];
}
@akirco
akirco / archlinux hyprland conf.md
Last active August 22, 2023 14:29
archlinux hyprland conf
tags categories cover
archlinux
development
# #0d1117
# #010409
# #292a2e
@akirco
akirco / cron-parser.md
Created August 18, 2023 15:48
how to parse cron exp with powershell
tags categories cover
PowerShell
development
function Parse-CronExpression {
    param (
        [Parameter(Mandatory=$true)]
@akirco
akirco / Test infinite Opus stream.md
Last active August 11, 2023 12:53
Test infinite Opus stream
tags categories cover
development
let rs;

self.addEventListener('message', (event) => {
@akirco
akirco / ess.md
Last active August 11, 2023 12:49
event source stream
tags categories cover
Javascript
development
<!DOCTYPE html>

<html>
@akirco
akirco / chatgpt.md
Last active August 16, 2023 12:57
how to write a chatbot with powershell
tags categories cover
PowerShell
development
function chat() {
    $prompts = @()
    while ($true) {
@akirco
akirco / learning notes.md
Last active August 16, 2023 06:16
golang notes
tags categories cover
golang
development
notes

golang learning

intro