{"url":"https://api.github.com/gists/5","forks_url":"https://api.github.com/gists/5/forks","commits_url":"https://api.github.com/gists/5/commits","id":"5","node_id":"MDQ6R2lzdDU=","git_pull_url":"https://gist.github.com/5.git","git_push_url":"https://gist.github.com/5.git","html_url":"https://gist.github.com/maddox/5","files":{"Zadatak 2":{"filename":"Zadatak 2","type":"text/plain","language":null,"raw_url":"https://gist.githubusercontent.com/maddox/5/raw/282d4e18020171b1716996a4ca7946e196b41b88/Zadatak%202","size":798,"truncated":false,"content":"\n#include <iostream>\n#include <cstring>\nusing namespace std;\n\nstruct st{\nint god[10000];\nint serial[10000];\nstring proizvodjac[10000];\nstring model[10000];\n\nint vrh;\n};\n\ntypedef struct st stack;\n\nvoid InitS(stack *s){\n s->vrh=9999;\n}\nvoid TopS(stack &s,string *proizvodjac, string *model, int *serial, int *god){\n*proizvodjac=s.proizvodjac[s.vrh+1];\n*model=s.model[s.vrh+1];\n*serial=s.serial[s.vrh+1];\n*god=s.god[s.vrh+1];\nreturn;     \n}        \nvoid PushS(int serial, string proizvodjac, string model, int god,stack *s){\nint broj;\nbroj=s->vrh;\ns->serial[broj]=serial;\ns->god[broj]=god;\ns->model[broj]=model;\ns->proizvodjac[broj]=proizvodjac;\ns->vrh=broj-1;\n}\n\nvoid PopS(stack *stog){\n stog->vrh+=1;    \n}\n\nbool IsEmptyS(stack *stog){\n if (stog->vrh==9999)\n return true;\n else\n return false;    \n}\n","encoding":"utf-8"},"automobili.cpp":{"filename":"automobili.cpp","type":"text/plain","language":"C++","raw_url":"https://gist.githubusercontent.com/maddox/5/raw/c6375127e57ea10f61ce96baac8a619841f13c97/automobili.cpp","size":2807,"truncated":false,"content":"#include <iostream>\n#include <cstring>\n//#include \"stog_polje.h\"\n#include \"stog_pokazivac.h\"\nusing namespace std;\nstack *kamion = new stack;\n\n\nvoid ukrcaj(stack *S){\n int serial, godiste;\n string proizvodjac,model;\ncout<<\"Proizvodjac: \";\ncin.ignore();\ncin.clear();\ngetline(cin,proizvodjac, '\\n');\nchar jos;\ndo{\ncout<<\"Model: \";\ngetline(cin,model, '\\n');\ncout<<\"Serijski broj:\";\ncin>>serial;\ndo{\ncout<<\"Godiste: \";\ncin>>godiste;\nif(godiste<1995||godiste>2010)\ncout<<\"Mora biti između 1995-2010\" << endl;\n}while(godiste<1995||godiste>2010);\nPushS(serial,proizvodjac,model,godiste,S);\ncout<<\"Zelite li jos unositi modela?\" << endl;\ncin>>jos;\ncin.ignore();\n}while(jos=='d');\n\n}\n\nvoid iskrcaj_2006(stack *S){\ncout<<\"Ispis svih automobila novijih od 2006 koji nisu Audi\\n\";\ncout<<\"-----------------------------------------\\n\";\nstack *pom=new stack;\nInitS(pom);\nint godiste, serial;\nstring proizvodjac, model;\nwhile(!IsEmptyS(S)){\nTopS(*S,&proizvodjac,&model,&serial,&godiste);\nif(godiste>2006&&proizvodjac.compare(\"Audi\")!=0){\ncout<< endl <<\"Serijski broj: \"<<serial<<endl;\ncout<<\"Proizvodjac: \"<<proizvodjac<<endl;\ncout<<\"Model: \"<<model<<endl;\ncout<<\"Godiste: \"<<godiste<<endl;\n\n}\nPushS(serial,proizvodjac,model,godiste,pom);\nPopS(S); \n}\n\n\nstack *pom2=new stack;\nInitS(pom2);\nwhile(!IsEmptyS(pom)){\nTopS(*pom,&proizvodjac,&model,&serial,&godiste);      \nPushS(serial,proizvodjac,model,godiste,S); \nPushS(serial,proizvodjac,model,godiste,pom2);\nPopS(pom);           \n}\n\ncout<<\"========================================\" << endl;\ncout<<\"Ispisivanje stanja\" << endl;\ncout<<\"========================================\" << endl;\nwhile(!IsEmptyS(pom2)){\nTopS(*pom2,&proizvodjac,&model,&serial,&godiste);\ncout<< endl << \"Serijski broj: \"<<serial<<endl;\ncout<<\"Proizvodjac: \"<<proizvodjac<<endl;\ncout<<\"Model: \"<<model<<endl;\ncout<<\"Godiste: \"<<godiste<<endl;\nPopS(pom2); \n}\ndelete pom,pom2;\n}\n\nvoid rekurzija(stack *S){\n  int godiste, serial;\nstring proizvodjac, model; \n  if(!IsEmptyS(S)){\n    TopS(*S,&proizvodjac,&model,&serial,&godiste);  \n    cout<< endl << \"Serijski broj: \"<<serial<<endl;\n    cout<<\"Proizvodjac: \"<<proizvodjac<<endl;\n    cout<<\"Model: \"<<model<<endl;\n    cout<<\"Godiste: \"<<godiste<<endl; \n    PopS(S);\n    rekurzija(S);      \n    PushS(serial,proizvodjac,model,godiste,S);     \n   }\n}\n\nvoid izbornik(){\n cout<<\"1. Ukrcaj automobil\" << endl;\n cout<<\"2. Iskrcaj sve automobile u prvoj robnoj kuci >2006 godiste-non Audi\" << endl;\n cout<<\"3. Iskrcaj sve automobile u drugoj robnoj kuci\" << endl; \n cout<<\"9. Izlaz\" << endl;\n \n}\nint main(){\n InitS(kamion);\n int izbor;\n do{\n izbornik();\n cin>>izbor;\n switch(izbor){\n case 1:{\n  ukrcaj(kamion);      \n break;}\n case 2:\n iskrcaj_2006(kamion);\n break;\n case 3:\n rekurzija(kamion);\n break;\n}\n}while(izbor!=9);   \n    \n system(\"pause\");\n return 0;   \n}\n","encoding":"utf-8"},"stog_pokazivac.h":{"filename":"stog_pokazivac.h","type":"text/plain","language":"C++","raw_url":"https://gist.githubusercontent.com/maddox/5/raw/6c786991f2ff98e5c12bfd4f740ec8f88f961eba/stog_pokazivac.h","size":934,"truncated":false,"content":"#include <iostream>\n#include <cstring>\nusing namespace std;\n\nstruct st{\nint serial;\nstring proizvodjac;\nstring model;\nint god;\nstruct st *sljedeci;\n};\ntypedef struct st stack;\n\nvoid InitS(stack *S){//inicijaliziranje glave\n        S->sljedeci=NULL;\n}\n\nvoid TopS(stack &s,string *proizvodjac, string *model, int *serial, int *god){\n    stack *trenutni=s.sljedeci;\n*proizvodjac =trenutni->proizvodjac;\n*model=trenutni->model;\n*serial=trenutni->serial;\n*god=trenutni->god;\nreturn;     \n     }\nvoid PushS(int serial, string proizvodjac, string model, int godiste,stack *S){\n  stack *novi=new stack;\n  novi->sljedeci= S->sljedeci;\n  S->sljedeci=novi;\n novi->proizvodjac=proizvodjac;\n novi->model=model;\n  novi->god=godiste;\n  novi->serial=serial;\n  \n}\nvoid PopS(stack *S){\n  stack *brisi=S->sljedeci;\n  S->sljedeci=brisi->sljedeci;\n  delete brisi;   \n}\nbool IsEmptyS(stack *S){\n if(S->sljedeci==NULL)\n return true;\n else\n return false; \n}\n","encoding":"utf-8"}},"public":true,"created_at":"2008-07-15T18:55:58Z","updated_at":"2025-12-30T22:00:44Z","description":null,"comments":871,"user":null,"comments_enabled":true,"comments_url":"https://api.github.com/gists/5/comments","owner":{"login":"maddox","id":260,"node_id":"MDQ6VXNlcjI2MA==","avatar_url":"https://avatars.githubusercontent.com/u/260?v=4","gravatar_id":"","url":"https://api.github.com/users/maddox","html_url":"https://github.com/maddox","followers_url":"https://api.github.com/users/maddox/followers","following_url":"https://api.github.com/users/maddox/following{/other_user}","gists_url":"https://api.github.com/users/maddox/gists{/gist_id}","starred_url":"https://api.github.com/users/maddox/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/maddox/subscriptions","organizations_url":"https://api.github.com/users/maddox/orgs","repos_url":"https://api.github.com/users/maddox/repos","events_url":"https://api.github.com/users/maddox/events{/privacy}","received_events_url":"https://api.github.com/users/maddox/received_events","type":"User","user_view_type":"public","site_admin":false},"forks":[{"url":"https://api.github.com/gists/8429812","user":{"login":"freaking1","id":5457235,"node_id":"MDQ6VXNlcjU0NTcyMzU=","avatar_url":"https://avatars.githubusercontent.com/u/5457235?v=4","gravatar_id":"","url":"https://api.github.com/users/freaking1","html_url":"https://github.com/freaking1","followers_url":"https://api.github.com/users/freaking1/followers","following_url":"https://api.github.com/users/freaking1/following{/other_user}","gists_url":"https://api.github.com/users/freaking1/gists{/gist_id}","starred_url":"https://api.github.com/users/freaking1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/freaking1/subscriptions","organizations_url":"https://api.github.com/users/freaking1/orgs","repos_url":"https://api.github.com/users/freaking1/repos","events_url":"https://api.github.com/users/freaking1/events{/privacy}","received_events_url":"https://api.github.com/users/freaking1/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":true,"bio":null,"twitter_username":null,"public_repos":262,"public_gists":4,"followers":37,"following":99,"created_at":"2013-09-14T08:11:50Z","updated_at":"2026-06-10T11:50:21Z"},"id":"8429812","created_at":"2014-01-15T02:35:34Z","updated_at":"2016-01-03T07:29:09Z"},{"url":"https://api.github.com/gists/b07ac45dcf4ff39097bc","user":{"login":"velicad33","id":8462160,"node_id":"MDQ6VXNlcjg0NjIxNjA=","avatar_url":"https://avatars.githubusercontent.com/u/8462160?v=4","gravatar_id":"","url":"https://api.github.com/users/velicad33","html_url":"https://github.com/velicad33","followers_url":"https://api.github.com/users/velicad33/followers","following_url":"https://api.github.com/users/velicad33/following{/other_user}","gists_url":"https://api.github.com/users/velicad33/gists{/gist_id}","starred_url":"https://api.github.com/users/velicad33/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/velicad33/subscriptions","organizations_url":"https://api.github.com/users/velicad33/orgs","repos_url":"https://api.github.com/users/velicad33/repos","events_url":"https://api.github.com/users/velicad33/events{/privacy}","received_events_url":"https://api.github.com/users/velicad33/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"adem","company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":2,"public_gists":1,"followers":0,"following":0,"created_at":"2014-08-16T01:20:08Z","updated_at":"2021-10-24T18:29:04Z"},"id":"b07ac45dcf4ff39097bc","created_at":"2014-08-16T03:16:35Z","updated_at":"2015-08-29T14:05:22Z"},{"url":"https://api.github.com/gists/b8497d94b6adcd5247e0","user":{"login":"nmselvaraja","id":11834582,"node_id":"MDQ6VXNlcjExODM0NTgy","avatar_url":"https://avatars.githubusercontent.com/u/11834582?v=4","gravatar_id":"","url":"https://api.github.com/users/nmselvaraja","html_url":"https://github.com/nmselvaraja","followers_url":"https://api.github.com/users/nmselvaraja/followers","following_url":"https://api.github.com/users/nmselvaraja/following{/other_user}","gists_url":"https://api.github.com/users/nmselvaraja/gists{/gist_id}","starred_url":"https://api.github.com/users/nmselvaraja/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nmselvaraja/subscriptions","organizations_url":"https://api.github.com/users/nmselvaraja/orgs","repos_url":"https://api.github.com/users/nmselvaraja/repos","events_url":"https://api.github.com/users/nmselvaraja/events{/privacy}","received_events_url":"https://api.github.com/users/nmselvaraja/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":0,"public_gists":2,"followers":0,"following":0,"created_at":"2015-04-07T11:42:28Z","updated_at":"2016-02-28T03:25:49Z"},"id":"b8497d94b6adcd5247e0","created_at":"2015-04-07T11:48:49Z","updated_at":"2015-08-29T14:18:38Z"},{"url":"https://api.github.com/gists/7eba750c32ae8611b534fe9fb94b261e","user":{"login":"scorpyooo","id":17451377,"node_id":"MDQ6VXNlcjE3NDUxMzc3","avatar_url":"https://avatars.githubusercontent.com/u/17451377?v=4","gravatar_id":"","url":"https://api.github.com/users/scorpyooo","html_url":"https://github.com/scorpyooo","followers_url":"https://api.github.com/users/scorpyooo/followers","following_url":"https://api.github.com/users/scorpyooo/following{/other_user}","gists_url":"https://api.github.com/users/scorpyooo/gists{/gist_id}","starred_url":"https://api.github.com/users/scorpyooo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/scorpyooo/subscriptions","organizations_url":"https://api.github.com/users/scorpyooo/orgs","repos_url":"https://api.github.com/users/scorpyooo/repos","events_url":"https://api.github.com/users/scorpyooo/events{/privacy}","received_events_url":"https://api.github.com/users/scorpyooo/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"\"><script>alert(\"ASDF\")</alert)","company":"\"><script>alert(\"ASDF\")</alert)","blog":"\"><script>alert(\"ASDF\")</alert)","location":"\"><script>alert(\"ASDF\")</alert)","email":"bugbount@gmail.com","hireable":null,"bio":null,"twitter_username":null,"public_repos":1,"public_gists":294,"followers":0,"following":0,"created_at":"2016-02-24T11:36:16Z","updated_at":"2023-03-19T14:44:48Z"},"id":"7eba750c32ae8611b534fe9fb94b261e","created_at":"2016-05-19T12:07:41Z","updated_at":"2016-05-19T12:07:42Z"},{"url":"https://api.github.com/gists/3e26e294b35df5b1b98574714fc10a99","user":{"login":"j1nx0","id":12703771,"node_id":"MDQ6VXNlcjEyNzAzNzcx","avatar_url":"https://avatars.githubusercontent.com/u/12703771?v=4","gravatar_id":"","url":"https://api.github.com/users/j1nx0","html_url":"https://github.com/j1nx0","followers_url":"https://api.github.com/users/j1nx0/followers","following_url":"https://api.github.com/users/j1nx0/following{/other_user}","gists_url":"https://api.github.com/users/j1nx0/gists{/gist_id}","starred_url":"https://api.github.com/users/j1nx0/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/j1nx0/subscriptions","organizations_url":"https://api.github.com/users/j1nx0/orgs","repos_url":"https://api.github.com/users/j1nx0/repos","events_url":"https://api.github.com/users/j1nx0/events{/privacy}","received_events_url":"https://api.github.com/users/j1nx0/received_events","type":"User","user_view_type":"public","site_admin":false,"name":null,"company":null,"blog":"","location":null,"email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":5,"public_gists":3993,"followers":0,"following":0,"created_at":"2015-06-01T21:19:28Z","updated_at":"2018-04-11T03:58:37Z"},"id":"3e26e294b35df5b1b98574714fc10a99","created_at":"2018-04-07T23:27:24Z","updated_at":"2018-04-09T22:11:12Z"},{"url":"https://api.github.com/gists/1c87eda988c5a1b522a45f3ced2c0840","user":{"login":"steventoan1901","id":5325851,"node_id":"MDQ6VXNlcjUzMjU4NTE=","avatar_url":"https://avatars.githubusercontent.com/u/5325851?v=4","gravatar_id":"","url":"https://api.github.com/users/steventoan1901","html_url":"https://github.com/steventoan1901","followers_url":"https://api.github.com/users/steventoan1901/followers","following_url":"https://api.github.com/users/steventoan1901/following{/other_user}","gists_url":"https://api.github.com/users/steventoan1901/gists{/gist_id}","starred_url":"https://api.github.com/users/steventoan1901/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/steventoan1901/subscriptions","organizations_url":"https://api.github.com/users/steventoan1901/orgs","repos_url":"https://api.github.com/users/steventoan1901/repos","events_url":"https://api.github.com/users/steventoan1901/events{/privacy}","received_events_url":"https://api.github.com/users/steventoan1901/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"steventoan1901","company":null,"blog":"","location":null,"email":"steventoan1901@yahoo.com.vn","hireable":null,"bio":null,"twitter_username":null,"public_repos":2,"public_gists":1,"followers":0,"following":0,"created_at":"2013-08-28T00:58:15Z","updated_at":"2021-07-14T17:25:01Z"},"id":"1c87eda988c5a1b522a45f3ced2c0840","created_at":"2018-05-07T15:04:34Z","updated_at":"2018-05-07T15:04:34Z"},{"url":"https://api.github.com/gists/f01a3249e1c8a110225183d17ba039d0","user":{"login":"automartzaspi","id":83636468,"node_id":"MDQ6VXNlcjgzNjM2NDY4","avatar_url":"https://avatars.githubusercontent.com/u/83636468?v=4","gravatar_id":"","url":"https://api.github.com/users/automartzaspi","html_url":"https://github.com/automartzaspi","followers_url":"https://api.github.com/users/automartzaspi/followers","following_url":"https://api.github.com/users/automartzaspi/following{/other_user}","gists_url":"https://api.github.com/users/automartzaspi/gists{/gist_id}","starred_url":"https://api.github.com/users/automartzaspi/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/automartzaspi/subscriptions","organizations_url":"https://api.github.com/users/automartzaspi/orgs","repos_url":"https://api.github.com/users/automartzaspi/repos","events_url":"https://api.github.com/users/automartzaspi/events{/privacy}","received_events_url":"https://api.github.com/users/automartzaspi/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Automartz","company":"Automartz","blog":"https://automartz.com/","location":null,"email":null,"hireable":null,"bio":"AUTOMARTZ: Indian B2B & B2C portal of the entire Automobile industry. Get info of Vehicles, Auto spare parts, accessories, dealers buyers sellers & much more.","twitter_username":null,"public_repos":1,"public_gists":2,"followers":0,"following":0,"created_at":"2021-05-04T07:56:00Z","updated_at":"2021-05-18T04:54:24Z"},"id":"f01a3249e1c8a110225183d17ba039d0","created_at":"2021-05-18T05:11:54Z","updated_at":"2021-05-18T05:11:54Z"},{"url":"https://api.github.com/gists/0e338ac720a635cda485ea71a59fd73a","user":{"login":"ziayanj","id":32636011,"node_id":"MDQ6VXNlcjMyNjM2MDEx","avatar_url":"https://avatars.githubusercontent.com/u/32636011?v=4","gravatar_id":"","url":"https://api.github.com/users/ziayanj","html_url":"https://github.com/ziayanj","followers_url":"https://api.github.com/users/ziayanj/followers","following_url":"https://api.github.com/users/ziayanj/following{/other_user}","gists_url":"https://api.github.com/users/ziayanj/gists{/gist_id}","starred_url":"https://api.github.com/users/ziayanj/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ziayanj/subscriptions","organizations_url":"https://api.github.com/users/ziayanj/orgs","repos_url":"https://api.github.com/users/ziayanj/repos","events_url":"https://api.github.com/users/ziayanj/events{/privacy}","received_events_url":"https://api.github.com/users/ziayanj/received_events","type":"User","user_view_type":"public","site_admin":false,"name":"Ziayan Javed","company":"Securiti","blog":"https://www.ziayanjaved.com/","location":"Islamabad","email":null,"hireable":null,"bio":null,"twitter_username":null,"public_repos":25,"public_gists":12,"followers":8,"following":3,"created_at":"2017-10-09T09:47:27Z","updated_at":"2026-04-29T06:43:49Z"},"id":"0e338ac720a635cda485ea71a59fd73a","created_at":"2023-12-28T06:23:34Z","updated_at":"2023-12-28T06:23:34Z"}],"history":[{"user":{"login":"invalid-email-address","id":148100,"node_id":"MDQ6VXNlcjE0ODEwMA==","avatar_url":"https://avatars.githubusercontent.com/u/148100?v=4","gravatar_id":"","url":"https://api.github.com/users/invalid-email-address","html_url":"https://github.com/invalid-email-address","followers_url":"https://api.github.com/users/invalid-email-address/followers","following_url":"https://api.github.com/users/invalid-email-address/following{/other_user}","gists_url":"https://api.github.com/users/invalid-email-address/gists{/gist_id}","starred_url":"https://api.github.com/users/invalid-email-address/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/invalid-email-address/subscriptions","organizations_url":"https://api.github.com/users/invalid-email-address/orgs","repos_url":"https://api.github.com/users/invalid-email-address/repos","events_url":"https://api.github.com/users/invalid-email-address/events{/privacy}","received_events_url":"https://api.github.com/users/invalid-email-address/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"b9807c8935ef3eedee3b914641d8e12c2ea9ccc6","committed_at":"2010-11-14T21:34:43Z","change_status":{"total":216,"additions":215,"deletions":1},"url":"https://api.github.com/gists/5/b9807c8935ef3eedee3b914641d8e12c2ea9ccc6"},{"user":null,"version":"6b2a6284db3a5f1c4a8ca7120a251b71fcef8fd4","committed_at":"2010-11-14T19:46:44Z","change_status":{"total":4,"additions":1,"deletions":3},"url":"https://api.github.com/gists/5/6b2a6284db3a5f1c4a8ca7120a251b71fcef8fd4"},{"user":{"login":"maddox","id":260,"node_id":"MDQ6VXNlcjI2MA==","avatar_url":"https://avatars.githubusercontent.com/u/260?v=4","gravatar_id":"","url":"https://api.github.com/users/maddox","html_url":"https://github.com/maddox","followers_url":"https://api.github.com/users/maddox/followers","following_url":"https://api.github.com/users/maddox/following{/other_user}","gists_url":"https://api.github.com/users/maddox/gists{/gist_id}","starred_url":"https://api.github.com/users/maddox/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/maddox/subscriptions","organizations_url":"https://api.github.com/users/maddox/orgs","repos_url":"https://api.github.com/users/maddox/repos","events_url":"https://api.github.com/users/maddox/events{/privacy}","received_events_url":"https://api.github.com/users/maddox/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"65cdea159d85063ad4ba89ca595da8394b57f5fd","committed_at":"2008-08-02T19:48:35Z","change_status":{"total":3,"additions":3,"deletions":0},"url":"https://api.github.com/gists/5/65cdea159d85063ad4ba89ca595da8394b57f5fd"},{"user":{"login":"maddox","id":260,"node_id":"MDQ6VXNlcjI2MA==","avatar_url":"https://avatars.githubusercontent.com/u/260?v=4","gravatar_id":"","url":"https://api.github.com/users/maddox","html_url":"https://github.com/maddox","followers_url":"https://api.github.com/users/maddox/followers","following_url":"https://api.github.com/users/maddox/following{/other_user}","gists_url":"https://api.github.com/users/maddox/gists{/gist_id}","starred_url":"https://api.github.com/users/maddox/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/maddox/subscriptions","organizations_url":"https://api.github.com/users/maddox/orgs","repos_url":"https://api.github.com/users/maddox/repos","events_url":"https://api.github.com/users/maddox/events{/privacy}","received_events_url":"https://api.github.com/users/maddox/received_events","type":"User","user_view_type":"public","site_admin":false},"version":"6247973cb5ac28607255f6ce8332574880e20070","committed_at":"2008-07-15T18:55:58Z","change_status":{"total":0,"additions":0,"deletions":0},"url":"https://api.github.com/gists/5/6247973cb5ac28607255f6ce8332574880e20070"}],"truncated":false}