Skip to content
View mashsama's full-sized avatar
💭
I may be slow to respond.
💭
I may be slow to respond.

Block or report mashsama

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
Mashsama/README.md

Image

Hi 👋, I'm MASH

Am currently a college student learning and Exploring the world

mashsama

  • 🔭 I’m currently working on Google Extension

  • 🌱 I’m currently learning⁹ C++,ML and AI

  • 👯 I’m looking to collaborate OSP's

  • Previously Worked with Ksjc and MIT

  • 💬 Ask me about Anything

  • 📫 How to reach me Princehubk100@gmail.com

  • ⚡ Fun fact I Got The best music taste

Connect with me:

mashsamma mashsamma

Languages and Tools:

android bash blender cplusplus git html5 illustrator ionic java javascript linux photoshop python redis ruby spring tensorflow unity unreal zapier

Pinned Loading

  1. Mini-Chat-App Mini-Chat-App Public

    Forked from agarwal222/Mini-Chat-App

    This is a mini chat app for learning socket io and other realime technology

    JavaScript

  2. check if element is in viewport - va... check if element is in viewport - vanilla JS. Use by adding a “scroll” event listener to the window and then calling isInViewport().
    1
    // Determine if an element is in the visible viewport
    2
    function isInViewport(element) {
    3
      var rect = element.getBoundingClientRect();
    4
      var html = document.documentElement;
    5
      return (
  3. URL-encode color SASS function / con... URL-encode color SASS function / convert color to hex SASS function
    1
    //does not work with colors containing alpha
    2
    @function encodecolor($string) {
    3
    	@if type-of($string) == 'color' {
    4
            $hex: str-slice(ie-hex-str($string), 4);
    5
            $string:unquote("#{$hex}");