Skip to content

Instantly share code, notes, and snippets.

View jishen027's full-sized avatar

Jeb Lee jishen027

View GitHub Profile
@jishen027
jishen027 / index.html
Last active January 3, 2024 15:43
markdown-it usage
<!-- better include github md style for table format -->
<!-- Styles -->
<link rel="stylesheet" href="./github-md-style.css">
<main>
</main>
@jishen027
jishen027 / azure-pipeline.yml
Created January 2, 2024 14:51
Azure DevOps CI/CD(Pipeline) for Vue.js Deployment with Shared Hosting(SiteGround) SSH
# Node.js with Vue
# Build a Node.js project that uses Vue.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- master
pool:
vmImage: ubuntu-latest
@jishen027
jishen027 / PDFGenerator.js
Last active January 2, 2024 14:41
Dynamic PDF Report Generator for Analytics
// PDFGenerator.js
import jsPDF from 'jspdf';
import html2canvas from 'html2canvas';
import esv_logo from '../assets/images/logo_esv.png';
class PDFGenerator {
constructor(title = "Analytics") {
this.pdf = new jsPDF();
this.currentY = 20;
this.title = title;