Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View mneumatic's full-sized avatar
  • Off Ended Productions
  • Running Springs CA

Block or report mneumatic

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 250 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
mneumatic/README.md

Technologies

Languages / Markdown

html-badge css-badge bootstrap-badge tailwind-badge javascript-badge node-badge express-badge mongodb-badge go-badge postgresql-badge markdown-badge shell-badge apache-badge nginx-badge

Operating Systems

macos-badge linux-badge windows-badge

Github Stats

Michael Neumann

Michael's Github stats

Pinned Loading

  1. giamedical giamedical Public archive

    Company website that delivers a straight forward design and layout.

    EJS 2

  2. remco remco Public

    REMCO Machining & Fabrication website.

    HTML 1

  3. wilkinson-innovations wilkinson-innovations Public

    A website specializing in Biomedical engineering written in GO. (DEMO)

    Go 1

  4. Check if user input is a palindrome. Check if user input is a palindrome.
    1
    function palindrome (s) {
    2
      const lowerRegStr = s.toLowerCase().replace(/[\W_,.]/g, '')
    3
      const reverseStr = lowerRegStr.split('').reverse().join('')
    4
      return reverseStr === lowerRegStr
    5
    }
  5. A primitive search of an array of ob... A primitive search of an array of objects arrays.
    1
    const data = [
    2
      {
    3
        "query": ["about", "us"], // Keywords
    4
        "path": "/about" // page path
    5
      },