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
[ | |
{"name": "Afghanistan", "code": "AF"}, | |
{"name": "Åland Islands", "code": "AX"}, | |
{"name": "Albania", "code": "AL"}, | |
{"name": "Algeria", "code": "DZ"}, | |
{"name": "American Samoa", "code": "AS"}, | |
{"name": "AndorrA", "code": "AD"}, | |
{"name": "Angola", "code": "AO"}, | |
{"name": "Anguilla", "code": "AI"}, | |
{"name": "Antarctica", "code": "AQ"}, |
class BaseLayout extends StatelessWidget{ | |
@override | |
Widget build(BuildContext context){ | |
return Scaffold( | |
body: Container( | |
decoration: BoxDecoration( | |
image: DecorationImage( | |
image: AssetImage("assets/images/bulb.jpg"), | |
fit: BoxFit.cover, | |
), |
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
# Fixing disk readonly | |
In summary: | |
To gain full hard drive access in a VBox guest on Win7 host | |
0. close all open programs or documents on any partition on the disk to pass-through | |
1. run DISKPART (command line utility)* | |
2. select hard drive carefully using SELECT DISK. disk numbering starts at zero. you can roughly verify your selection with LIST PARTITION if you know what your partitions should look like or LIST DISK to see disk sizes. | |
3. offline the disk using OFFLINE DISK. all volumes will disappear from windows explorer. |
printf '\00\00\00' | dd of=sublime_text bs=1 seek=290764 count=3 conv=notrunc | |
https://www.google.com/search?q=%22EA7E-890007%22 |
#!/bin/bash | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
target="${1:-/opt/sublime_merge/sublime_merge}" | |
check_sha() { | |
local sha_valid |
#!/system/bin/sh | |
# i use https://github.com/steinwurf/adb-join-wifi for auto connect to wifi | |
# tanks | |
# wait for boot to finish completely | |
while [[ `getprop sys.boot_completed` -ne 1 ]] | |
do | |
sleep 1 | |
done |