Skip to content

Instantly share code, notes, and snippets.

View mfin's full-sized avatar
⛑️
Trust, but verify.

Matjaž Finžgar mfin

⛑️
Trust, but verify.
  • Ljubljana, Slovenia
  • 19:45 (UTC +02:00)
View GitHub Profile
@mfin
mfin / keybase.md
Created November 4, 2017 13:10
keybase.md

Keybase proof

I hereby claim:

  • I am mfin on github.
  • I am mfin (https://keybase.io/mfin) on keybase.
  • I have a public key ASC--srQiYySBrxGPWoyJe1OhHicuilWMpt72YE1oH3wsAo

To claim this, I am signing this object:

@mfin
mfin / ladje.py
Created January 17, 2017 19:34
Gulf of Trieste AIS vessel positioning
#!/usr/bin/env python3
import json
import requests
from bs4 import BeautifulSoup
response = {}
request = requests.get('http://bedanec.agotech.com/AIS/AIS.PHP')
@mfin
mfin / cvarlist.txt
Created October 1, 2016 21:25
All the Insurgency cvars
"Name","Value","ARCHIVE","SPONLY","GAMEDLL","CHEAT","USERINFO","NOTIFY","PROTECTED","PRINTABLEONLY","UNLOGGED","NEVER_AS_STRING","REPLICATED","DEMO","DONTRECORD","SERVER_CAN_EXECUTE","CLIENTCMD_CAN_EXECUTE","CLIENTDLL","SS","SS_ADDED",,"Help Text"
"achievement_debug","0 ",,,"GAMEDLL","CHEAT",,,,,,,"REPLICATED",,,,,,,,,"Turn on achievement debug msgs."
"achievement_disable","0 ",,,"GAMEDLL","CHEAT",,,,,,,"REPLICATED",,,,,,,,,"Turn off achievements."
"ai_debug_los","0 ",,,"GAMEDLL","CHEAT",,,,,,,,,,,,,,,,"NPC Line-Of-Sight debug mode. If 1, solid entities that block NPC LOC will be highlighted with white bounding boxes. If 2, it'l"
"ai_debug_ragdoll_magnets","0 ",,,"GAMEDLL",,,,,,,,,,,,,,,,,""
"ai_debug_shoot_positions","0 ",,,"GAMEDLL","CHEAT",,,,,,,"REPLICATED",,,,,,,,,""
"ai_debug_speech","0 ",,,"GAMEDLL",,,,,,,,,,,,,,,,,""
"ai_expression_frametime","0 ",,,"GAMEDLL",,,,,,,,,,,,,,,,,"Maximum frametime to still play background expressions."
"ai_expression_optimization"
@mfin
mfin / index.html
Created May 30, 2012 21:06
Jekyll - posts by year
<ul class="posts">
<span>Articles</span>
{% for post in site.posts %}
{% unless post.next %}
<div class="line"><span>{{ post.date | date: '%Y' }}</span></div>
{% else %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
{% if year != nyear %}
<div class="line"><span>{{ post.date | date: '%Y' }}</span></div>