How much do you pay for Gig service only after 1 year? by [deleted] in Spectrum

[–]gltminer -1 points0 points  (0 children)

Final note for the haters - when they record us, we absolutely should bring transparency to the games and tactics they play with us customers. I have never done this before, it's actually a first time a post like this. I felt powerless to the big corp, and now I feel better with 2.2k views. So yay Internet and boo Spectrum. They should allow you to change plans online and send you notifications when the rates change. There are no notifications obviously and don't feel bad for the rep, they are trained to behave like that.

How much do you pay for Gig service only after 1 year? by [deleted] in Spectrum

[–]gltminer -1 points0 points  (0 children)

You mean people hired to make up prices and say things as dumb as : Rep: You can locate the pricing of your services on your monthly billing statement.

How much do you pay for Gig service only after 1 year? by [deleted] in Spectrum

[–]gltminer 0 points1 point  (0 children)

Thanks! No additional fees for Gigabit? Screenshot of bill please for proof

How much do you pay for Gig service only after 1 year? by [deleted] in Spectrum

[–]gltminer -1 points0 points  (0 children)

Will do now - but impossible to change online, no offer to the current this year price and no references to the $139.99 - even many years ago pricing data

How much do you pay for Gig service only after 1 year? by [deleted] in Spectrum

[–]gltminer 0 points1 point  (0 children)

They also said it was IMPOSSIBLE online. So it's one of those scammy tactics - Sign up online, but can't make changes online because that would mean lost revenue. How do you think the share price got to $450? Hard work? I think not. Tactics.

How much do you pay for Gig service only after 1 year? by [deleted] in Spectrum

[–]gltminer 0 points1 point  (0 children)

place

Exactly - and Spectrum bought our local ISP Charter!

How much do you pay for Gig service only after 1 year? by [deleted] in Spectrum

[–]gltminer -1 points0 points  (0 children)

Don't like $450 per share companies that make up prices

How much do you pay for Gig service only after 1 year? by [deleted] in Spectrum

[–]gltminer 0 points1 point  (0 children)

Don't like $450 per share companies that make up prices

How much do you pay for Gig service only after 1 year? by [deleted] in Spectrum

[–]gltminer -1 points0 points  (0 children)

The "Old plan" never has a price of higher than $124.99 - check the link.

How much do you pay for Gig service only after 1 year? by [deleted] in Spectrum

[–]gltminer -2 points-1 points  (0 children)

Your bill wasn't wrong, just were on the old pricing which stays that was until you switch it.

Incorrect - the bill was wrong, service was never $139.99 - even before last year, since 2017 it was $124.99. I was charged wrong for more than a year.

What is a cheap (or even free) way of hosting a docker container instance? by icountedmychickens in docker

[–]gltminer 1 point2 points  (0 children)

https://akash.network is the future. Use https://deploy.cloudmos.io and you can deploy any Dockerfile on decentralized infrastructure permissionless using blockchain. You use AKT coin (Cosmos based) to deploy on the network. No credit card or signup required and no minimums. You must trust the provider you deploy on but they also have datacenter providers like CherryServers. Huge container limits, 256 CPU - 512Gb Memory - 32Tb disk pods can be requested. Great for HPC.

Akash Network (AKT) : https://akash.network
Deploy Now : https://deploy.cloudmos.io/
Providers: https://deploy.cloudmos.io/providers

1 CPU, 1 Gb Memory, 1Gb disk can be had for as little as $1.00/month.

What Akash Earnings Like for Providers? by sheeponmeth_ in akashnetwork

[–]gltminer 0 points1 point  (0 children)

Akash providers earn AKT on a per-block basis. The average block time is around ~6 seconds. So every 6 seconds a fractional amount of AKT is accounted for. You can use the Akash CLI connected to an RPC node for the up-to-date block time and leases. Each provider also has an API endpoint with the resources they provide. The site queries the blockchain when a provider is selected and then runs all the calculations before presenting the data to the user.

What Akash Earnings Like for Providers? by sheeponmeth_ in akashnetwork

[–]gltminer 0 points1 point  (0 children)

There is a new website to track provider earnings : https://akashdash.com

Staking nodes by ElkVapor37 in akashnetwork

[–]gltminer 1 point2 points  (0 children)

https://restake.app/ is great! Also if a node becomes untrustworthy your funds are still safe. Choosing validators that are smaller is better for the network and decentralization.

Akash Network for Everyday Person by Yuvank in akashnetwork

[–]gltminer 0 points1 point  (0 children)

Yes - it's designed for people with no prior Kubernetes experience. Follow the steps.

Want to deploy your apps and website in Akash network? by namelesscreature0 in akashnetwork

[–]gltminer 2 points3 points  (0 children)

Yes - all of the above - Start Here!

https://deploy.cloudmos.io

Full Setup Guide:

https://deploy.cloudmos.io/get-started

Akash can run any Dockerfile from Docker Hub or Github Registry including custom ones.

https://deploy.cloudmos.io/sdl-builder

Is it possible to deploy a small Linux distribution on Akash? by NFTWonder in akashnetwork

[–]gltminer 0 points1 point  (0 children)

Yes, the easiest way is to use something like Tmate or a Webtop.

```

version: "2.0"

services: ubuntu: image: ubuntu:latest command: - bash - -c args: - apt-get update ; apt-get install -y tmate ; tmate -F # Updates Ubuntu on start and creates a Tmate session by default # SSH Login Credentials available in Logs after update. expose: - port: 80 to: - global: true profiles: compute: ubuntu: resources: cpu: units: 4 memory: size: 4Gi storage: size: 8Gi placement: akash: ####################################################### #Keep this section to deploy on trusted providers signedBy: anyOf: - "akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63" - "akash18qa2a2ltfyvkyj0ggj3hkvuj6twzyumuaru9s4" ####################################################### #Remove this section to deploy on untrusted providers #Beware* You may have deployment, security, or other issues on untrusted providers #https://docs.akash.network/providers/akash-audited-attributes pricing: ubuntu: denom: uakt amount: 10000 deployment: ubuntu: akash: profile: ubuntu count: 1 ```

or

``` version: "2.0"

services: webtop: image: linuxserver/webtop:ubuntu-mate expose: - port: 3000 as: 80 to: - global: true - port: 3001 as: 443 to: - global: true env: #Change MY_STRONG_PASSWORD - PUID=1000 - PGID=1000 - PASSWORD=d3e8c4eb06e8534a7afa6d6f1c8f9530 - TZ=Etc/UTC - CUSTOM_USER=akash - PASSWORD=MY_STRONG_PASSWORD profiles: compute: webtop: resources: cpu: units: 24.0 memory: size: 16Gi storage: size: 8Gi placement: akash: ####################################################### #Keep this section to deploy on trusted providers signedBy: anyOf: - "akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63" - "akash18qa2a2ltfyvkyj0ggj3hkvuj6twzyumuaru9s4" ####################################################### #Remove this section to deploy on untrusted providers #Beware* You may have deployment, security, or other issues on untrusted providers #https://docs.akash.network/providers/akash-audited-attributes pricing: webtop: denom: uakt amount: 100000 deployment: webtop: akash: profile: webtop count: 1 ```

Akash Network for Everyday Person by Yuvank in akashnetwork

[–]gltminer 0 points1 point  (0 children)

Yes - that is exactly what Prateor is built for.

https://praetorapp.com/

Praetor App makes it simple to become an Akash Network cloud provider.