This file contains 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
<?php | |
/* Terminal sript for fast searching of the exploit-db.com/search page | |
* | |
* Requires: php5, curl, php-cli, w3m (use sudo apt-get install programName) | |
* | |
* For defaults just leave questions blank & press enter. | |
* | |
* Notes for improvement: | |
* > No pagination support (only shows page one of results) | |
* > Writes search result to a file- this is messy, must be better way |
This file contains 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
function openerp_pos_devices(instance,module){ //module is instance.point_of_sale | |
var _t = instance.web._t; | |
// the JobQueue schedules a sequence of 'jobs'. each job is | |
// a function returning a deferred. the queue waits for each job to finish | |
// before launching the next. Each job can also be scheduled with a delay. | |
// the is used to prevent parallel requests to the proxy. | |
module.JobQueue = function(){ |
This file contains 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
array = ['Tree','Log','Table','Chair'] | |
myVar = 'Cat' | |
if myVar not in array: | |
print "It's not in the array!" | |
myVar = '' |
This file contains 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 -*- | |
""" | |
Subscriber Matching Service | |
~~~~~ | |
Abstract interface for matching subscribers from arbitary payment | |
information providers, payment institutions, billing systems. | |
:copyright: © 2018 Karma Computing. | |
:license: GPLv3, see LICENSE for more details. | |
""" | |
from __future__ import absolute_import |
This file contains 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 os | |
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
from selenium.webdriver.support.select import Select | |
code = input("What's the code?") | |
fp = webdriver.FirefoxProfile() |
This file contains 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 urllib2 | |
from bs4 import BeautifulSoup | |
import json | |
import re | |
#fp = open('soup.txt') | |
#doc = fp.read() | |
response = urllib2.urlopen('https://www.bnpparibas.dz/trouver-une-agence/') | |
doc = response.read() |
This file contains 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
''' | |
You need to install pythin requests library for this to work | |
e.g. pip install requests | |
You also need to use python3 | |
''' | |
import requests | |
consumer_key = input("Consumer Key --> ") | |
username = input("Username --> ") | |
password = input("Password --> ") |
This file contains 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
#!/env/python | |
# coding=utf8 | |
""" | |
Converting Degrees, Minutes, Seconds formatted coordinate strings to decimal. | |
Formula: | |
DEC = (DEG + (MIN * 1/60) + (SEC * 1/60 * 1/60)) | |
Assumes S/W are negative. |
This file contains 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
from pprint import pprint | |
import random | |
#Order of importance | |
suit = ['ace', 2, 3, 4, 5, 6, 7, 8, 9, 10, 'jack', 'queen', 'king'] | |
def build_pack(): | |
''' Builds and returns a pack of sorted cards''' | |
cards = [] # Empty list of cards to be built | |
# Build hearts |
This file contains 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
# Create a customer | |
CONNECT_ACCOUNT_ID=acct_abc123 | |
CUSTOMER_ID=`stripe customers create --stripe-account=$CONNECT_ACCOUNT_ID | jq -r .id` | |
# Create a payment method | |
PAYMENT_METHOD=`stripe payment_methods create --stripe-account=$CONNECT_ACCOUNT_ID \ | |
--type=card \ | |
-d "card[number]"=4242424242424242 \ | |
-d "card[exp_month]"=11 \ | |
-d "card[exp_year]"=2021 \ |
OlderNewer