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.
All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.
Provider Poll 2025 - Choose your favorite providers and stand a chance to win a prize!
FAT32
Administrator, Deal Compiler Extraordinaire
Hi LET members! First of all let me apologize for not posting this earlier and thanks everyone for waiting. It is time to vote for our favorite providers again!
This is a great opportunity for providers to claim prestigious "Top Provider" tag, while our members stand a chance to win prizes for their participation.
Important
Requirements to vote:
- Your account must have been created on or before 31 Dec 2025 (EST).
- Your account must have at least 10 posts, spread across at least 2 threads, made between 1 Jan 2025 00:00 and 31 Dec 2025 23:59 (EST, inclusive).
- Providers can vote, but not for themselves (the same applies to Host Reps).
Rules for voting:
- You get 3 votes.
- One vote per provider (Providers with multiple brands are considered as one).
- You can vote fewer than 3 times if you wish.
- This year, you get 1 additional vote for the "Most Helpful Provider" specifically for providers who have shown kindness and helpfulness to the community or the members here.
- Voting will end on 12 Apr 2026 11:59pm (EST).
- Your vote for "Most Helpful Provider" will also count as a regular vote.
Voting Template:
1.
2.
3.
Most Helpful:
Featured Prizes
- AxusHost - 1 x BF25 Special VPS (16C / 16G / 160G NVMe / 160T) in NL for 1 year, renews at €20/yr by @djunior ⭐
- GreenCloudVPS - 1 x Dell S2725DS Monitor - 27 Inch, QHD (2560x1440) Display, 100Hz refresh rate, 1500:1 contrast ratio by @NDTN ⭐
- GreenCloudVPS - 1 x ASUS ZenScreen 15.6 Inch Portable Monitor - 1080P, Full HD, IPS, USB Type-C by @NDTN ⭐
- GreenCloudVPS - 1 x $100 Amazon Giftcard by @NDTN ⭐
- Host-C - 1 x Hunter X-302 Storage 4TB VPS (2C / 4G / 20G NVMe + 4TB HDD - 1.5K @ 4K IOPS, up to 1Gbps / 1 IPv4 / /64 IPv6 / 12TB @ 1Gbps) in RO for 1 year, renews at $15/m by @host_c ⭐
- Onidel - 3 x $50 Onidel Account Credit by @onidel @oloke ⭐
- Servarica - 10 x Mouse Storage VPS (1C / 1G / 500G HDD / 1 IPV4 / 18TB @ 1Gbps + Unmetered @ 100Mbps OR 250Mbps and increases 1Mbps daily till 1Gbps) in CA for 1 year, renews at $12/yr by @servarica_hani ⭐
Prizes
(In alphabetical order)
- GreenCloudVPS - 10 x GreenCloud x Dino T-Shirts by @NDTN
- GreenCloudVPS - 5 x $20 GreenCloud Account Credit by @NDTN
- GreenCloudVPS - 5 x EPYC-1 VPS (1C / 2G / 25G NVMe / 750GB-3TB @ 10Gbps) in APAC/EU/US for 1 year, renews at $25/yr by @NDTN
- GreenCloudVPS - 5 x BudgetKVM-1 VPS (1C / 2G / 20G SSD / 2TB @ 10Gbps) in EU/US for 1 year, renews at $15/yr by @NDTN
- GreenCloudVPS - 2 x GreenCloud Ringneck Tumbler, 20oz by @NDTN
- GreenCloudVPS - 2 x GreenCloud Ceramic Mug by @NDTN
- GreenCloudVPS - 2 x GreenCloud LED Gaming Mouse Pad by @NDTN
- Host-C - 1 x Atlas XR-2K Storage 2TB VPS (2C / 4G / 2TB HDD - 8K @ 4K IOPS, up to 2Gbps / 1 IPv4 / /64 IPv6 / 6TB @ 1Gbps) in RO for 1 year, renews at $14/m by @host_c
- Host-C - 1 x Oblivion Ark-218 Storage 2TB VPS (1C / 3G / 20G NVMe + 2TB HDD - 1K @ 4K IOPS, up to 1Gbps / 1 IPv4 / /64 IPv6 / 6TB @ 1Gbps) in RO for 1 year, renews at $8/m by @host_c
- MLNL.host - 3 x $25 MLNL.host Account Credit by @jayjay
- MLNL.host - 5 x $10 MLNL.host Account Credit by @jayjay
- MLNL.host - 3 x LET Exclusive VPS (2C / 4G / 40G NVMe / 1 IPv4 / 2TB @ 2Gbps) in CH for 1 month, renews at $8.88/m by @jayjay
- Onidel - 5 x $25 Onidel Account Credit by @onidel @oloke
- Onidel - 10 x $10 Onidel Account Credit by @onidel @oloke
- TorBox - 10 x Essential Plan seedbox/debrid for 3 months, renews at $9/qtr by @TorBox
- V.PS - 20 x €10 V.PS Account Credit by @xTom
- @default -
lewd.partydomain registered till 24 Dec 2028
Notes
- Most providers require you to pass the fraud check or meet additional terms if you are selected as the prize winner.
- IDs will be assigned based on the alphabetical order of the list above.
- If the number of voters is less than the number of prizes, some voters will receive more than one prize (refer to the algorithm).
- Each eligible voter can only receive 1 featured prize.
- Special thanks to the moderators for helping to count the votes.

