Skip to content
View Matheswaaran's full-sized avatar
🤟
Cool
🤟
Cool
Block or Report

Block or report Matheswaaran

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

  1. matheswaaran.com matheswaaran.com Public

    JavaScript 1

  2. react-mp3-audio-recording react-mp3-audio-recording Public

    Record an Audio in MP3 format using ReactJs

    JavaScript 16 11

  3. gscpsnacet/cloudnext17 gscpsnacet/cloudnext17 Public

    HTML

  4. Reading .docx files in react.js Reading .docx files in react.js
    1
    import React, { useState } from "react";
    2
    import PizZip from "pizzip";
    3
    import { DOMParser } from "@xmldom/xmldom";
    4
    
                  
    5
    function str2xml(str) {
  5. AudioRecorder.js AudioRecorder.js
    1
    import MicRecorder from "mic-recorder-to-mp3";
    2
    import React from "react";
    3
    
                  
    4
    // Setup the bitrate for audio recording
    5
    const Mp3Recorder = new MicRecorder({ bitRate: 128 });
  6. Custom Image upload component using ... Custom Image upload component using Ant Design (https://ant.design)
    1
    import React from "react";
    2
    import { Upload, Icon, Modal } from "antd";
    3
    import {isEqual} from "lodash";
    4
    
                  
    5
    class ImageUpload extends React.Component {