Skip to content
View dpar39's full-sized avatar

Block or report dpar39

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. ppp ppp Public

    A passport photo ID creation tool

    C++ 176 40

  2. vscode-rest-control vscode-rest-control Public

    VSCode automation via REST API

    TypeScript 2

  3. vscode-catch2-test-adapter vscode-catch2-test-adapter Public

    Forked from matepek/vscode-catch2-test-adapter

    TAEF, Catch2, Google Test and doctest Adapter for VSCode

    TypeScript

  4. pyqt5-image-viewer-starter pyqt5-image-viewer-starter Public

    A simple project with infrastructure to develop desktop applications with PyQt5

    Python

  5. clp-wasm clp-wasm Public

    TinLake LP solver

    C++ 4

  6. How to convert SVG to PNG or JPEG How to convert SVG to PNG or JPEG
    1
    function renderPng(svgElmt, filename) {
    2
      const vb = svgElmt.viewBox.baseVal;
    3
      const height = vb.height;
    4
      const width = vb.width;
    5
      let svgSerialized = new XMLSerializer().serializeToString(svgElmt);