Skip to content

Instantly share code, notes, and snippets.

View lstrihic's full-sized avatar

Lovro Strihic lstrihic

  • Zagreb
View GitHub Profile

Keybase proof

I hereby claim:

  • I am lstrihic on github.
  • I am lstrihic (https://keybase.io/lstrihic) on keybase.
  • I have a public key ASBf0YeTZxnZf5_hiRHR_DstOxJiy7ug-BtnNyqBJr0sJQo

To claim this, I am signing this object:

[{
"DProtocolID": 1160185,
"FProtocolID": 1003,
"DocumentTypeID": 14,
"SIDUserCreated": null,
"DocumentTypeCode": "BP.UST",
"DocumentTypeDesc": "Akademska ustanova",
"DocStatus": 15,
"UstanovaOznaka": "000",
"UstanovaNaziv": "» Brucoši «",
[{
"DProtocolID": 1160185,
"FProtocolID": 1003,
"DocumentTypeID": 14,
"SIDUserCreated": null,
"DocumentTypeCode": "BP.UST",
"DocumentTypeDesc": "Akademska ustanova",
"DocStatus": 15,
"UstanovaOznaka": "000",
"UstanovaNaziv": "» Brucoši «",
{
"releaseName": "master",
"releaseCreatedDate": "2018-05-22T11:03:30.407",
"releaseId": 35836,
"vulnerabilities": {
"owasp2010": [{
"count": 1,
"value": "A4 - Insecure Direct Object References"
}, {
"count": 9,
@lstrihic
lstrihic / redblacktree.hpp
Created August 7, 2016 12:31 — forked from zhenghaoz/redblacktree.hpp
Red Black Tree
#include <memory>
#include <iostream>
template <typename Key, typename Value>
class RedBlackTree
{
template <typename T> using shared_ptr = std::shared_ptr<T>;
struct Node;
shared_ptr<Node> nil = std::make_shared<Node>();
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script>
function grabJSON(){
var xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange=function() {