Hi ๐Ÿ‘‹, I'm Bryan

Netlify Research Program Participant!

WEBSITE โ‡„ Portfolio โ‡„ Collaborate โ‡„ Other-Websites

Profile viewsGitterhackmd-github-sync-badgeGitHub followers

โžค Email bryan.guner@gmail.com Phone 551-254-5505

A passionate Web Developer, Electrical Engineer, Musician & Producer

PortfolioResume PDFBryan's emailBlogLinkedinAngelListGitHub bgoonz

emailfacebooktwitteryoutubeinstagramlinkedinmediumspotify

[![Bryans github activity graph](https://activity-graph.herokuapp.com/graph?username=bgoonz&custom_title=This%20is%20Bryans%20Activity&hide_border=true&theme=chartreuse-dark)](https://github.com/bgoonz/github-readme-activity-graph)

bgoonzbgoonz

ReadMe CardReadMe Card

trophy

ReadMe Card

Top Langs

About Me
  • ๐Ÿ”ญ Contract Web Development Relational Concepts
  • ๐ŸŒฑ I'm currently learning React/Redux, Python, Java, Express, jQuery
  • ๐Ÿ‘ฏ I'm looking to collaborate on Any web audio or open source educational tools.
  • ๐Ÿค I'm looking for help with Learning React
  • ๐Ÿ‘จโ€๐Ÿ’ป All of my projects are available at https://bgoonz.github.io/
  • ๐Ÿ“ I regularly write articles on medium && Web-Dev-Resource-Hub
  • ๐Ÿ’ฌ Ask me about Anything:
  • ๐Ÿ“ซ How to reach me bryan.guner@gmail.com
  • โšก Fun fact I played Bamboozle Music Festival at the Meadowlands Stadium Complex when I was 14.

i really like music :headphones:

What's the most useful business-related book you've ever read?

A Random Walk Down Wall Street

What's your favorite non-business book?

Hitchhiker's Guide To The Galaxy

If money were not an issue, what would you be doing right now?

Designing recording software/hardware and using it

What words of advice would you give your younger self?

Try harder and listen to your parents more (the latter bit of advice would be almost certain to fall on deaf ears lol)

What's the most creative thing you've ever done?

I built a platform that listens to a guitarist's performance and automatically triggers guitar effects at the appropriate time in the song.

Which founders or startups do you most admire?

Is it to basic to say Tesla... I know they're prevalent now but I've been an avid fan since as early as 2012.

What's your super power?

Having really good ideas and forgetting them moments later.

What's the best way for people to get in touch with you?

A text

What aspects of your work are you most passionate about?

Creating things that change my every day life.

What was the most impactful class you took in school?

Modern Physics... almost changed my major after that class... but at the end of the day engineering was a much more fiscally secure avenue.

What's something you wish you had done years earlier?

Learned to code ... and sing

What words of wisdom do you live by?

*Disclaimer: The following wisdom is very cliche ... but... "Be the change that you wish to see in the world."

Mahatma Gandhi

| | ## Portfolio:

netlify |

| :------------: | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | Languages |
| | Libraries | | | Frameworks | | | Databases | | | Testing | | | Other |


|

Resume

โžค Technical Skillsยญยญยญ

Programming** Languages:**JavaScript ES-6, NodeJS, React, HTML5, CSS3, SCSS, Bash Shell, Excel, SQL, NoSQL, MATLAB, Python, C++
Databases:PostgreSQL, MongoDB
Cloud:Docker, AWS, Google App Engine, Netlify, Digital Ocean, Heroku, Azure Cloud Services
OS:Linux, Windows (WSL), IOS
Agile:GitHub, BitBucket, Jira, Confluence
IDEs:VSCode, Visual Studio, Atom, Code Blocks, Sublime Text 3, Brackets

-----------------------------------------------------

โžค Experience

Relational Concepts: Hallandale Beach, FLMarch 2020 - Present
Front End Web Developer
  • Responsible for front-end development for a custom real estate application which provides sophisticated and fully customizable filtering to allow investors and real estate professionals to narrow in on exact search targets.
  • Designed mock-up screens, wireframes, and workflows for intuitive user experience.
  • Migrated existing multi-page user experience into singular page interfaces using React components.
  • Participated in every stage of the design from conception through development and iterative improvement.
  • Produced user stories and internal documentation for future site development and maintenance.
  • Implemented modern frameworks including Bootstrap and Font-Awesome to give the site an aesthetic overhaul.
  • Managed all test deployments using a combination of Digital Ocean and Netlify.
  • Produced unit tests using a combination of Mocha and Chai.
  • Injected Google Analytics to capture pertinent usage data to produce an insightful dashboard experience.
Environment:JavaScript, JQuery, React, HTML5 & CSS, Bootstrap, DOJO, Google Cloud, Bash Script
Cembre: Edison, NJNov 2019 โ€“ Mar 2020
Product Development Engineer
  • Converted client's product needs into technical specs to be sent to the development team in Italy.
  • Reorganized internal file server structure.
  • Conducted remote / in person system integration and product demonstrations.
  • Presided over internal and end user software trainings in addition to producing the corresponding documentation.
  • Served as the primary point of contact for troubleshooting railroad hardware and software in the North America.
Environment:Excel, AutoCAD, PowerPoint, Word

-----------------------------------------------------

โžค Education

**B.S. Electrical Engineering, TCNJ, ** Ewing NJ2014 โ€“ 2019

Capstone Project โ€“ Team Lead

  • Successfully completed and delivered a platform to digitize a guitar signal and perform filtering before executing frequency & time domain analysis to track a current performance against prerecorded performance.
  • Implemented the Dynamic Time Warping algorithm in C++ and Python to autonomously activate or adjust guitar effect at multiple pre-designated section of performance.
Environment:C++, Python, MATLAB, PureData
My Projects





hr-line


Learning React Blog

React Repo:

React Repo


Foo

hr-line

react-documentation-site

Edit magical-stallman-ov0d1

hr-line

โžค Codepens (mostly embeded animations)

code-pens-embedded

-----------------------------------------------------

โžค Weekly-Quick-Snips:


Snippet of the Day:

replaceAll

the method string.replaceAll(search, replaceWith) replaces all appearances of search string with replaceWith.

const str = 'this is a JSsnippets example';

const updatedStr = str.replace('example', 'snippet'); // 'this is a  JSsnippets snippet'


The tricky part is that replace method replaces only the very first match of the substring we have passed:


const str = 'this is a JSsnippets example and examples are great';

const updatedStr = str.replace('example', 'snippet'); //'this is a JSsnippets snippet and examples are great'

In order to go through this, we need to use a global regexp instead:


const str = 'this is a JSsnippets example and examples are great';

const updatedStr = str.replace(/example/g, 'snippet'); //'this is a JSsnippets snippet and snippets are greatr'

but now we have new friend in town, replaceAll

const str = 'this is a JSsnippets example and examples are great';

const updatedStr = str.replaceAll('example', 'snippet'); //'this is a JSsnippets snippet and snippets are greatr'

Fibonacci in Python:

def fib_iter(n):
    if n == 0:
        return 0
    if n == 1:
        return 1
    p0 = 0
    p1 = 1
    for i in range(n-1):
        next_val = p0 + p1
        p0 = p1
        p1 = next_val
    return next_val
for i in range(10):
    print(f'{i}: {fib_iter(i)}')

Yesterday's Snippet of the day:


def quicksort(l):
    # One of our base cases is an empty list or list with one element
    if len(l) == 0 or len(l) == 1:
        return l
    # If we have a left list, a pivot point and a right list...
    # assigns the return values of the partition() function
    left, pivot, right = partition(l)
    # Our sorted list looks like left + pivot + right, but sorted.
    # Pivot has to be in brackets to be a list, so python can concatenate all the elements to a single list
    return quicksort(left) + [pivot] + quicksort(right)



print(quicksort([]))



print(quicksort([1]))



print(quicksort([1,2]))

print(quicksort([2,1]))


print(quicksort([2,2]))


print(quicksort([5,3,9,4,8,1,7]))


print(quicksort([1,2,3,4,5,6,7]))


print(quicksort([9,8,7,6,5,4,3,2,1]))

See Older Snippets! #### This Week's snippets: --- >will replace any spaces in file names with an underscore! ```bash for file in *; do mv "$file" `echo $file | tr ' ' '_'` ; done ## TAKING IT A STEP FURTHER: # Let's do it recursivley: function RecurseDirs () { oldIFS=$IFS IFS=$'\n' for f in "$@" do # YOUR CODE HERE!

[-----------------------------------------------------]

for file in *; do mv "$file" echo $file | tr ' ' '_' ; done if [[ -d "${f}" ]]; then cd "${f}" RecurseDirs $(ls -1 ".") cd .. fi done IFS=$oldIFS } RecurseDirs "./"

 ---
 ### Copy to clipboard jQuerry
 > Language: Javascript/Jquery


>In combination with the script tag :  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> , this snippet will add a copy to clipboard button to all of your embedded <code> blocks.


```js
$(document).ready(function() {
  $('code, pre').append('<span class="command-copy" ><i class="fa fa-clipboard" aria-hidden="true"></i></span>');

  $('code span.command-copy').click(function(e) {
    var text = $(this).parent().text().trim(); //.text();
    var copyHex = document.createElement('input');
    copyHex.value = text
    document.body.appendChild(copyHex);
    copyHex.select();
    document.execCommand('copy');
    console.log(copyHex.value)
    document.body.removeChild(copyHex);
  });


  $('pre span.command-copy').click(function(e) {
    var text = $(this).parent().text().trim();
    var copyHex = document.createElement('input');
    copyHex.value = text
    document.body.appendChild(copyHex);
    copyHex.select();
    document.execCommand('copy');
    console.log(copyHex.value)
    document.body.removeChild(copyHex);
  });
})

Append Files in PWD

//APPEND-DIR.js
const fs = require('fs');
let cat = require('child_process').execSync('cat *').toString('UTF-8');
fs.writeFile('output.md', cat, (err) => {
    if (err) throw err;
});

doesUserFrequentStarbucks.js

const isAppleDevice = /Mac|iPod|iPhone|iPad/.test(navigator.platform);
console.log(isAppleDevice);
// Result: will return true if user is on an Apple device

arr-intersection.js

/*
 function named intersection(firstArr) that takes in an array and
returns a function. 
When the function returned by intersection is invoked
passing in an array (secondArr) it returns a new array containing the elements
common to both firstArr and secondArr.
*/
function intersection(firstArr) {
    return (secondArr) => {
        let common = [];
        for (let i = 0; i < firstArr.length; i++) {
            let el = firstArr[i];
            if (secondArr.indexOf(el) > -1) {
                common.push(el);
            }
        }
        return common;
    };
}
let abc = intersection(['a', 'b', 'c']); // returns a function
console.log(abc(['b', 'd', 'c'])); // returns [ 'b', 'c' ]

let fame = intersection(['f', 'a', 'm', 'e']); // returns a function
console.log(fame(['a', 'f', 'z', 'b'])); // returns [ 'f', 'a' ]

arr-of-cum-partial-sums.js

/*
First is recurSum(arr, start) which returns the sum of the elements of arr from the index start till the very end.
Second is partrecurSum() that recursively concatenates the required sum into an array and when we reach the end of the array, it returns the concatenated array.
*/
//arr.length -1 = 5
//                   arr   [    1,    7,    12,   6,    5,    10   ]
//                   ind   [    0     1     2     3     4      5   ]
//                              โ†Ÿ                              โ†Ÿ
//                            start                           end

function recurSum(arr, start = 0, sum = 0) {
    if (start < arr.length) {
        return recurSum(arr, start + 1, sum + arr[start]);
    }

    return sum;
}

function rPartSumsArr(arr, partSum = [], start = 0, end = arr.length - 1) {
    if (start <= end) {
        return rPartSumsArr(arr, partSum.concat(recurSum(arr, start)), ++start, end);
    }
    return partSum.reverse();
}

console.log('------------------------------------------------rPartSumArr------------------------------------------------');
console.log('rPartSumsArr(arr)=[ 1, 1, 5, 2, 6, 10 ]: ', rPartSumsArr(arr));
console.log('rPartSumsArr(arr1)=[ 1, 7, 12, 6, 5, 10 ]: ', rPartSumsArr(arr1));
console.log('------------------------------------------------rPartSumArr------------------------------------------------');
/*
------------------------------------------------rPartSumArr------------------------------------------------
rPartSumsArr(arr)=[ 1, 1, 5, 2, 6, 10 ]:  [ 10, 16, 18, 23, 24, 25 ]
rPartSumsArr(arr1)=[ 1, 7, 12, 6, 5, 10 ]:  [ 10, 15, 21, 33, 40, 41 ]
------------------------------------------------rPartSumArr------------------------------------------------
*/

camel2Kabab.js

function camelToKebab(value) {
    return value.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase();
}

camelCase.js

function camel(str) {
    return str.replace(/(?:^\w|[A-Z]|\b\w|\s+)/g, function (match, index) {
        if (+match === 0) return ''; // or if (/\s+/.test(match)) for white spaces
        return index === 0 ? match.toLowerCase() : match.toUpperCase();
    });
}

concatLinkedLists.js

function addTwoNumbers(l1, l2) {
    let result = new ListNode(0);
    let currentNode = result;
    let carryOver = 0;
    while (l1 != null || l2 != null) {
        let v1 = 0;
        let v2 = 0;
        if (l1 != null) v1 = l1.val;
        if (l2 != null) v2 = l2.val;

        let sum = v1 + v2 + carryOver;
        carryOver = Math.floor(sum / 10);
        sum = sum % 10;
        currentNode.next = new ListNode(sum);

        currentNode = currentNode.next;
        if (l1 != null) l1 = l1.next;
        if (l2 != null) l2 = l2.next;
    }

    if (carryOver > 0) {
        currentNode.next = new ListNode(carryOver);
    }

    return result.next;
}

fast-is-alpha-numeric.js

//Function to test if a character is alpha numeric that is faster than a regular
//expression in JavaScript

let isAlphaNumeric = (char) => {
    char = char.toString();
    let id = char.charCodeAt(0);
    if (
        !(id > 47 && id < 58) && // if not numeric(0-9)
        !(id > 64 && id < 91) && // if not letter(A-Z)
        !(id > 96 && id < 123) // if not letter(a-z)
    ) {
        return false;
    }
    return true;
};

console.log(isAlphaNumeric('A')); //true
console.log(isAlphaNumeric(2)); //true
console.log(isAlphaNumeric('z')); //true
console.log(isAlphaNumeric(' ')); //false
console.log(isAlphaNumeric('!')); //false

find-n-replace.js

function replaceWords(str, before, after) {
    if (/^[A-Z]/.test(before)) {
        after = after[0].toUpperCase() + after.substring(1);
    } else {
        after = after[0].toLowerCase() + after.substring(1);
    }
    return str.replace(before, after);
}
console.log(replaceWords('Let us go to the store', 'store', 'mall')); //"Let us go to the mall"
console.log(replaceWords('He is Sleeping on the couch', 'Sleeping', 'sitting')); //"He is Sitting on the couch"
console.log(replaceWords('His name is Tom', 'Tom', 'john'));
//"His name is John"

flatten-arr.js

/*Simple Function to flatten an array into a single layer */
const flatten = (array) => array.reduce((accum, ele) => accum.concat(Array.isArray(ele) ? flatten(ele) : ele), []);

isWeekDay.js

const isWeekday = (date) => date.getDay() % 6 !== 0;
console.log(isWeekday(new Date(2021, 0, 11)));
// Result: true (Monday)
console.log(isWeekday(new Date(2021, 0, 10)));
// Result: false (Sunday)

longest-common-prefix.js

function longestCommonPrefix(strs) {
    let prefix = '';
    if (strs.length === 0) return prefix;
    for (let i = 0; i < strs[0].length; i++) {
        const character = strs[0][i];
        for (let j = 0; j < strs.length; j++) {
            if (strs[j][i] !== character) return prefix;
        }
        prefix = prefix + character;
    }
    return prefix;
}


-----------------------------------------------------

โžค Github Gists

Github Gists

list-of-my-websites

Awesome Made With Love

forthebadgeforthebadge

Website shields.ioAsk Me Anything !GitterPyPI license

MaintenanceOpen Source Love Bash Shell

React ReduxHTML5 CSS3 SassDocker MySQL PostgresQL Git Ruby Material-UI

Express NodejsPython Bootstrap JavaScript

Project NameSkills usedDescription
Web-Dev-Resource-Hub (blog)Html, Css, javascript, Python, jQuery, React, FireBase, AWS S3, Netlify, Heroku, NodeJS, PostgreSQL, C++, Web Audio APIMy blog site contains my resource sharing and blog site ... centered mostly on web development and just a bit of audio production / generally nerdy things I find interesting.
Dynamic Guitar Effects Triggering Using A Modified Dynamic Time Warping AlgorithmC, C++, Python, Java, Pure Data, MatlabSuccessfully completed and delivered a platform to digitize a guitar signal and perform filtering before executing frequency & time domain analysis to track a current performance against prerecorded performance.Implemented the Dynamic Time Warping algorithm in C++ and Python to autonomously activate or adjust guitar effect at multiple pre-designated section of performance.
Data Structures & Algorithms Interactive Learning SiteHTML, CSS, Javascript, Python, Java, jQuery, Repl.it-Database APIA interactive and comprehensive guide and learning tool for DataStructures and Algorithms ... concentrated on JS but with some examples in Python, C++ and Java as well
MihirBeg.comHtml, Css, Javascript, Bootstrap, FontAwesome, jQueryA responsive and mobile friendly content promotion site for an Audio Engineer to engage with fans and potential clients
Tetris-JSHtml, Css, JavascriptThe classic game of tetris implemented in plain javascipt and styled with a retro-futureistic theme
Git Html Preview ToolGit, Javascript, CSS3, HTML5, Bootstrap, BitBucketLoads HTML using CORS proxy, then process all links, frames, scripts and styles, and load each of them using CORS proxy, so they can be evaluated by the browser.
Mini Project ShowcaseHTML, HTML5, CSS, CSS3, Javascript, jQueryadd songs and play music, it also uses to store data in INDEXEDB Database by which we can play songs, if we not clear the catch then song will remain stored in database.