mkdir ~/Mirror
cd ~/Mirror
httrack --connection-per-second=8 --sockets=8 --keep-alive --display --verbose --advanced-progressinfo --disable-security-limits -i -s0 -m -F 'Mozilla/5.0 (X11;U; Linux i686; en-GB; rv:1.9.1) Gecko/20090624 Ubuntu/9.04 (jaunty) Firefox/3.5' -#L999999 http://domain.com
<?php | |
$string = '{{The|A}} {{quick|speedy|fast}} {{brown|black|red}} {{fox|wolf}} {{jumped|bounded|hopped|skipped}} over the {{lazy|tired}} {{dog|hound}}'; | |
echo '<p>'; | |
for($i = 1; $i <= 5; $i++) | |
{ | |
echo Spinner::detect($string, false).'<br />'; | |
// or Spinner::flat($string, false).'<br />'; |
<?PHP | |
/** | |
* Spintax - A helper class to process Spintax strings. | |
* @name Spintax | |
* @author Jason Davis - https://www.codedevelopr.com/ | |
* Tutorial: https://www.codedevelopr.com/articles/php-spintax-class/ | |
*/ | |
class Spintax | |
{ | |
public function process($text) |
Do you ever think about how to clean a dishwasher? Maybe it’s a little bit strange at the first time. Why do i need to clean something that is for cleaning something? Remember, dishwasher is a machine that’s need some treatment to make it keep smooth when doing the job and its not enough just with hot water and soap only. Because leftover food scraps and other grime doesn’t magically disappear. Keeping the dishwasher in your kitchen stays clean will give you a lot of benefit. For example, this will extend the service life of your machine and all dishes remains hygienic.
Now prepare yourself, and read this guide how to clean dishwasher step by step.
What you need?
1 cup distilled white vinegar. This is one of the most versatile liquids in our life except water of course. We can also use it for cooking and killing weeds! 1 cup baking soda. Combination between baking soda and white vinegar will give you super clean
<?php | |
/** | |
* Gets the value of an environment variable. Supports boolean, empty and null. | |
* | |
* @param string $key | |
* @param mixed $default | |
* @return mixed | |
*/ | |
function env($key, $default = null) | |
{ |
from scrapy.spider import Spider | |
from scrapy.contrib.spiders import CrawlSpider, Rule | |
from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor | |
from scrapy.selector import Selector | |
from scrapy.item import Item, Field | |
import urllib | |
class Question(Item): | |
tags = Field() | |
answers = Field() |
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 |
# Hostname can be anything. E.g. "vps", "zeus", "jupiter" | |
# FQDN can be any domain that you own and doesn't have to be hosted on this server | |
HOSTNAME=rafa | |
HOSTNAME_FQDN=sub.domain.com | |
SERVER_IP="0.0.0.0" | |
SSHD_PORT=22 | |
# Set an admin email account to be used for various system notifications and alerts | |
ADMIN_EMAIL="[email protected]" |
# Given | |
Given I am on [the] homepage | |
Given I am on "url" | |
# When | |
When I go to [the] homepage | |
When I go to "url" | |
When I reload the page |