{e.company}
46 |{e.description}
51 |├── .npmrc
├── src
├── app.css
├── routes
│ ├── +layout.svelte
│ └── +page.svelte
├── app.html
├── app.d.ts
└── lib
│ └── data.ts
├── static
├── basuke.jpg
└── favicon.png
├── .gitignore
├── .prettierrc
├── postcss.config.cjs
├── vite.config.js
├── tailwind.config.cjs
├── .prettierignore
├── tests
└── test.ts
├── playwright.config.ts
├── tsconfig.json
├── svelte.config.js
├── README.md
├── package.json
└── yarn.lock
/.npmrc:
--------------------------------------------------------------------------------
1 | engine-strict=true
2 |
--------------------------------------------------------------------------------
/src/app.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
--------------------------------------------------------------------------------
/static/basuke.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/basuke/basuke.com/main/static/basuke.jpg
--------------------------------------------------------------------------------
/static/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/basuke/basuke.com/main/static/favicon.png
--------------------------------------------------------------------------------
/src/routes/+layout.svelte:
--------------------------------------------------------------------------------
1 |
4 |
5 |
Software Engineer
15 | 16 | 17 | 18 |19 | Full stack software engineer with 30+ years of experience in this industry, 20 | database, embedded stack, web browser engine, mobile and desktop application, 21 | serverside technology. 22 | 5+ years of open source WebKit project and the WebKit reviewer since 2022. 23 | Speciality for not only C++, but wide web technology from JavaScript / TypeScript, HTML5 and CSS, 24 | Loves Svelte, Vite, Tailwind CSS. 25 |
26 | 27 | 28 | 29 | 34 |{e.description}
51 |