<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
# Copyright (c) 2013 Georgios Gousios | |
# MIT-licensed | |
# [tundo91] | |
# * Edited to import local XML files | |
# * Updated creat table procedures to support Sept.-12-2016 dataset dump version | |
create database cooking_stackexchange_com DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci; | |
use cooking_stackexchange_com; |
# Copyright (c) 2013 Georgios Gousios | |
# MIT-licensed | |
# [megansquire] Edited to handle new column names (Date instead of CreationDate) | |
create database stackoverflow DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8mb4_bin; | |
use stackoverflow; | |
create table badges ( | |
Id INT NOT NULL PRIMARY KEY, |
function transfer | |
if test (count $argv) -eq 0 | |
echo "No arguments specified. Usage:\necho transfer /tmp/test.md\ncat /tmp/test.md | transfer test.md" | |
return 1 | |
end | |
## get temporarily filename, output is written to this file show progress can be showed | |
set tmpfile ( mktemp -t transferXXX ) | |
## upload stdin or file |
import json | |
from os.path import exists | |
from selenium import webdriver | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.common.exceptions import TimeoutException | |
class GoogleGroupsScraper(object): | |
""" A simple class to scrape a google group. """ |
#!/bin/sh | |
# script to check for complete torrents in transmission folder, then stop and move them | |
# either hard-code the MOVEDIR variable here… | |
MOVEDIR=/home/mjdescy/media # the folder to move completed downloads to | |
# …or set MOVEDIR using the first command-line argument | |
# MOVEDIR=%1 | |
# use transmission-remote to get torrent list from transmission-remote list | |
# use sed to delete first / last line of output, and remove leading spaces | |
# use cut to get first field from each line |