In an elevated Command Prompt write this :
To disable:
bcdedit /set hypervisorlaunchtype off
To enable:
bcdedit /set hypervisorlaunchtype auto
In an elevated Command Prompt write this :
To disable:
bcdedit /set hypervisorlaunchtype off
To enable:
bcdedit /set hypervisorlaunchtype auto
/******************************************************************************************************************** | |
Countdown.js is a simple script to add a countdown timer | |
for your website. Currently it can only do full minutes | |
and partial minutes aren't supported. This script is a fork of http://jsfiddle.net/HRrYG/ with some | |
added extensions. Since the original code that I forked was released under Creative Commons by SA license, | |
I have to release this code under the same license. You can view a live demo of this code at http://jsfiddle.net/JmrQE/2/. | |
********************************************************************************************************************/ | |
function countdown(minutes) { | |
var seconds = 60; | |
var mins = minutes |
# Langkah-langkah untuk Merge Ke Production: | |
-- | |
## Contents: | |
-- | |
1. Bitbucket | |
- Merge dari branch dev ke master (lakukan melalui bitbucket) | |
- Masuk ke Server lakukan pull request untuk coding terbaru: | |
```git pull origin master``` | |
window.App = new Vue({ | |
el: '#app', | |
data: { | |
low: 0, | |
median: 0, | |
high: 0, | |
duration: 0, | |
lecture_duration: [], | |
weekdays: { | |
mon: [], |
window.App = new Vue({ | |
el: '#app', | |
data: { | |
low: 0, | |
median: 0, | |
high: 0, | |
duration: 0, | |
lecture_duration: [], | |
weekdays: { | |
mon: [], |
window.App = new Vue({ | |
el: '#app', | |
data: { | |
low: 0, | |
median: 0, | |
high: 0, | |
duration: 0, | |
lecture_duration: [], | |
weekdays: { | |
mon: [], |
window.App = new Vue({ | |
el: '#app', | |
data: { | |
low: 0, | |
median: 0, | |
high: 0, | |
duration: 0, | |
lecture_duration: [], | |
weekdays: { | |
mon: [], |
root@deikxyz:~# cat /dev/null > cat /dev/null > /var/log/nginx/access.log
(hit enter)
root@deikxyz:~# cat /dev/null > cat /dev/null > /var/log/nginx/error.log
(hit enter)
www.mysite.com, mysite.com { | |
proxy / webapp:3000 { | |
proxy_header Host {host} | |
proxy_header X-Real-IP {remote} | |
proxy_header X-Forwarded-Proto {scheme} | |
} | |
gzip | |
tls [email protected] | |
} |
There are a lot of ways to serve a Go HTTP application. The best choices depend on each use case. Currently nginx looks to be the standard web server for every new project even though there are other great web servers as well. However, how much is the overhead of serving a Go application behind an nginx server? Do we need some nginx features (vhosts, load balancing, cache, etc) or can you serve directly from Go? If you need nginx, what is the fastest connection mechanism? This are the kind of questions I'm intended to answer here. The purpose of this benchmark is not to tell that Go is faster or slower than nginx. That would be stupid.
So, these are the different settings we are going to compare: