This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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=[ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') |