Upon plugging USB power from the Aukey Quick Charge 3.0 charger into the Quick Charge 2.0 capable device, a small fraction of a second is spent at 5 V input, while the Quick Charge 2.0 rate is negotiated.
Starting from 20% charge, in less than 2 hours the device is completely charged.
Battery charge of 20% → 60% is achieved in 40 minutes.
Quick Charge 2.0 voltage/current vs time: the table below is approximate, with the display off.
At 100% charge, the rate bounced between 0.02-0.2 amps as the phone pings Wifi, checks for email, etc.
Most of the time, it was at about 50 mA.
Comments on June 2014 AAAS Science
article
on open data and open code for scientists are given below.
The article refers to the E. White
paper
on nine easy ways to share code.
Maybe you don’t have the time to read those, so let me give you six quick tips to:
increase your citation count
increase your data usage (more citations)
increase your code sharing (more citations and lucrative job opportunities).
Learn a popular science/engineering programming language. It will boost productivity and job opportunities. The language you should be using is Python, as it can run on supercomputers down to the $5 Raspberry Pi Zero. Python can streamline/inline CUDA, Fortran, and C for very fast speed while being easy to code for controlling hardware and doing simulations and image/data analysis of datasets of all sizes.
Learn how to use HDF5. Try to use it right at your data acquisition source if it’s not a very high data rate application. Try to avoid making up your own formats or using text to store data unless completely necessary.
Learn how to use version control. Git is an excellent choice. You will save massive amounts of time when it comes to some typo you made and you didn’t keep an old filename version.
Learn how to use Github and be appropriately prolific about posting your code there. This leads to visibility and opportunity.
Put examples, plots, and documentation of how to install and use your code in a README file.
Publish your data online. Don’t leave it on some RAID drive or USB drive somewhere. The drive will fail eventually or the room will get flooded. Worst of all is CD/DVD, they have a very short lifespan, less that the length of your PhD studies. Keep your data in multiple online places.
After installing more RAM the laptop turned on to a black screen.
There was no response to Fn keys, no Fn Lock LED, no mute LED, couldn’t get the keyboard to light up beyond the initial flareup/flaredown.
After 45 seconds and the system restarted normally.
It seems there’s some kind of self-check the laptop runs once upon RAM size change.
Too bad they don’t put a “RAM testing” notice on the screen to avoid panic of the user!
If a VirtualBox virtual machine can’t see Shared Folders in your Windows guest with Linux host, fix by:
In Linux Terminal:
adduser $(whoami) vboxusers
In Virtualbox Windows guest, click Install Guest Additions in the VirtualBox menu
Run setup on the virtual drive that appears.
Reboot the Windows guest.
From Windows guest Command Prompt:
net use x: \\vboxsvr\share
where “share” is the name assigned in the VirtualBox shared folders dialog.
IDL has been buggy in the past for writing
.sav` files
in the proprietary data format.
One should instead save data to NetCDF4 or HDF5.
Read IDL .sav files from Python:
fromscipy.ioimport readsav
data = readsav('mydata.sav')
data
dict() of IDL variables.
Our Scipy contribution: IDL was able to read the .sav file, so I wrote a one-off IDL script to convert from IDL .sav to NetCDF4 .NC: sav2nc.pro format.
I also have code there to convert from IDL .sav to HDF5.
I also successfully submitted a
patch to SciPy
to fix some of these IDL .sav reading issues.
Updated C code horn.c, lucas.c
from the J.L. Barron 1994 article “Performance of Optical Flow Techniques” that can easily compile with today’s compilers.
The “middle mouse button paste” behavior of X11 can lead to posting unwanted text in a document when you’re simply trying to scroll through it.
Disable Linux middle-mouse button paste in Terminal:
xmodmap -pp
Telling the active mouse button function indices. The second number is apparently the middle mouse button function, which we will map to an unused index. Example output of xmodmap -pp:
Edit ~/.Xmodmap - swap the last number with the second number. Keep a backup of your original ~/.Xmodmap file if one existed. For the example above, edit and save:
pointer = 1 10 3 4 5 6 7 8 9 2
Finally, logout / login
the middle-mouse paste should be disabled, while you are still able to use the middle mouse button to scroll.