Skip to content

Instantly share code, notes, and snippets.

View tamaker's full-sized avatar

aamaker tamaker

View GitHub Profile
@tamaker
tamaker / fuse-js-search-demo-v1.markdown
Last active July 5, 2020 15:12
Fuse.js search demo v1
@tamaker
tamaker / index.html
Created May 21, 2020 03:34
Intersection Observer API testing
<div class="textBlock"><p>Scroll down... <br><br>All the Divs in the viewport will (upon entering the viewport) be assigned a random background color. <br><br>I can use the Intersection Observer API to detect Viewport entry for any type of element... it can be my pagination approach, for long lists in a single page web app.</p></div>
<div id="wrapper"></div>
@tamaker
tamaker / cssload.js
Created September 14, 2019 15:32 — forked from cemerson/cssload.js
jQuery: Load CSS File
$('<link>')
.appendTo($('head'))
.attr({type : 'text/css', rel : 'stylesheet'})
.attr('href', '/css/your_css_file.css');
@tamaker
tamaker / HttpClientApproach.cs
Created August 24, 2019 00:16 — forked from acamino/HttpClientApproach.cs
4 Ways to Parse a JSON API with C#
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Headers;
namespace HttpClientApproach
{
internal class Contributor
{
public string Login { get; set; }