I bought the DK2 on release and had great fun with Elite Dangerous and the demo scenes.
Then I lost interest for a while. In the mean-time installed Win10.
Now, I considered buying the next Oculus device as its resolution is higher and there is an ED extension available; also more games are compatible.
My background: Master of Science in Physics from London; PhD in Aero from London. I simulate acoustics using the finite/boundary-element method and flow using the finite-volume method. I built a high-performance cluster at work and use it / maintain it daily. I know computers.
Those people at Oculus have been promising Win10 drivers for this hardware, literally, for years.
Not one byte to that effect.
I've rolled back my drivers to win7. Spent man days on this waste of time. No joy. Demo scenes work: amazing hardware! But those people didn't release Win10 drivers.
I will never buy from Oculus again. They took my few hundred pounds and I got a few months of gameplay and now, no support.
Disappointing performance. I will avoid you and any of your spin-offs in the future. My money will gladly go elsewhere.
People reading this: don't waste your time rolling back, reinstalling, dicking around. Go smell the flowers, spend time with family, see new places. These people will take your money, waste your time, and leave you hanging.
Friday, 27 January 2017
Saturday, 24 December 2016
gw2
| |Art |Leath |Weap |Tail |Jewel | Arm | Chef |
====================
|Fl| 61 | 0 | 0 | 500| 47 | 49 |
|JA| 248 | 42 |
|KS| 500 | | 4 | | 0 | 0 | 400 | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
Using:
Flask of pumpkin oil: Pumpkin's blessing. 100 power, toughness, vitality, 30% mf.
<= 1 crystalline dust, bowl curry pumpkin soup, 75 candy corn, 35 plastic fangs.
Huntsman.
Lump of crystallized nougat: Ghoul's blessing: condi, precision, toughness, 30% mf.
<= Crystalline dust, powerful venoom sack, 75 candy corn, 35 chattering skull.
Artificer.
sharpening skull +? all attibutes, +30%mf
<= crystalline dust, viscous fang, 75 candy corn, 35 nougat centres.
Weaponsmith.
Toxic focusing crystal: +100 Condi, +10% condi duration
<= 3 piles crystalline dust, 100 pile bloodstone dust, 10 pristine toxis spore samples.
Artificer.
Plate roasted cactus: 100 ferocity, 33% on critical to cause might.
Mushroom loaf: +100 vitality, +70 power
Bowl firemeat chilli. 15% burning duration.
Wednesday, 5 October 2016
box table drawing characters
https://en.wikipedia.org/wiki/Box-drawing_character
http://www.johndcook.com/blog/2008/08/18/entering-unicode-characters-in-linux/
ctrl+shift+u, hex number.
Linux:
$ gucharmap
Keyboard:
left cntrl + left shift + u, 255c, enter
or
hold left cntrl + left shift + u, release u, 255c, release ctrnl,sjrt
The numbers can be from the keypad or line across then top
2500: ─
2502: │
250C: ┌
2510: ┐
2514: └
2518: ┘
251c: ├
2524: ┤
252c: ┬
2534: ┴
253c: ┼
┌──┬──┐
│ │ │
├──┼┬┬┤
│ ││││
└──┴┴┴┘
Tuesday, 4 October 2016
Monday, 26 September 2016
mounting drives specifying offset
$ ls /dev/sda*
/dev/sda /dev/sda1 /dev/sda2 /dev/sda5
$ sudo fdisk -l /dev/sda
Disk /dev/sda: 465.8 GiB, 500107862016 bytes, 976773168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x5c7f4b84
Device Boot Start End Sectors Size Id Type
/dev/sda1 2048 999423 997376 487M 83 Linux
/dev/sda2 1001470 976771071 975769602 465.3G 5 Extended
/dev/sda5 1001472 976771071 975769600 465.3G 8e Linux LVM
$ sudo mount /dev/sda2 /mnt/sda2
mount: wrong fs type, bad option, bad superblock on /dev/sda2,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so.
The offset here is 1001470*512 bytes = 512752640 to get to the second partition:
sudo mount -o ro,loop,offset=512752640 /dev/sda /mnt/sda2/
If using an image file, use the filename instead of /dev/sda
Wednesday, 14 September 2016
Yet another backup rsync script. This one works on Ubuntu, 2016 September.
For some reason, my old backup scripts aren't working. A simpler approach is to add this sort of thing to a script called by cron:
rsync -vrmxz --progress --include='*.ipynb'
--include='*/' --exclude='*' /home/me /mnt/J/backup/
which starts at the current directory and works through all sub-directories, grabbing each .ipynb file and copying it to /backup.
The parameters:
a: archive mode. Preserve attributes.
v: verbose. Not needed for the silent cron version.
z: compress during transfer. Not needed if creating a first copy locally but useful for network xfer.
x: one filesystem: don't cross file-system boundaries.
r: recursive.
m: prune empty directories. Essential.
progress: live feedback. Not needed for silent cron version.
include: files to include
exclude: files to exclude. This is required even though we used an include command. *.* is essential.
Make neater using variables:
hour=`date +%H`
i="ipynb"
rsync -vrmxz --progress --include="*.$i" --include='*/'
--exclude='*' /home/me /mnt/J/backup/hour$hour/
Regarding ddrescue solutions, watch for squashfs: it will create a compressed backup image that can be mounted. Seems better than ddrescue piped to gzip or so.
Monday, 23 May 2016
Subscribe to:
Posts (Atom)