Skip to content

Instantly share code, notes, and snippets.

View plskz's full-sized avatar
🦝
Learning

Zai Santillan plskz

🦝
Learning
View GitHub Profile
#!/usr/bin/env PATH=$PATH:/opt/homebrew/opt/node@18/bin node
// Required parameters:
// @raycast.schemaVersion 1
// @raycast.title Open Logseq Today's JW
// @raycast.mode fullOutput
// Optional parameters:
// @raycast.icon 📆
@plskz
plskz / fem-get-contents.ts
Last active September 19, 2023 02:06
FrontendMasters - get course contents then paste it to logseq
import jsonData from './developer-productivity.json'
const data = jsonData as Welcome;
export interface Welcome {
course: string;
url: string;
chapters: Chapter[];
}
@plskz
plskz / 0-vim.md
Last active September 19, 2023 02:02
Vim

Vim dump

  • see .vimrc for vim config
  • see init.vim for nvim config
@plskz
plskz / day13.js
Last active September 19, 2023 02:04
scrimba - javascriptmas day 13
/* Emojify!
Popular services like Slack and Github allow for emoji shortscodes, meaning
and automatically replace that word with an emoji.
These shortcodes allow users to add an emoji to their messages by typing a
code rather than searching for an emoji from a list.
they will detect when a word in a sentence begins and ends with a colon (:)For example, typing :smile: will replace that text with 😊
@plskz
plskz / Mainv1.swift
Last active September 19, 2023 02:05
Swift Playground - Discord Chat UI
import SwiftUI
import PlaygroundSupport
struct ContentView: View {
var body: some View {
VStack {
HStack {
Image(uiImage: #imageLiteral(resourceName: "Fif9dcDXEAAJ1Ul.jpeg"))
.resizable()
.scaledToFit()

Keybase proof

I hereby claim:

  • I am plskz on github.
  • I am plskz (https://keybase.io/plskz) on keybase.
  • I have a public key ASCgIeaN8EcxGhqUE0LEbgzVCnjMy2oMQ3kuyh4EmrGK5Ao

To claim this, I am signing this object:

@plskz
plskz / README.md
Last active November 18, 2022 04:00
Tindog SwiftUI
@plskz
plskz / EXTENSIONS.md
Last active March 19, 2024 00:10
My VS Code Extensions

My VSC Extensions

Macbook Air - (10/18/22)

code --install-extension aaron-bond.better-comments
code --install-extension albert.TabOut
code --install-extension bradlc.vscode-tailwindcss
code --install-extension Catppuccin.catppuccin-vsc
code --install-extension christian-kohler.npm-intellisense
@plskz
plskz / 100DoC_automation.md
Last active September 19, 2023 02:08
My automation for 100 Days of Code (old version)
  1. init package

    npm init -y
    
  2. replace your package.json to

    {
      "name": "100-days-of-coding",

"version": "1.0.0",