Skip to content

Instantly share code, notes, and snippets.

@yasinkuyu
yasinkuyu / bootstraptable_dropdown_menu.css
Last active August 6, 2020 20:14
BootstrapTable dropdown menu visible
/* BootstrapTable dropdown menu visible */
.fixed-table-body {
overflow: visible;
}
@yasinkuyu
yasinkuyu / paribu_api
Last active March 13, 2025 13:27
Paribu Bitcoin Rates
Paribu.com - Türkiye'nin Bitcoin Borsası
2021 (update)
Api endpoint
https://v3.paribu.com/app/markets/btc-tl?interval=1000
Ticker
@yasinkuyu
yasinkuyu / luminatiproxy.py
Created September 8, 2017 21:51
Get Luminati Proxy
@yasinkuyu
def get_luminati_ip():
username = 'lum-customer-XXX-zone-XXX'
password = 'XXXX'
port = 22225
session_id = random.random()
super_proxy_url = ('http://%s-session-%s:%[email protected]:%d' %
(username, session_id, password, port))
proxy_handler = urllib2.ProxyHandler({
@yasinkuyu
yasinkuyu / desiredcapabilities.py
Created September 8, 2017 14:07
Python Selenium Luminati Proxy Desired Capabilities (Exclude localhost)
#@yasinkuyu 08/09/2017
# install luminati (https://luminati.io) proxy manager & run
from selenium import webdriver
from selenium.webdriver.common.proxy import Proxy, ProxyType
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.proxy import *
PROXY = '127.0.0.1:24000'
@yasinkuyu
yasinkuyu / luminati_proxy.py
Last active April 27, 2018 18:23
Python Selenium Limunati Proxy Manager
#@yasinkuyu 08/09/2017
# install luminati (https://luminati.io) proxy manager & run
from selenium import webdriver
from selenium.webdriver.common.proxy import Proxy, ProxyType
from selenium.webdriver.chrome.options import Options
PROXY = '127.0.0.1:24000'
@yasinkuyu
yasinkuyu / pymod.py
Last active November 28, 2017 21:29
Python If statement with modulo operator
#@yasinkuyu 08/09/2017
INDEX = 1
Continue = True
while Continue:
print INDEX
if (INDEX % 5) == 0:
print "Success"
@yasinkuyu
yasinkuyu / check_internet.py
Last active January 4, 2021 10:57
Python Check Internet Connection
#@yasinkuyu 08/09/2017
def check_internet():
url='http://www.google.com/'
timeout=5
try:
_ = requests.get(url, timeout=timeout)
return True
except requests.ConnectionError:
print("İnternet bağlantısı yok.")
@yasinkuyu
yasinkuyu / Zyxel.py
Created August 25, 2017 18:10
Selenium Python Zyxel (VMG3312-B10B) Router Reboot
def router_reset():
print "Modem resetleniyor"
driver = webdriver.Chrome('./chromedriver')
driver.get('http://192.168.1.1/login.cgi')
username = driver.find_element_by_id('username')
password = driver.find_element_by_id('userpassword')
@yasinkuyu
yasinkuyu / gist:201b6fdc99b4ce2ca993db8188e0c857
Created January 27, 2017 03:21
CSS print page hide footer/header each page
<style type="text/css" media="print">
@page {
size: a4;
margin: 8.5mm 0;
padding: 0
}
@page :first{
size: a4;
margin: 0;
margin-right: 0;
@yasinkuyu
yasinkuyu / removeextension.php
Created October 21, 2016 09:39
Regex domain remove extension
preg_split('/(?=\.[^.]+$)/', $_SERVER['HTTP_HOST']);