How hyped is everyone for O? You shouldn't be yet if you are 
Anyway, what would you guys like to see for Android O? I'd personally love for if to be the optimization update. New butter smooth animations, maybe tone down the crashing or make it less noticeable, or something like that. Please google :3.
Also: O FOR OREO!

Anyway, what would you guys like to see for Android O? I'd personally love for if to be the optimization update. New butter smooth animations, maybe tone down the crashing or make it less noticeable, or something like that. Please google :3.
Also: O FOR OREO!
Hello everyone, Haze here. Today I will be reviewing the free FreeDomain.Club VPS!
1. Introduction & specs
You get this VPS from the FreeDomain.Club forums by posting (50 points). It is relatively easy to get in 1-2 days. That being said, it isn't a great VPS as you'll see.
Specs:
Code:
2 CPU Cores
Disk Space: 10GB (SSD Cached)
RAM: 512MB
Bandwidth: 512GB
1 * IPV4
Any linux operating system
2. Benchmark
Code:
Benchmark started on Wed Nov 2 16:50:46 EDT 2016
Full benchmark log: /root/bench.log
System Info
-----------
Processor : Intel(R) Xeon(R) CPU E5-2620 0 @ 2.00GHz
CPU Cores : 2
Frequency : 2000.056 MHz
Memory : 512 MB
Swap : 512 MB
Uptime : 8 days, 34 min,
OS : CentOS release 6.8 (Final)
Arch : x86_64 (64 Bit)
Kernel : 2.6.32-042stab113.21
Hostname : [Censored again.]
Speedtest (IPv4 only)
---------------------
Your public IPv4 is [I wonder why Haze censored this...]
Location Provider Speed
CDN Cachefly 78.5MB/s
Atlanta, GA, US Coloat 27.2MB/s
Dallas, TX, US Softlayer 77.3MB/s
Seattle, WA, US Softlayer 30.1MB/s
San Jose, CA, US Softlayer 26.7MB/s
Washington, DC, US Softlayer 5.02MB/s
Tokyo, Japan Linode 7.56MB/s
Singapore Softlayer 3.93MB/s
Rotterdam, Netherlands id3.net 6.99MB/s
Haarlem, Netherlands Leaseweb 27.9MB/s
Disk Speed
----------
I/O (1st run) : 255 MB/s
I/O (2nd run) : 286 MB/s
I/O (3rd run) : 174 MB/s
Average I/O : 238.333 MB/s
Let's start with the specs.
It's "fine" for programming stuff, but you can't really even host a simple website on this that gets a moderate amount of traffic.
Regarding speed, it's, well, not the worst I guess. Still, you're gonna get some slow speed outside US... Which is also why I don't recommend this VPS to anyone living in anywhere outside America. Since you can only do simple tasks with it, the latency will probably kill you *_*.
In Disk Speed it's just a regular SSD, nothing fancy or really fast. But those are not the biggest problems with this VPS...
It has been pretty stable thusfar I guess, having an uptime for 8 days, but...
3. The problem...
FDC has an extremely inactive community, and its owner has threatend to shut down multiple times. He isn't getting any money and he doesn't look like he will, so please only use this as a quick test enviroment if you really need to. Heck, why would you even use this VPS? Just set up a damn VM or something for your testing, because that's all you're gonna do with this thing.
Rating: 4/10
3-word-conclusion: Just please don't.
Ninja edit: Thanks @Vulutus for the benchmark script (wget freevps.us/downloads/bench.sh -O - -o /dev/null|bash)
HEY WHAT'S UP GUYS IT'S SCARCE haze here back with another video tutorial.
All jokes aside, I saw another tutorial to set up a server on here, but I've found that it was a bit lacking and only for Ubuntu.
Contents:
0. SSH'ing
1. Installing openjdk (java)
2. Downloading the server and setting it up
3. (optional) Make the server run in the background and not shut off!
4. Tips and tricks
0. SSH
Let's SSH into the server! On Windows you can use Putty (plenty of tutorials available online) or SSH on Linux:
Also, USER is mostly root.
1. Java
Assuming you've successfully SSH'ed into the server, first of all, we have to install openjdk/java.
If you are on Ubuntu or Debian (or similar/derivatives), you can do:
If you are on CentOS (or similar/derivatives), you can do:
If you are on a different Linux distro (how?!), you can try to follow this guide to try and compile the packages yourself, but it's not recommended for beginners and can be really hit and miss. You can always google specifically a build for your distro or maybe use Oracle Java (blegh).
2. Set up
Now you have a few options. You can download a vanilla Minecraft server, get a prebuilt version of Spigot or Bukkit (not linking as the pre-builts are illegal) or build it yourself. We'll stick to the first option for now.
Let's download the server:
Of course in the future this version may not be the latest, so please change 1.10.2 to the appropriate version.
Now let's test our server out! To start the the server, execute the following command:
If this worked you should see your server start up! You're done now, but there are a few extra (recommended but optional) steps to take.
3. Run in background
Noticed that your server shuts down when you disconnect from Putty or SSH? Let's fix that!
Install screen (
) and type '
' in the terminal
. Now run your server and exit tmux (ctrl+b and then ctrl+d) and boom! Your server is now running in the background. To get back to it to for example restart the server, just type '
' and you'll be back in your server's console.
4. Tips
All jokes aside, I saw another tutorial to set up a server on here, but I've found that it was a bit lacking and only for Ubuntu.
Contents:
0. SSH'ing
1. Installing openjdk (java)
2. Downloading the server and setting it up
3. (optional) Make the server run in the background and not shut off!
4. Tips and tricks
0. SSH
Let's SSH into the server! On Windows you can use Putty (plenty of tutorials available online) or SSH on Linux:
Code:
ssh USER@YOUR-SERVER-IP
1. Java
Assuming you've successfully SSH'ed into the server, first of all, we have to install openjdk/java.
If you are on Ubuntu or Debian (or similar/derivatives), you can do:
Code:
sudo apt-get install openjdk-8-jre
Code:
yum install java-1.8.0-openjdk
2. Set up
Now you have a few options. You can download a vanilla Minecraft server, get a prebuilt version of Spigot or Bukkit (not linking as the pre-builts are illegal) or build it yourself. We'll stick to the first option for now.
Let's download the server:
Code:
wget https://s3.amazonaws.com/Minecraft.Download/versions/1.10.2/minecraft_server.1.10.2.jar
or
curl -O https://s3.amazonaws.com/Minecraft.Download/versions/1.10.2/minecraft_server.1.10.2.jar
Of course in the future this version may not be the latest, so please change 1.10.2 to the appropriate version.
Now let's test our server out! To start the the server, execute the following command:
Code:
java -jar minecraft_server.1.10.2.jar
If this worked you should see your server start up! You're done now, but there are a few extra (recommended but optional) steps to take.
3. Run in background
Noticed that your server shuts down when you disconnect from Putty or SSH? Let's fix that!
Install screen (
Code:
sudo apt-get install tmux / yum install tmux
Code:
screen
. Now run your server and exit tmux (ctrl+b and then ctrl+d) and boom! Your server is now running in the background. To get back to it to for example restart the server, just type '
Code:
tmux attach
4. Tips
- Watch out for DDoSing and read the ToS of your VPS carefully.
- Always try to use as little plugins as possible to save RAM space. Trust me it helps. 10 plugins should be about enough.
- Make sure your server complies with Mojang's TOS (no p2w...)
Hello guys
We recently had decided to have one more Moderator as day by day the Users are increasing, so we guess it's the Perfect moment for another Moderator.
STATUS: closed
This is your chance to apply for Global Moderator of Post4VPS.
Number of Global Moderators we need: 1
Minimum requirements:
1. User should know good English.
2. User should be devoting 1-2 hours per day here.
3. User should be user friendly.
4. Good decision quality.
For Applying for Global Moderator's rank, Users have to create a Thread in VPS Request forum with following details:
And the Title would be: Global Moderator rank's Application
The contest would remain open till we announce our newest Moderator.
We wish you success!
Post4VPS Team
We recently had decided to have one more Moderator as day by day the Users are increasing, so we guess it's the Perfect moment for another Moderator.
STATUS: closed
This is your chance to apply for Global Moderator of Post4VPS.
Number of Global Moderators we need: 1
Minimum requirements:
1. User should know good English.
2. User should be devoting 1-2 hours per day here.
3. User should be user friendly.
4. Good decision quality.
For Applying for Global Moderator's rank, Users have to create a Thread in VPS Request forum with following details:
Code:
Real Name (name, last name not required just so we now your name):
Your age (so we can see how mature you are):
Why would you join us (tell us something):
Your real address (so we can have a trust on you, keep in mind it should be in proper format):
Skype (useful to have, we have a p4v group):
And the Title would be: Global Moderator rank's Application
The contest would remain open till we announce our newest Moderator.
We wish you success!
Post4VPS Team
The new MacBook Pro has some interesting developments. Not many people are happy about having only USB Type C support available on the new model. What will you do if you get an USB pen drive which is still very much popular ? How will you plug in ?
Then, there is touch pad, which is kind of flashy in the new MacBook Pro. Does it really help you ? I don't know. But you can surely make someone jealous using it.
Then, there is touch pad, which is kind of flashy in the new MacBook Pro. Does it really help you ? I don't know. But you can surely make someone jealous using it.
Hi everyone! My name is Haze. I have previously gotten a free VPS from another post-4-vps type of forum, but it did not fit my needs, so I'm here :3. I'm into video games, developing and basketball. Let's have a good time together

Company Abbreviations
- YAHOO: Yet Another Hierarchical Officious Oracle
- GOOGLE: "Googol"
- APPLE: "Steve Job's Fruitarian Diets"
- HP: Hewlett-Packard
- IBM: International Business Machines Corporation
- HCL: Hindustan Computer Limited
- WIPRO: Western India Product Limited
- GE: General Electronics
- INFOSYS: Information System
- TCS: Tata Consultancy Services
- AOL: American Online
- BPL: British Process Laboratory
- INTEL: Integrated Electronics
- CISCO: Computer Information System Company
- DELL: Michael DELL
- SONY: Sound of New York
- AMD: Advance Micro Devices
- LENOVO: LE (Legend) NOVO (New)
- COMPAQ: Compatibility And Quality
- HTTP: Hyper Text Transfer Protocol
- HTTPS: Hyper Text Transfer Protocol Secure
- IP: Internet Protocol
- URL: Uniform Resource Locator
- USB: Universal Serial Bus
- VIRUS: Vital Information Resource Under Siege
- 3G: 3rd Generation
- GSM: Global System for Mobile Communication
- CDMA: Code Division Multiple Access
- UMTS: Universal Mobile Telecommunication System
- SIM: Subscriber Identity Module
- AVI: Audio Video Interleave
- RTS: Real Time Streaming
- SIS: Symbian OS Installer File
- AMR: Adaptive Multi-Rate Codec
- JAD: Java Application Descriptor
- JAR: Java Archive
- 3GPP: 3rd Generation Partnership Project
- 3GP: 3rd Generation Project
- MP3: MPEG Player 3
- MP4: MPEG -4 video Files
- AAC: Advanced Audio Coding
- GIF: Graphic Interchangeable Format
- BMP: Bitmap
- SWF: Shock Wave Flash
- WMV: Windows media Audio
- WMA: Window Media Audio
- PNG: Portable Network Graphic
- DOC: Document (Microsoft Corporation)
- PDF: Portable Document Format
- M3G: Mobile 3D Graphics
- M4A: MPEG-4 Audio File
- NTH: Nokia Themes
- THM: Themes (Sony Ericsson)
- MMF: Synthetic Music Mobile Application File
- NRT: Nokia Ringtones
- XMF: Extensible Music Files
- WBMP: Wireless Bitmap Image
- DVX: DivX Video
- HTML: Hyper Text Markup Language
- WML: Wireless Markup Language
- CD: Compact Disk
- DVD: Digital Versatile Disk
- CRT: Cathode Ray Tube
- DAT: Digital Audio Tape
- DOS: Disk Operating System
- GUI: Graphical User Interface
- TCP: Transmission Control Protocol
- UPS: Uninterruptible Power Supply
- HSDPA: High Speed Downlink Packet Access
- EDGE: Enhanced Data Rate for GSM Evolution
- VHF: Very High Frequency
- UHF: Ultra High Frequency
- GPRS: General Packet Radio Services
- WAP: Wireless Application Protocol
- ARPANET: Advanced Research Project Agency Network
- AM/FM: Amplitude/Frequency Modulation
- LAN: Local Area Network
- WLAN: Wireless Local Area Network
- WINDOW: Wide Interactive Network Development for Office Work Solution
- COMPUTER: Common Oriented Machine Particularly United and used under Technical and Educational Research
- AMOLED: Active Matrix Organic Light Emitting Diode
- OLED: Organic Light Emitting Diode
- IMEI: International Mobile Equipment Identity
- ESN: Electronic Serial Number
- HDMI: High Definition Multimedia Interface
- VPN: Virtual Private Network
- APN: Access Point Name
- SIM: Subscriber Identity Module
What happened to Android phone makers ? Not a single one has interesting flagship. Samsung has been plagued with recent explosion issue, LG, HTC and those big names of yesterday does not even have a good selling model.
Is that why Google tried to do this themselves ? Why no Android phone maker can prosper ?
Is that why Google tried to do this themselves ? Why no Android phone maker can prosper ?
40 VPSs are Available
1x VPS 1
9x VPS 3
2x VPS 4
10x VPS 5
1x VPS 6
1x VPS 7
10x VPS 8
3x VPS 9 (Please mention the location from Dallas, Phoenix and Chicago in your VPS Request or if you want random then don't mention it & Please include in your request which operating system you would like installed from below OS list.)
1x VPS 10
1x VPS 11
1x VPS 12
Note: We would not only view points for VPS 9 but also the VPS usage purpose too, so if you a have reasonable purpose, then only try to claim for them

Operating System of VPS 3 are as follows:
Spoiler Expand
Operating System of VPS 9 are as follows:
Spoiler Expand
The winners will be decided as soon as possible and giveaway will remain open till 6th of September (Sunday).
Please Read before Applying
- Read Our Forum Rules before applying.
- You should have meet our minimum requirements to get VPS.
- Read Application Format before applying. (If the application format is wrong then your Request will be rejected)
- You must post your VPS application in VPS Request Forum.
- Read TOS of VPS providers before applying.
Posted by: meetdilip - 11-01-2016, 07:35 AM - Forum: Web Design & Projects
- No Replies
Progressive Web Apps are the current trend. It is a web app built on an app shell. Works well on mobile and desktop/laptop. There are many companies investing in PWA these days.
Do you have interest in PWA ?
Do you have interest in PWA ?

Welcome, Guest |
You have to register before you can post on our site. |
Search Forums |
(Advanced Search) |
Forum Statistics |
» Members: 2,271 » Latest member: orzpainter » Forum threads: 3,093 » Forum posts: 34,816 Full Statistics |
Online Users |
There are currently 353 online users. » 0 Member(s) | 348 Guest(s) Bing, UptimeRobot, Google, Applebot, Yandex |
Latest Threads |
LLHOST — VPS hosting for ...
Forum: Value VPS Providers Last Post: LLHOST 04-30-2025, 12:10 PM » Replies: 0 » Views: 20 |
Get 25% OFF all LLHOST ne...
Forum: Cheap VPS Providers Last Post: LLHOST 04-22-2025, 11:04 AM » Replies: 0 » Views: 114 |
LLHOST: VPS in the Nether...
Forum: Others Last Post: LLHOST 04-15-2025, 07:32 PM » Replies: 0 » Views: 185 |
Hello all!
Forum: Meet & Greet! Last Post: perry 03-26-2025, 11:28 AM » Replies: 1 » Views: 256 |
Buy DemoTiger Videos on c...
Forum: Others Last Post: DewlanceHosting 03-25-2025, 02:07 PM » Replies: 5 » Views: 3,326 |
VisualWebTechnologies | 7...
Forum: Others Last Post: visualwebtechnologies 03-11-2025, 02:58 AM » Replies: 0 » Views: 203 |
Post2Host.com domain on a...
Forum: Others Last Post: Variable 03-10-2025, 04:04 PM » Replies: 0 » Views: 163 |
KVM & OpenVZ Yearly VPS f...
Forum: Cheap VPS Providers Last Post: HostNamaste 03-05-2025, 12:15 PM » Replies: 0 » Views: 372 |
Create Unlimited Virtual ...
Forum: Hardware & Technology Last Post: bestadvisor 03-01-2025, 09:47 AM » Replies: 0 » Views: 579 |
VisualWeb offers cPanel H...
Forum: Others Last Post: visualwebtechnologies 01-23-2025, 03:38 AM » Replies: 0 » Views: 264 |