Skip to content

Instantly share code, notes, and snippets.

View tamaker's full-sized avatar

aamaker tamaker

View GitHub Profile
@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; }