Most of programs will not accept an email using just @localhost as domain.
So, edit /etc/hosts
file to make the domain localhost.com point to your machine, including this content to the file:
127.0.0.1 localhost.com
RAR registration data | |
WinRAR | |
Unlimited Company License | |
UID=4b914fb772c8376bf571 | |
6412212250f5711ad072cf351cfa39e2851192daf8a362681bbb1d | |
cd48da1d14d995f0bbf960fce6cb5ffde62890079861be57638717 | |
7131ced835ed65cc743d9777f2ea71a8e32c7e593cf66794343565 | |
b41bcf56929486b8bcdac33d50ecf773996052598f1f556defffbd | |
982fbe71e93df6b6346c37a3890f3c7edc65d7f5455470d13d1190 | |
6e6fb824bcf25f155547b5fc41901ad58c0992f570be1cf5608ba9 |
/// flutter_background_geolocation Hello World | |
/// https://github.com/transistorsoft/flutter_background_geolocation | |
//// | |
// For pretty-printing location JSON. Not a requirement of flutter_background_geolocation | |
// | |
import 'dart:convert'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter_background_geolocation/flutter_background_geolocation.dart' |
const waitFor = (ms) => new Promise(r => setTimeout(r, ms)) | |
const asyncForEach = async (array, callback) => { | |
for (let index = 0; index < array.length; index++) { | |
await callback(array[index], index, array) | |
} | |
} | |
const start = async () => { | |
await asyncForEach([1, 2, 3], async (num) => { | |
await waitFor(50) |
mysql database_name -u username -pPassWord -N -e 'show tables like "tableprefix\_%"' | xargs mysqldump database_name -u username -pPassWord > prefixedtable_dump.sql |
/** | |
* findSelfIntersects | |
* | |
* Detect self-intersections in a polygon. | |
* | |
* @param {object} GeoJSON polygon co-ordinates. | |
* @return {array} array of points of intersections. | |
*/ | |
var findSelfIntersects = function(geoJsonPolygon) { | |
var coordinates = geoJSON2JTS(geoJsonPolygon); |
import random | |
from random import choice | |
user_score = 0 | |
pc_score = 0 | |
usr_choice = ['paper', 'scissor', 'rock'] | |
user_name = input('Please enter your good name: ') |
class ex094morse: | |
morse_alpha = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 | |
morse_encode = ['.-', '-...', '-.-.', '-.', '.', '..-.', '--.', '....', '..', '.---', '-.-', '.-..', '--', '-.', '---', '.--.', '--.-', '.-.','...' ,'-' ,'..-' ,'...-' ,'.--' ,'-..-' ,'-.--' ,'--..' ,'-----' ,'.----','..---','...--','....-','.....','-....','--...','---..','----.'] | |
def encode(self, text): | |
store = '' | |
Most of programs will not accept an email using just @localhost as domain.
So, edit /etc/hosts
file to make the domain localhost.com point to your machine, including this content to the file:
127.0.0.1 localhost.com
// .htaccess | |
// | |
// Add this to the directory where your write.php will be stored | |
// This is an easy way to do an HTTP request to the script with the data | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
# Change the following to the base directory of this file | |
RewriteBase /clickstats/ |