Skip to content

Instantly share code, notes, and snippets.

@andrijac
andrijac / bitcoin_spv_wallet_overview.md
Created September 17, 2020 09:29 — forked from TOMOAKI12345/bitcoin_spv_wallet_overview.md
Bitcoin SPV Wallet Flow Overview

@andrijac
andrijac / websockets.cs
Created November 18, 2019 11:13 — forked from davidfowl/websockets.cs
Simple WS ASP.NET Core
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
namespace SimpleWebSockets
{
public class Program
{
public static void Main(string[] args)
{
var host = new WebHostBuilder()
@andrijac
andrijac / load_script_ajax.js
Last active November 11, 2019 21:10 — forked from hagenburger/javascript_loader.js
Dynamically load JavaScript files with callback when finished
atm.loadScript = (function () {
let loadedScripts = [];
return function (src, callback) {
if (~loadedScripts.indexOf(src) && callback) {
callback();
}
$.ajax({
url: src,

Windows Setup Notes

based on original document from Alan Stevens

Installation

IMPORTANT:

  • Install using Local Account first, attach Microsoft account later

Windows Setup Notes

based on original document from Alan Stevens

Installation

IMPORTANT:

  • Install using Local Account first, attach Microsoft account later
@andrijac
andrijac / Windows10_Setup.md
Created September 7, 2018 13:53 — forked from alanstevens/Windows11_Setup.md
Windows 10 Setup

This guide was created using Microsoft Windows 10 Pro

Version 10.0.17134 Build 17134

Installation

System Updates:

  • Settings -> Update & Security
  • Install all updates

Visual Studio 2017:

@andrijac
andrijac / gist:3b5c04d29db3fd12e0ee576324f09741
Created January 9, 2018 10:13 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@andrijac
andrijac / stuns
Created May 8, 2017 13:21 — forked from zziuni/stuns
STUN server list
# source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list
# A list of available STUN server.
stun.l.google.com:19302
stun1.l.google.com:19302
stun2.l.google.com:19302
stun3.l.google.com:19302
stun4.l.google.com:19302
stun01.sipphone.com
stun.ekiga.net
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin master

JSConf Slides, Codes and Notes

These are all the JSConf 2014 slides, codes, and notes I was able to cull together from twitter. Thanks to the speakers who posted them and thanks to @chantastic for posting his wonderful notes.

Modular frontend with NPM - Jake Verbaten (@Raynos)