Skip to content

Instantly share code, notes, and snippets.

View farcompen's full-sized avatar

Faruk GÜNGÖR farcompen

  • Kırıkkale/Turkey
View GitHub Profile
<!DOCTYPE html>
<html>
<head><title>Privacy Policy</title></head>
<body>
<h2>Privacy Policy</h2>
<p>The LinkedIn Notlarım extension allows users to add their own personal notes to their LinkedIn profiles.
All data is stored solely in the user's browser, within Chrome Storage.
It is not shared with any third parties.</p>
</body>
</html>
@farcompen
farcompen / Nxlog Conf file Template
Created June 12, 2018 08:49
Nxlog Conf file template
## Please set the ROOT to your nxlog installation directory
#define ROOT C:\Program Files\nxlog
define ROOT C:\Program Files (x86)\nxlog
Moduledir %ROOT%\modules
CacheDir %ROOT%\data
Pidfile %ROOT%\data\nxlog.pid
SpoolDir %ROOT%\data
LogFile %ROOT%\data\nxlog.log
@farcompen
farcompen / dashornek.py
Created March 22, 2018 12:59
Creating Graphical output
# -*- coding:utf- 8 -*-
import dash
import dash_core_components as dcc
import dash_html_components as html
import bitcoin as btc
btc = btc.btcVeriAl()
app = dash.Dash()
app.layout = html.Div(children=[
@farcompen
farcompen / bitcoin.py
Last active March 22, 2018 13:03
Getting bitcoin avarage value of last 30 days
import json
import urllib2
class btcVeriAl():
def __init__(self):
print 'veriler aliniyor'
def DegerDondur(self):
req = urllib2.Request('https://blockchain.info/charts/market-price?timespan=30days&format=json')