Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Rabisu - Hosting Solutions
Shells Virtual Desktop
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Black Friday 2020 - NVMe and Storage deals - deploy worldwide

16869717374151

Comments

  • echo ""
    echo "+++ Setting up wireguard +++"
    echo ""
    
    mkdir /etc/wireguard 2>/dev/null
    cp wg0.conf /etc/wireguard/
    apk add wireguard-tools-wg wireguard-vanilla nfs-utils
    rc-update add nfsmount
    rc-update add rpc.statd
    rc-service rpc.statd start
    
    cat <<'EOT1' >> /etc/network/interfaces
    auto wg0
    iface wg0 inet static
            address 10.1.0.MYNODEID
            netmask 255.255.255.0
            pre-up ip link add dev wg0 type wireguard
            pre-up wg setconf wg0 /etc/wireguard/wg0.conf
            post-up ip route add 10.1.0.0/24 dev wg0
            post-down ip link delete dev wg0
    EOT1
    echo -n "What is the node ID for this wireguard client [1]: "
    read nodeid
    wg genkey | tee privatekey | wg pubkey > publickey
    pkey=`cat privatekey`
    #rm -f privatekey
    sed -i -e "s,MYPRIVATEKEY,${pkey}," /etc/wireguard/wg0.conf
    sed -i -e "s/MYNODEID/${nodeid}/" /etc/wireguard/wg0.conf /etc/network/interfaces
    
  • echo ""
    echo "+++ Creating NFS mount script +++"
    echo ""
    
    mkdir /backup
    echo "10.1.0.1:/backup/${nodeid} /backup nfs defaults,vers=3,_netdev 0 0" >> /etc/fstab
    
    pubkey=`cat publickey`
    echo "Script to run on NFS server node:"
    echo ""
    echo "mkdir /backup/${nodeid}"
    echo "echo \"/backup/${nodeid} 10.1.0.${nodeid}(rw,sync,no_root_squash)\" >> /etc/exports"
    echo "echo \"\" >> /etc/wireguard/wg0.conf"
    echo "echo \"[Peer]\" >> /etc/wireguard/wg0.conf"
    echo "echo \"PublicKey = ${pubkey}\" >> /etc/wireguard/wg0.conf"
    echo "echo \"AllowedIPs = 10.1.0.${nodeid}/32\" >> /etc/wireguard/wg0.conf"
    echo "systemctl restart wg-quick@wg0"
    echo "systemctl restart nfs"
    echo ""
    
  • @tetech said:

    echo ""
    echo "+++ Setting up wireguard +++"
    echo ""
    
    mkdir /etc/wireguard 2>/dev/null
    cp wg0.conf /etc/wireguard/
    apk add wireguard-tools-wg wireguard-vanilla nfs-utils
    rc-update add nfsmount
    rc-update add rpc.statd
    rc-service rpc.statd start
    
    cat <<'EOT1' >> /etc/network/interfaces
    auto wg0
    iface wg0 inet static
            address 10.1.0.MYNODEID
            netmask 255.255.255.0
            pre-up ip link add dev wg0 type wireguard
            pre-up wg setconf wg0 /etc/wireguard/wg0.conf
            post-up ip route add 10.1.0.0/24 dev wg0
            post-down ip link delete dev wg0
    EOT1
    echo -n "What is the node ID for this wireguard client [1]: "
    read nodeid
    wg genkey | tee privatekey | wg pubkey > publickey
    pkey=`cat privatekey`
    #rm -f privatekey
    sed -i -e "s,MYPRIVATEKEY,${pkey}," /etc/wireguard/wg0.conf
    sed -i -e "s/MYNODEID/${nodeid}/" /etc/wireguard/wg0.conf /etc/network/interfaces
    

    @tetech I'd recommend using wg-quick rather than modifying /etc/network/interfaces. It's usually more reliable. Just run:

    sudo systemctl enable wg-quick@wg0
    

    once you've created /etc/wireguard/wg0.conf. No need to modify /etc/network/interfaces.

    Thanked by 2darkimmortal tetech
  • @kend said: But this need to be the two of them hosted in the same data center if private ip is used, right?

    Yes

  • @tetech said:

    echo ""
    echo "+++ Setting up wireguard +++"
    echo ""
    
    mkdir /etc/wireguard 2>/dev/null
    cp wg0.conf /etc/wireguard/
    apk add wireguard-tools-wg wireguard-vanilla nfs-utils
    rc-update add nfsmount
    rc-update add rpc.statd
    rc-service rpc.statd start
    
    cat <<'EOT1' >> /etc/network/interfaces
    auto wg0
    iface wg0 inet static
            address 10.1.0.MYNODEID
            netmask 255.255.255.0
            pre-up ip link add dev wg0 type wireguard
            pre-up wg setconf wg0 /etc/wireguard/wg0.conf
            post-up ip route add 10.1.0.0/24 dev wg0
            post-down ip link delete dev wg0
    EOT1
    echo -n "What is the node ID for this wireguard client [1]: "
    read nodeid
    wg genkey | tee privatekey | wg pubkey > publickey
    pkey=`cat privatekey`
    #rm -f privatekey
    sed -i -e "s,MYPRIVATEKEY,${pkey}," /etc/wireguard/wg0.conf
    sed -i -e "s/MYNODEID/${nodeid}/" /etc/wireguard/wg0.conf /etc/network/interfaces
    

    @Nyr has written a much simpler script here
    https://github.com/Nyr/wireguard-install

    Thanked by 2arda vimalware
  • @hosthatch I was a little late for the game in ordering. Since the HK VMs are pre-ordered, am I ok on this? Mainly interested in those.

  • @Daniel15 said:

    @tetech I'd recommend using wg-quick rather than modifying /etc/network/interfaces. It's usually more reliable. Just run:

    sudo systemctl enable wg-quick@wg0
    

    once you've created /etc/wireguard/wg0.conf. No need to modify /etc/network/interfaces.

    Above is written for Alpine (doesn't everyone put that on their VPS?) which does not come with wg-quick. If it is available then yes I agree with you. Below is my CentOS 7 version:

    echo ""
    echo "+++ Setting up wireguard +++"
    echo ""
    
    mkdir /etc/wireguard 2>/dev/null
    cp wg0.conf /etc/wireguard/
    yum install yum-utils epel-release gnupg2 nfs-utils
    yum-config-manager --setopt=centosplus.includepkgs=kernel-plus --enablerepo=centosplus --save
    sed -e 's/^DEFAULTKERNEL=kernel$/DEFAULTKERNEL=kernel-plus/' -i /etc/sysconfig/kernel
    yum install kernel-plus wireguard-tools
    
    systemctl enable wg-quick@wg0
    
    echo -n "What is the node ID for this wireguard client [1]: "
    read nodeid
    wg genkey | tee privatekey | wg pubkey > publickey
    pkey=`cat privatekey`
    #rm -f privatekey
    sed -i -e "s,MYPRIVATEKEY,${pkey}," /etc/wireguard/wg0.conf
    sed -i -e "s/MYNODEID/${nodeid}/" /etc/wireguard/wg0.conf
    

    @host4cheap said: @Nyr has written a much simpler script

    Above is an extract from literally a few thousand lines of setup code which also does stuff like set up tinc meshes on an LXC bridge. It is intended to give a rough idea of what is involved. If you want the simplest thing or a recipe then look somewhere else like what Nyr did. I do not intend to provide that.

  • tetechtetech Member
    edited December 2020

    My server from the first post has been deployed.

    Edited to add: I am only saying this because I did not see anyone else reporting they have received a BF server. Not my intention to start the trend of 1,000 posts saying it!

  • Hong Kong is still on the 31st of December, ahhhh, can't wait!

  • yongsikleeyongsiklee Member, Host Rep

    Starting from 10tb with a few machines,

    for $110 per year, terminating in 20 seconds, on two occasions,

    And afterwards,

    for $190 per year, lasting for 12 hours, for Back Friday, is not a very kind human spirit.

    Thank you for giving me first hope, and then despair.

    Good bye, Hosthatch.

    *BTW. Thank you, Servarica.

  • nulldevnulldev Member
    edited December 2020

    @yongsiklee said:
    for $190 per year, lasting for 12 hours, for Back Friday, is not a very kind human spirit.

    Good bye, Hosthatch.

    *BTW. Thank you, Servarica.

    ???

    $190 per year is still only $1.58/TB/month. I'd say that's still in "very kind human spirit" as Servarica's prices don't even come close.

    Thanked by 1Chronic
  • @yongsiklee said:
    Starting from 10tb with a few machines,

    for $110 per year, terminating in 20 seconds, on two occasions,

    And afterwards,

    for $190 per year, lasting for 12 hours, for Back Friday, is not a very kind human spirit.

    Thank you for giving me first hope, and then despair.

    Good bye, Hosthatch.

    *BTW. Thank you, Servarica.

    Whatever works for you, man!

    Thanked by 3yongsiklee tetech Ouji
  • @tetech said: My server from the first post has been deployed.

    in what location?
    I think they (hosthatch) count how many clients ordered in each location servers, and purchase them and setup them.

  • yongsikleeyongsiklee Member, Host Rep

    @nulldev said:

    @yongsiklee said:
    for $190 per year, lasting for 12 hours, for Back Friday, is not a very kind human spirit.

    Good bye, Hosthatch.

    *BTW. Thank you, Servarica.

    ???

    $190 per year is still only $1.58/TB/month. I'd say that's still in "very kind human spirit" as Servarica's prices don't even come close.

    Servarica has:

    4 CPU cores
    6 GB RAM
    best network
    You pay Monthly.

    Hosthatch has:

    2 CPU
    2 GB RAM
    You pay $190 Yearly
    Not knowing how the service will go ending up and what situation you will end up with the server.

    So the number is not everything.

  • tetechtetech Member
    edited December 2020

    @desperand said:

    @tetech said: My server from the first post has been deployed.

    in what location?
    I think they (hosthatch) count how many clients ordered in each location servers, and purchase them and setup them.

    Zürich. No way they are purchasing equipment after taking orders. That is a ridiculous claim. It would take way more than a few days to rack stuff, not to mention customs clearance. Stuff has been in place for weeks if not months.

  • Zurich

    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    #              Yet-Another-Bench-Script              #
    #                     v2020-11-20                    #
    # https://github.com/masonr/yet-another-bench-script #
    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    
    Wed 02 Dec 2020 02:36:14 AM UTC
    
    Basic System Information:
    ---------------------------------
    Processor  : Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz
    CPU cores  : 1 @ 2999.834 MHz
    AES-NI     : ✔ Enabled
    VM-x/AMD-V : ❌ Disabled
    RAM        : 1.9 GiB
    Swap       : 2.0 GiB
    Disk       : 19.6 GiB
    
    fio Disk Speed Tests (Mixed R/W 50/50):
    ---------------------------------
    Block Size | 4k            (IOPS) | 64k           (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 186.73 MB/s  (46.6k) | 1.34 GB/s    (20.9k)
    Write      | 187.22 MB/s  (46.8k) | 1.35 GB/s    (21.1k)
    Total      | 373.95 MB/s  (93.4k) | 2.69 GB/s    (42.0k)
               |                      |
    Block Size | 512k          (IOPS) | 1m            (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 901.93 MB/s   (1.7k) | 1.75 GB/s     (1.7k)
    Write      | 949.85 MB/s   (1.8k) | 1.86 GB/s     (1.8k)
    Total      | 1.85 GB/s     (3.6k) | 3.61 GB/s     (3.5k)
    
    iperf3 Network Speed Tests (IPv4):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 939 Mbits/sec   | 1.87 Gbits/sec
    Online.net      | Paris, FR (10G)           | 944 Mbits/sec   | 1.87 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 935 Mbits/sec   | 1.87 Gbits/sec
    Performing IPv4 iperf3 recv test from Biznet (Attempt #6 of 10)...
    Performing IPv4 iperf3 recv test from Biznet (Attempt #7 of 10)...
    Biznet          | Jakarta, Indonesia (1G)   | busy            | busy
    Clouvider       | NYC, NY, US (10G)         | 888 Mbits/sec   | 1.76 Gbits/sec
    Velocity Online | Tallahassee, FL, US (10G) | 739 Mbits/sec   | 1.40 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 831 Mbits/sec   | 849 Mbits/sec
    
    iperf3 Network Speed Tests (IPv6):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 925 Mbits/sec   | 1.84 Gbits/sec
    Online.net      | Paris, FR (10G)           | 926 Mbits/sec   | 1.83 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 922 Mbits/sec   | 1.84 Gbits/sec
    Clouvider       | NYC, NY, US (10G)         | 876 Mbits/sec   | 1.72 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 823 Mbits/sec   | busy
    
    Geekbench 5 Benchmark Test:
    ---------------------------------
    Test            | Value
                    |
    Single Core     | 603
    Multi Core      | 621
    Full Test       | https://browser.geekbench.com/v5/cpu/5107784
    
  • K4Y5K4Y5 Member
    edited December 2020

    @Kassem said:
    Zurich

    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    #              Yet-Another-Bench-Script              #
    #                     v2020-11-20                    #
    # https://github.com/masonr/yet-another-bench-script #
    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    
    Wed 02 Dec 2020 02:36:14 AM UTC
    
    Basic System Information:
    ---------------------------------
    Processor  : Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz
    CPU cores  : 1 @ 2999.834 MHz
    AES-NI     : ✔ Enabled
    VM-x/AMD-V : ❌ Disabled
    RAM        : 1.9 GiB
    Swap       : 2.0 GiB
    Disk       : 19.6 GiB
    
    fio Disk Speed Tests (Mixed R/W 50/50):
    ---------------------------------
    Block Size | 4k            (IOPS) | 64k           (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 186.73 MB/s  (46.6k) | 1.34 GB/s    (20.9k)
    Write      | 187.22 MB/s  (46.8k) | 1.35 GB/s    (21.1k)
    Total      | 373.95 MB/s  (93.4k) | 2.69 GB/s    (42.0k)
               |                      |
    Block Size | 512k          (IOPS) | 1m            (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 901.93 MB/s   (1.7k) | 1.75 GB/s     (1.7k)
    Write      | 949.85 MB/s   (1.8k) | 1.86 GB/s     (1.8k)
    Total      | 1.85 GB/s     (3.6k) | 3.61 GB/s     (3.5k)
    
    iperf3 Network Speed Tests (IPv4):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 939 Mbits/sec   | 1.87 Gbits/sec
    Online.net      | Paris, FR (10G)           | 944 Mbits/sec   | 1.87 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 935 Mbits/sec   | 1.87 Gbits/sec
    Performing IPv4 iperf3 recv test from Biznet (Attempt #6 of 10)...
    Performing IPv4 iperf3 recv test from Biznet (Attempt #7 of 10)...
    Biznet          | Jakarta, Indonesia (1G)   | busy            | busy
    Clouvider       | NYC, NY, US (10G)         | 888 Mbits/sec   | 1.76 Gbits/sec
    Velocity Online | Tallahassee, FL, US (10G) | 739 Mbits/sec   | 1.40 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 831 Mbits/sec   | 849 Mbits/sec
    
    iperf3 Network Speed Tests (IPv6):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 925 Mbits/sec   | 1.84 Gbits/sec
    Online.net      | Paris, FR (10G)           | 926 Mbits/sec   | 1.83 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 922 Mbits/sec   | 1.84 Gbits/sec
    Clouvider       | NYC, NY, US (10G)         | 876 Mbits/sec   | 1.72 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 823 Mbits/sec   | busy
    
    Geekbench 5 Benchmark Test:
    ---------------------------------
    Test            | Value
                    |
    Single Core     | 603
    Multi Core      | 621
    Full Test       | https://browser.geekbench.com/v5/cpu/5107784
    

    Prem, indeed.

    @yongsiklee said:

    @nulldev said:

    @yongsiklee said:
    for $190 per year, lasting for 12 hours, for Back Friday, is not a very kind human spirit.

    Good bye, Hosthatch.

    *BTW. Thank you, Servarica.

    ???

    $190 per year is still only $1.58/TB/month. I'd say that's still in "very kind human spirit" as Servarica's prices don't even come close.

    Servarica has:

    4 CPU cores
    6 GB RAM
    best network
    You pay Monthly.

    Hosthatch has:

    2 CPU
    2 GB RAM
    You pay $190 Yearly
    Not knowing how the service will go ending up and what situation you will end up with the server.

    So the number is not everything.

    Network quality is subjective. One can't be based out of Zimbabwe and expect full Gbit throughput and sub 50ms latency to Seattle :lol:

  • yongsikleeyongsiklee Member, Host Rep

    @K4Y5 said:

    @Kassem said:
    Zurich

    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    #              Yet-Another-Bench-Script              #
    #                     v2020-11-20                    #
    # https://github.com/masonr/yet-another-bench-script #
    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    
    Wed 02 Dec 2020 02:36:14 AM UTC
    
    Basic System Information:
    ---------------------------------
    Processor  : Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz
    CPU cores  : 1 @ 2999.834 MHz
    AES-NI     : ✔ Enabled
    VM-x/AMD-V : ❌ Disabled
    RAM        : 1.9 GiB
    Swap       : 2.0 GiB
    Disk       : 19.6 GiB
    
    fio Disk Speed Tests (Mixed R/W 50/50):
    ---------------------------------
    Block Size | 4k            (IOPS) | 64k           (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 186.73 MB/s  (46.6k) | 1.34 GB/s    (20.9k)
    Write      | 187.22 MB/s  (46.8k) | 1.35 GB/s    (21.1k)
    Total      | 373.95 MB/s  (93.4k) | 2.69 GB/s    (42.0k)
               |                      |
    Block Size | 512k          (IOPS) | 1m            (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 901.93 MB/s   (1.7k) | 1.75 GB/s     (1.7k)
    Write      | 949.85 MB/s   (1.8k) | 1.86 GB/s     (1.8k)
    Total      | 1.85 GB/s     (3.6k) | 3.61 GB/s     (3.5k)
    
    iperf3 Network Speed Tests (IPv4):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 939 Mbits/sec   | 1.87 Gbits/sec
    Online.net      | Paris, FR (10G)           | 944 Mbits/sec   | 1.87 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 935 Mbits/sec   | 1.87 Gbits/sec
    Performing IPv4 iperf3 recv test from Biznet (Attempt #6 of 10)...
    Performing IPv4 iperf3 recv test from Biznet (Attempt #7 of 10)...
    Biznet          | Jakarta, Indonesia (1G)   | busy            | busy
    Clouvider       | NYC, NY, US (10G)         | 888 Mbits/sec   | 1.76 Gbits/sec
    Velocity Online | Tallahassee, FL, US (10G) | 739 Mbits/sec   | 1.40 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 831 Mbits/sec   | 849 Mbits/sec
    
    iperf3 Network Speed Tests (IPv6):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 925 Mbits/sec   | 1.84 Gbits/sec
    Online.net      | Paris, FR (10G)           | 926 Mbits/sec   | 1.83 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 922 Mbits/sec   | 1.84 Gbits/sec
    Clouvider       | NYC, NY, US (10G)         | 876 Mbits/sec   | 1.72 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 823 Mbits/sec   | busy
    
    Geekbench 5 Benchmark Test:
    ---------------------------------
    Test            | Value
                    |
    Single Core     | 603
    Multi Core      | 621
    Full Test       | https://browser.geekbench.com/v5/cpu/5107784
    

    Prem, indeed.

    @yongsiklee said:

    @nulldev said:

    @yongsiklee said:
    for $190 per year, lasting for 12 hours, for Back Friday, is not a very kind human spirit.

    Good bye, Hosthatch.

    *BTW. Thank you, Servarica.

    ???

    $190 per year is still only $1.58/TB/month. I'd say that's still in "very kind human spirit" as Servarica's prices don't even come close.

    Servarica has:

    4 CPU cores
    6 GB RAM
    best network
    You pay Monthly.

    Hosthatch has:

    2 CPU
    2 GB RAM
    You pay $190 Yearly
    Not knowing how the service will go ending up and what situation you will end up with the server.

    So the number is not everything.

    Network quality is subjective. One can't be based out of Zimbabwe and expect full Gbit throughput and sub 50ms latency to Seattle :lol:

    Of course. Do you live at around Zimbabwe?

  • @yongsiklee said:

    @K4Y5 said:

    @Kassem said:
    Zurich

    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    #              Yet-Another-Bench-Script              #
    #                     v2020-11-20                    #
    # https://github.com/masonr/yet-another-bench-script #
    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    
    Wed 02 Dec 2020 02:36:14 AM UTC
    
    Basic System Information:
    ---------------------------------
    Processor  : Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz
    CPU cores  : 1 @ 2999.834 MHz
    AES-NI     : ✔ Enabled
    VM-x/AMD-V : ❌ Disabled
    RAM        : 1.9 GiB
    Swap       : 2.0 GiB
    Disk       : 19.6 GiB
    
    fio Disk Speed Tests (Mixed R/W 50/50):
    ---------------------------------
    Block Size | 4k            (IOPS) | 64k           (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 186.73 MB/s  (46.6k) | 1.34 GB/s    (20.9k)
    Write      | 187.22 MB/s  (46.8k) | 1.35 GB/s    (21.1k)
    Total      | 373.95 MB/s  (93.4k) | 2.69 GB/s    (42.0k)
               |                      |
    Block Size | 512k          (IOPS) | 1m            (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 901.93 MB/s   (1.7k) | 1.75 GB/s     (1.7k)
    Write      | 949.85 MB/s   (1.8k) | 1.86 GB/s     (1.8k)
    Total      | 1.85 GB/s     (3.6k) | 3.61 GB/s     (3.5k)
    
    iperf3 Network Speed Tests (IPv4):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 939 Mbits/sec   | 1.87 Gbits/sec
    Online.net      | Paris, FR (10G)           | 944 Mbits/sec   | 1.87 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 935 Mbits/sec   | 1.87 Gbits/sec
    Performing IPv4 iperf3 recv test from Biznet (Attempt #6 of 10)...
    Performing IPv4 iperf3 recv test from Biznet (Attempt #7 of 10)...
    Biznet          | Jakarta, Indonesia (1G)   | busy            | busy
    Clouvider       | NYC, NY, US (10G)         | 888 Mbits/sec   | 1.76 Gbits/sec
    Velocity Online | Tallahassee, FL, US (10G) | 739 Mbits/sec   | 1.40 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 831 Mbits/sec   | 849 Mbits/sec
    
    iperf3 Network Speed Tests (IPv6):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 925 Mbits/sec   | 1.84 Gbits/sec
    Online.net      | Paris, FR (10G)           | 926 Mbits/sec   | 1.83 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 922 Mbits/sec   | 1.84 Gbits/sec
    Clouvider       | NYC, NY, US (10G)         | 876 Mbits/sec   | 1.72 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 823 Mbits/sec   | busy
    
    Geekbench 5 Benchmark Test:
    ---------------------------------
    Test            | Value
                    |
    Single Core     | 603
    Multi Core      | 621
    Full Test       | https://browser.geekbench.com/v5/cpu/5107784
    

    Prem, indeed.

    @yongsiklee said:

    @nulldev said:

    @yongsiklee said:
    for $190 per year, lasting for 12 hours, for Back Friday, is not a very kind human spirit.

    Good bye, Hosthatch.

    *BTW. Thank you, Servarica.

    ???

    $190 per year is still only $1.58/TB/month. I'd say that's still in "very kind human spirit" as Servarica's prices don't even come close.

    Servarica has:

    4 CPU cores
    6 GB RAM
    best network
    You pay Monthly.

    Hosthatch has:

    2 CPU
    2 GB RAM
    You pay $190 Yearly
    Not knowing how the service will go ending up and what situation you will end up with the server.

    So the number is not everything.

    Network quality is subjective. One can't be based out of Zimbabwe and expect full Gbit throughput and sub 50ms latency to Seattle :lol:

    Of course. Do you live at around Zimbabwe?

    I would like that for the experience. But sadly, I don't.

  • hosthatchhosthatch Patron Provider, Top Host, Veteran
    edited December 2020

    @yongsiklee said: for $110 per year, terminating in 20 seconds, on two occasions,

    Sorry - what?

    You ordered a VM at $110, we 'terminated' it twice, and raised the price to $190 per year? If you can prove this statement with screenshots of the emails of these $110 invoices, I will personally send $500 to your paypal.

    I just logged on to LES to find a competitor I had respect for saying we are the new Racknerd as a joke because it wouldn't make financial sense for him to offer similar plans, and another user complaining about "hosthatch must be overselling because I didn't get my deal at the price I wanted because I was thinking too long"....how you oversell thick provisioned storage is beyond me, but alright why not. That was a horrible 10 minutes experience I feel like I didn't deserve.

    Just because you missed out on a deal that other people got, does not mean the world has done you a disfavor. Please stop acting bitter, life hasn't ended.

    @desperand said:

    @tetech said: My server from the first post has been deployed.

    in what location?
    I think they (hosthatch) count how many clients ordered in each location servers, and purchase them and setup them.

    ?

    I think you are wrong.

    Actually, I know you are wrong.

    @yongsiklee said: Servarica has:

    4 CPU cores
    6 GB RAM
    best network
    You pay Monthly.

    Hosthatch has:

    2 CPU
    2 GB RAM
    You pay $190 Yearly
    Not knowing how the service will go ending up and what situation you will end up with the >server.

    So the number is not everything.

    Excellent logic, cannot argue with that. Wish you the best.

    Going to take a break from doing PR and hand it over to my partner after this season is over. I didn't think it would be this horrible after being somewhat inactive for an year.

  • yongsikleeyongsiklee Member, Host Rep

    @K4Y5 said:

    @yongsiklee said:

    @K4Y5 said:

    @Kassem said:
    Zurich

    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    #              Yet-Another-Bench-Script              #
    #                     v2020-11-20                    #
    # https://github.com/masonr/yet-another-bench-script #
    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    
    Wed 02 Dec 2020 02:36:14 AM UTC
    
    Basic System Information:
    ---------------------------------
    Processor  : Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz
    CPU cores  : 1 @ 2999.834 MHz
    AES-NI     : ✔ Enabled
    VM-x/AMD-V : ❌ Disabled
    RAM        : 1.9 GiB
    Swap       : 2.0 GiB
    Disk       : 19.6 GiB
    
    fio Disk Speed Tests (Mixed R/W 50/50):
    ---------------------------------
    Block Size | 4k            (IOPS) | 64k           (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 186.73 MB/s  (46.6k) | 1.34 GB/s    (20.9k)
    Write      | 187.22 MB/s  (46.8k) | 1.35 GB/s    (21.1k)
    Total      | 373.95 MB/s  (93.4k) | 2.69 GB/s    (42.0k)
               |                      |
    Block Size | 512k          (IOPS) | 1m            (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 901.93 MB/s   (1.7k) | 1.75 GB/s     (1.7k)
    Write      | 949.85 MB/s   (1.8k) | 1.86 GB/s     (1.8k)
    Total      | 1.85 GB/s     (3.6k) | 3.61 GB/s     (3.5k)
    
    iperf3 Network Speed Tests (IPv4):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 939 Mbits/sec   | 1.87 Gbits/sec
    Online.net      | Paris, FR (10G)           | 944 Mbits/sec   | 1.87 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 935 Mbits/sec   | 1.87 Gbits/sec
    Performing IPv4 iperf3 recv test from Biznet (Attempt #6 of 10)...
    Performing IPv4 iperf3 recv test from Biznet (Attempt #7 of 10)...
    Biznet          | Jakarta, Indonesia (1G)   | busy            | busy
    Clouvider       | NYC, NY, US (10G)         | 888 Mbits/sec   | 1.76 Gbits/sec
    Velocity Online | Tallahassee, FL, US (10G) | 739 Mbits/sec   | 1.40 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 831 Mbits/sec   | 849 Mbits/sec
    
    iperf3 Network Speed Tests (IPv6):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 925 Mbits/sec   | 1.84 Gbits/sec
    Online.net      | Paris, FR (10G)           | 926 Mbits/sec   | 1.83 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 922 Mbits/sec   | 1.84 Gbits/sec
    Clouvider       | NYC, NY, US (10G)         | 876 Mbits/sec   | 1.72 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 823 Mbits/sec   | busy
    
    Geekbench 5 Benchmark Test:
    ---------------------------------
    Test            | Value
                    |
    Single Core     | 603
    Multi Core      | 621
    Full Test       | https://browser.geekbench.com/v5/cpu/5107784
    

    Prem, indeed.

    @yongsiklee said:

    @nulldev said:

    @yongsiklee said:
    for $190 per year, lasting for 12 hours, for Back Friday, is not a very kind human spirit.

    Good bye, Hosthatch.

    *BTW. Thank you, Servarica.

    ???

    $190 per year is still only $1.58/TB/month. I'd say that's still in "very kind human spirit" as Servarica's prices don't even come close.

    Servarica has:

    4 CPU cores
    6 GB RAM
    best network
    You pay Monthly.

    Hosthatch has:

    2 CPU
    2 GB RAM
    You pay $190 Yearly
    Not knowing how the service will go ending up and what situation you will end up with the server.

    So the number is not everything.

    Network quality is subjective. One can't be based out of Zimbabwe and expect full Gbit throughput and sub 50ms latency to Seattle :lol:

    Of course. Do you live at around Zimbabwe?

    I would like that for the experience. But sadly, I don't.

    Experience can be happily bought...daily.

  • @hosthatch said: Sorry - what?

    You ordered a VM at $110, we 'terminated' it twice, and raised the price to $190 per year? If you can prove this statement with screenshots of the emails of these $110 invoices, I will personally send $500 to your paypal.

    I think what he is saying is that he got his hopes up when he saw a $110 deal but then it was sold out in 20 seconds, so his only option is the $190 and he was further disappointed that this was only available for 12 hours (which is not true, but don't shoot the messenger). The communication is not clear, but this is how I interpreted it.

  • @hosthatch said: I just logged on to LES to find a competitor I had respect for saying we are the new Racknerd as a joke because it wouldn't make financial sense for him to offer similar plans

    In some cultures that's a form of admiration - a tacit admission you've done a good job, without putting it into words. While not true, maybe insensitive, etc. I'd suggest not to take it too harshly.

  • Got my tiny beast provisioned in Zurich, thx :)

    IPv4 speedtests
        your IPv4:    45.91.92.xxxx
    
        Cachefly CDN:         103.01 MiB/s
        Akamai CDN:           107.79 MiB/s
        Online.net (FR):      108.18 MiB/s
        Online.net 90ms (FR): 21.71 MiB/s
        OVH GRA (FR):         50.61 MiB/s
        BIT (NL):             13.58 MiB/s
        Hetzner (DE):         110.58 MiB/s
        GleSYS (SE):          68.81 MiB/s
        OVH BHS (CA):         25.45 MiB/s
        Psychz (US-LA):       1.75 MiB/s
        Veesp (RU):           5.67 MiB/s
        DigitalOcean (SG)     8.62 MiB/s
    

    Hey lady, nice connectivity!

  • @yongsiklee said:

    @K4Y5 said:

    @yongsiklee said:

    @K4Y5 said:

    @Kassem said:
    Zurich

    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    #              Yet-Another-Bench-Script              #
    #                     v2020-11-20                    #
    # https://github.com/masonr/yet-another-bench-script #
    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    
    Wed 02 Dec 2020 02:36:14 AM UTC
    
    Basic System Information:
    ---------------------------------
    Processor  : Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz
    CPU cores  : 1 @ 2999.834 MHz
    AES-NI     : ✔ Enabled
    VM-x/AMD-V : ❌ Disabled
    RAM        : 1.9 GiB
    Swap       : 2.0 GiB
    Disk       : 19.6 GiB
    
    fio Disk Speed Tests (Mixed R/W 50/50):
    ---------------------------------
    Block Size | 4k            (IOPS) | 64k           (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 186.73 MB/s  (46.6k) | 1.34 GB/s    (20.9k)
    Write      | 187.22 MB/s  (46.8k) | 1.35 GB/s    (21.1k)
    Total      | 373.95 MB/s  (93.4k) | 2.69 GB/s    (42.0k)
               |                      |
    Block Size | 512k          (IOPS) | 1m            (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 901.93 MB/s   (1.7k) | 1.75 GB/s     (1.7k)
    Write      | 949.85 MB/s   (1.8k) | 1.86 GB/s     (1.8k)
    Total      | 1.85 GB/s     (3.6k) | 3.61 GB/s     (3.5k)
    
    iperf3 Network Speed Tests (IPv4):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 939 Mbits/sec   | 1.87 Gbits/sec
    Online.net      | Paris, FR (10G)           | 944 Mbits/sec   | 1.87 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 935 Mbits/sec   | 1.87 Gbits/sec
    Performing IPv4 iperf3 recv test from Biznet (Attempt #6 of 10)...
    Performing IPv4 iperf3 recv test from Biznet (Attempt #7 of 10)...
    Biznet          | Jakarta, Indonesia (1G)   | busy            | busy
    Clouvider       | NYC, NY, US (10G)         | 888 Mbits/sec   | 1.76 Gbits/sec
    Velocity Online | Tallahassee, FL, US (10G) | 739 Mbits/sec   | 1.40 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 831 Mbits/sec   | 849 Mbits/sec
    
    iperf3 Network Speed Tests (IPv6):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 925 Mbits/sec   | 1.84 Gbits/sec
    Online.net      | Paris, FR (10G)           | 926 Mbits/sec   | 1.83 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 922 Mbits/sec   | 1.84 Gbits/sec
    Clouvider       | NYC, NY, US (10G)         | 876 Mbits/sec   | 1.72 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 823 Mbits/sec   | busy
    
    Geekbench 5 Benchmark Test:
    ---------------------------------
    Test            | Value
                    |
    Single Core     | 603
    Multi Core      | 621
    Full Test       | https://browser.geekbench.com/v5/cpu/5107784
    

    Prem, indeed.

    @yongsiklee said:

    @nulldev said:

    @yongsiklee said:
    for $190 per year, lasting for 12 hours, for Back Friday, is not a very kind human spirit.

    Good bye, Hosthatch.

    *BTW. Thank you, Servarica.

    ???

    $190 per year is still only $1.58/TB/month. I'd say that's still in "very kind human spirit" as Servarica's prices don't even come close.

    Servarica has:

    4 CPU cores
    6 GB RAM
    best network
    You pay Monthly.

    Hosthatch has:

    2 CPU
    2 GB RAM
    You pay $190 Yearly
    Not knowing how the service will go ending up and what situation you will end up with the server.

    So the number is not everything.

    Network quality is subjective. One can't be based out of Zimbabwe and expect full Gbit throughput and sub 50ms latency to Seattle :lol:

    Of course. Do you live at around Zimbabwe?

    I would like that for the experience. But sadly, I don't.

    Experience can be happily bought...daily.

    On the corner of 7th Ave and 48th Street, if I understand correctly.

    Thanked by 2K4Y5 user123
  • @tetech said:

    @yongsiklee said:

    @K4Y5 said:

    @yongsiklee said:

    @K4Y5 said:

    @Kassem said:
    Zurich

    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    #              Yet-Another-Bench-Script              #
    #                     v2020-11-20                    #
    # https://github.com/masonr/yet-another-bench-script #
    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    
    Wed 02 Dec 2020 02:36:14 AM UTC
    
    Basic System Information:
    ---------------------------------
    Processor  : Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz
    CPU cores  : 1 @ 2999.834 MHz
    AES-NI     : ✔ Enabled
    VM-x/AMD-V : ❌ Disabled
    RAM        : 1.9 GiB
    Swap       : 2.0 GiB
    Disk       : 19.6 GiB
    
    fio Disk Speed Tests (Mixed R/W 50/50):
    ---------------------------------
    Block Size | 4k            (IOPS) | 64k           (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 186.73 MB/s  (46.6k) | 1.34 GB/s    (20.9k)
    Write      | 187.22 MB/s  (46.8k) | 1.35 GB/s    (21.1k)
    Total      | 373.95 MB/s  (93.4k) | 2.69 GB/s    (42.0k)
               |                      |
    Block Size | 512k          (IOPS) | 1m            (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 901.93 MB/s   (1.7k) | 1.75 GB/s     (1.7k)
    Write      | 949.85 MB/s   (1.8k) | 1.86 GB/s     (1.8k)
    Total      | 1.85 GB/s     (3.6k) | 3.61 GB/s     (3.5k)
    
    iperf3 Network Speed Tests (IPv4):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 939 Mbits/sec   | 1.87 Gbits/sec
    Online.net      | Paris, FR (10G)           | 944 Mbits/sec   | 1.87 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 935 Mbits/sec   | 1.87 Gbits/sec
    Performing IPv4 iperf3 recv test from Biznet (Attempt #6 of 10)...
    Performing IPv4 iperf3 recv test from Biznet (Attempt #7 of 10)...
    Biznet          | Jakarta, Indonesia (1G)   | busy            | busy
    Clouvider       | NYC, NY, US (10G)         | 888 Mbits/sec   | 1.76 Gbits/sec
    Velocity Online | Tallahassee, FL, US (10G) | 739 Mbits/sec   | 1.40 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 831 Mbits/sec   | 849 Mbits/sec
    
    iperf3 Network Speed Tests (IPv6):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 925 Mbits/sec   | 1.84 Gbits/sec
    Online.net      | Paris, FR (10G)           | 926 Mbits/sec   | 1.83 Gbits/sec
    WorldStream     | The Netherlands (10G)     | 922 Mbits/sec   | 1.84 Gbits/sec
    Clouvider       | NYC, NY, US (10G)         | 876 Mbits/sec   | 1.72 Gbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 823 Mbits/sec   | busy
    
    Geekbench 5 Benchmark Test:
    ---------------------------------
    Test            | Value
                    |
    Single Core     | 603
    Multi Core      | 621
    Full Test       | https://browser.geekbench.com/v5/cpu/5107784
    

    Prem, indeed.

    @yongsiklee said:

    @nulldev said:

    @yongsiklee said:
    for $190 per year, lasting for 12 hours, for Back Friday, is not a very kind human spirit.

    Good bye, Hosthatch.

    *BTW. Thank you, Servarica.

    ???

    $190 per year is still only $1.58/TB/month. I'd say that's still in "very kind human spirit" as Servarica's prices don't even come close.

    Servarica has:

    4 CPU cores
    6 GB RAM
    best network
    You pay Monthly.

    Hosthatch has:

    2 CPU
    2 GB RAM
    You pay $190 Yearly
    Not knowing how the service will go ending up and what situation you will end up with the server.

    So the number is not everything.

    Network quality is subjective. One can't be based out of Zimbabwe and expect full Gbit throughput and sub 50ms latency to Seattle :lol:

    Of course. Do you live at around Zimbabwe?

    I would like that for the experience. But sadly, I don't.

    Experience can be happily bought...daily.

    On the corner of 7th Ave and 48th Street, if I understand correctly.

    Have you checked out the intersection of 6th and 9th? There's another name for it, but it's a mouthful.

    Thanked by 1TimboJones
  • As a testament to service stability and usability, here's a benchmark from my 6TB storage VM that I snagged from @hosthatch last black friday. Barring a little hiccup with corrupt FS a few months ago, it continues to run like a champ:

    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    #              Yet-Another-Bench-Script              #
    #                     v2020-11-20                    #
    # https://github.com/masonr/yet-another-bench-script #
    # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #
    
    Wed Dec  2 
    
    Basic System Information:
    ---------------------------------
    Processor  : Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz
    CPU cores  : 2 @ 2999.998 MHz
    AES-NI     : ✔ Enabled
    VM-x/AMD-V : ❌ Disabled
    RAM        : 5.8 GiB
    Swap       : 2.0 GiB
    Disk       : 5.8 TiB
    
    fio Disk Speed Tests (Mixed R/W 50/50):
    ---------------------------------
    Block Size | 4k            (IOPS) | 64k           (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 9.95 MB/s     (2.4k) | 100.17 MB/s   (1.5k)
    Write      | 9.98 MB/s     (2.4k) | 100.70 MB/s   (1.5k)
    Total      | 19.94 MB/s    (4.9k) | 200.88 MB/s   (3.1k)
               |                      |
    Block Size | 512k          (IOPS) | 1m            (IOPS)
      ------   | ---            ----  | ----           ----
    Read       | 303.81 MB/s    (593) | 444.78 MB/s    (434)
    Write      | 319.96 MB/s    (624) | 474.41 MB/s    (463)
    Total      | 623.78 MB/s   (1.2k) | 919.19 MB/s    (897)
    
    iperf3 Network Speed Tests (IPv4):
    ---------------------------------
    Provider        | Location (Link)           | Send Speed      | Recv Speed
                    |                           |                 |
    Clouvider       | London, UK (10G)          | 3.39 Gbits/sec  | 972 Mbits/sec
    Online.net      | Paris, FR (10G)           | 1.24 Gbits/sec  | 973 Mbits/sec
    WorldStream     | The Netherlands (10G)     | 7.19 Gbits/sec  | 976 Mbits/sec
    Biznet          | Jakarta, Indonesia (1G)   | busy            | busy
    Clouvider       | NYC, NY, US (10G)         | 2.43 Gbits/sec  | 886 Mbits/sec
    Velocity Online | Tallahassee, FL, US (10G) | 203 Mbits/sec   | 552 Mbits/sec
    Clouvider       | Los Angeles, CA, US (10G) | 1.28 Gbits/sec  | 534 Mbits/sec
    
    Geekbench 5 Benchmark Test:
    ---------------------------------
    Test            | Value
                    |
    Single Core     | 601
    Multi Core      | 1136
    Full Test       | https://browser.geekbench.com/v5/cpu/5108317
    
  • very nice

  • FrankZFrankZ Barred
    edited December 2020

    @tetech said: In some cultures that's a form of admiration - a tacit admission you've done a good job, without putting it into words. While not true, maybe insensitive, etc. I'd suggest not to take it too harshly.

    I understand your meaning in saying this. Unfortunately that is a culture that goes against the concept of society* and is probably destine to eat it's young.

    *a voluntary association of individuals for common ends especially an organized group working together or periodically meeting because of common interests, beliefs, or profession.

  • @hosthatch said: Going to take a break from doing PR and hand it over to my partner after this season is over. I didn't think it would be this horrible after being somewhat inactive for an year.

    >
    No matter what happens, u helped quite a few people here!
    Don't lose your inner peace :)
    https://www.worldtribune.org/2019/01/the-eight-winds/

    Thanked by 1FrankZ
Sign In or Register to comment.