Tuesday, November 27, 2018

Money from idle computer

MQL5 MetaTester 5 Agents Tests passed 0
Don't just assume that the your system is fast enough. Instead, look at the actual PR (Performance Ratio) reported on your profile for each node of the agents.
Unless they are higher than a value of 100, you will not get much activity on it!
Note to self:
To see PR, from Windows Agents Manager: "MQL 5 Cloud Network" \ "View the stats ..."

[MQL5] Agents not working?
For the agent to be listed, you need to wait for a couple of days.
I encountered even my agents was listed, no jobs was pass to them for a days so I reinstalled the agents and it works

Monday, November 26, 2018

AWS related

I got email alerting that my AWS account has exceeded xx % of usage limit for Free Tier - how do I check ?
All Free Tier services by usage
then go to EC2 Dashboard (make sure you choose the correct region - eg. Ohio - to display)

Is Amazon Workspaces free ?
The Amazon WorkSpaces Free Tier provides two Standard bundle WorkSpaces, running in AutoStop mode, for up to 40 hours of combined use per month, for two calendar months, from the time you create your first WorkSpace. Usage time accrues while you’re actively using your WorkSpace as well as the time it takes to stop after a specified period of inactivity, which by default is set to one hour. If you exceed the Free Tier limits, you will be charged the standard Amazon WorkSpaces hourly rate for the additional resources you use. At the end of two calendar months, the WorkSpaces you launched in the Free Tier will automatically be billed at the applicable hourly rate.
(source: Free Tier)

Best Free VPS – Does It Even…Exist?
[AWS} When the 12 months end, your features get stripped to a bare minimum – for example, you can no longer have a virtual machine

Delete a WorkSpace


Thursday, November 22, 2018

Hunt for Aroma Diffuser

10 Rekomendasi Aroma Diffuser Terbaik (Terbaru Tahun 2018)
Aroma diffuser tipe gelombang ultrasonik sebaiknya dibersihkan sebulan sekali.
Jika Anda merasa terganggu dengan sisa-sisa minyak pada aroma diffuser, Anda bisa menggunakan kapas dan pembersih (etanol disinfektan) (=alkohol?) yang dijual di apotek.
Ingat, aroma diffuser tidak bisa dibersihkan dengan deterjen!

Looks OK: Akana’s Wooden Essential Oil Diffuser

(Note to self) Features to seek :
Tidak berisik
Auto shut-off saat air habis
Tidak pilih2 minyak (ada yang "hanya bisa menggunakan minyak aromaterapi yang 100% alami")
Built-in speaker (test for noise !)
---

Monday, November 5, 2018

Windows 2003: auto time sync when CMOS battery is dead

modify registry to anticipate large time difference :
How to configure the Windows Time service against a large time offset
change MaxPosPhaseCorrection and MaxNegPhaseCorrection to 0xFFFFFFF

create schedule to run AT STARTUP that will launch batch file containing these commands :
w32tm /config /manualpeerlist:id.pool.ntp.org,0x8 /syncfromflags:MANUAL /reliable:yes
w32tm /config /update
net stop w32time
net start w32time

set retryCount=0

:SyncStart
if %retryCount == 90 goto SyncEnd
set /A retryCount=retryCount + 1

REM *** Resync the system clock
w32tm /resync
if errorlevel 1 goto SyncDelay
if errorlevel 0 goto SyncEnd

:SyncDelay
REM *** If unsuccessful, delay 10 seconds, then retry
choice /n /t:y,10>nul
goto SyncStart

:SyncEnd
---

summarized from :