- Providers can still add prizes by sending me a PM with the details or commenting in the private thread.
- We reserve the right to disqualify providers or members found to be manipulating the results.
Algorithm
To ensure the fairness of the lottery, here is the hash of the MAGIC_SEED that will be used for selection: 0f82879560bfa32327222ec374ae281e3926e5953493127ecc665034a86460de (SHA256).
const seedrandom = require('seedrandom');
// Those values are just an example
const MAGIC_SEED = 'Seed';
const ALL_USERS = ['UserA', 'UserB', 'UserC'];
const HIGH_VALUE_PRIZE_COUNT = 3;
const PRIZE_COUNT = 5;
// Find winners
const rng = seedrandom(MAGIC_SEED + '_' + ALL_USERS.length + '_' + HIGH_VALUE_PRIZE_COUNT + '_' + PRIZE_COUNT);
let allWinners = [];
let prizeLeft = HIGH_VALUE_PRIZE_COUNT + PRIZE_COUNT;
while (prizeLeft > 0) {
let winners = ALL_USERS.map((user) => ({ username: user, rand: rng() }));
winners.sort((a, b) => a.rand - b.rand);
winners = winners.slice(0, prizeLeft);
winners = winners.map((selected) => selected.username);
allWinners = allWinners.concat(winners);
prizeLeft -= winners.length;
}
// Output
console.log(allWinners);
If you have any doubts, you can check out last year's provider poll (2024):
Thanked by 50lukast__ david oloke HuiW Marvington Murv truemagic Carlin0 Decicus remy mandala HostBilby zGato cainyxues admax noob404 besthost1 nghialele ariq01 NDTN jaden Svalbard anakara JasonM _MS_ nick_ smallpancakes host_c varwww kaz050457 jsg ZA_capetown ebietsy netguy jolo22 MJJs Ganonk forest ElChile 0xC7 titus jet3918 zeli FairShare borkedascii JohnnySac geo ravi dsbnoob Hetzner_OL

Comments
Most Helpful: ExtraVM
Most Helpful: layer7 @layer7
Most Helpful: DartNode
Most Helpful: Host-C
Most Helpful: RackNerd
You are the greatest @FAT32
Most helpful : @host_c
Those who don't make into the top 3: @PulsedMedia, @NDTN, @backtogeek , @beanman109, @TheOnlyDK (freevps.org), @neeoon (microlxc)
Honorary mentions: Layer7, HostBilby, Skhron
(Those six providers are IMHO all premium, provide excellent service, and have friendly support, and I wouldn't call any of them worse than another, but the three I voted for have an own panel.)
💚🥹
Most helpful: @3K33
Most Helpful: Layer7
Most Helpful: Host-C
Most helpful : @oloke
1, fiberstate
2, webnx
3, reliablesite
Most Helpful: @layer7
Greencloud
Crunchbits
DartNode
Most Helpful: DartNode
These are though times. My vote would be :
Most helpful would be @oloke . I know he works for onidel, but hes recommendations are no match for any other user here. GJ bro keep it up.
1.GreenCloud
2.SolidVPS
3.kaze.cloud
Most Helpful: GreenCloud
Most helpful: @tentor
Most Helpful: HostMedia
Most Helpful: DediRock @DediRock
Most Helpful: @oloke (onidel)
(please consider as one
)
1.@oloke
2.@racknerd
3.@hosthatch
Most Helpful: @oloke (onidel)
Most Helpful: @tentor
1.Liteserver
2.St-hosting
3.Extravm
Most Helpful:Layer7
Most Helpful: @tentor
Most Helpful: HetrixTools → @HBAndrei