Skip to content
View tehjnito's full-sized avatar

Block or report tehjnito

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

Pinned Loading

  1. expressjs-firebase-auth-starter expressjs-firebase-auth-starter Public

    Creating this because I'm getting tired of repeatedly doing this...

    JavaScript 1

  2. React component for comparing two im... React component for comparing two images using a slider. Best used for "Before vs After" style comparisons. No external Dependencies. Possible performance issue calling the "cumulativeOffset" method so often....but meh...You can see it in action on my website in the photo-editing section of my portfolio (https://tehjean.herokuapp.com/#Portfolio)
    1
    import React from 'react';
    2
    
                  
    3
    Math.clamp = function(val, min, max){ return Math.max(min,Math.min(max,val));}
    4
    
                  
    5
    const cumulativeOffset = function(element) {
  3. Simple thumbs up & down thingy for r... Simple thumbs up & down thingy for react-native. Depends on "react-native-vector-icons"
    1
    import React, { PureComponent } from 'react';
    2
    import { View, Text, TouchableOpacity } from 'react-native';
    3
    import Icon from 'react-native-vector-icons/Feather';
    4
    
                  
    5
    
                  
  4. PersonalWebsite3 PersonalWebsite3 Public

    JavaScript

  5. I did another ReactNative UI thingy.... I did another ReactNative UI thingy....that I will eventually explain and enventually eventually turn into a package...maybe
    1
    import React, { useState } from 'react';
    2
    import PropTypes from 'prop-types';
    3
    import { View, Text, TouchableOpacity, StyleSheet } from 'react-native';
    4
    
                  
    5
    
                  
  6. EnglishToMorseCode EnglishToMorseCode Public

    Simple web page that allows converting between English and Morse Code

    Hack