|
You can have more windows in your 3D space, but you still have to "rotate" your view, arrange the windows, etc. Same thing, only "bigger". What to do for a keyboard. A mouse? Hand motions? etc.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
Watch the Apple presentation. Parts of it are absolutely silly but other parts are very interesting.
BTW - You can use a real physical keyboard if you want.
|
|
|
|
|
jschell wrote: Email causes enough interruptions to coding without requiring me to put on a headset just so I can read a marketing blurb
I'm sure their thinking is that you'll already be wearing the headset (doing your coding) when that email comes in...
|
|
|
|
|
if you need to wear anything like this to do anything you have a problem
In a closed society where everybody's guilty, the only crime is getting caught. In a world of thieves, the only final sin is stupidity. - Hunter S Thompson - RIP
|
|
|
|
|
I knew people who said βif you have to sit in front of a damn screen and keyboard you have a problemβ. Itβs all relative and times change.
|
|
|
|
|
Hi,
Anyone here used RFID, 13.56 band to be precise? I think the project I'm on is not using it correctly. I was an RFID guru but the company I was in got screwed by a customers non-payment and the skills weren't kept upto date...
|
|
|
|
|
|
You might want to search in PLC / SPS Forums, we usually work with RFID a lot too, sadly I am more like you, I haven't touch it for years and I forgot a big lot of information.
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
"I've forgotten more than you youngsters know.
The trouble is I've forgotten."
by someone famous, but I can't remember who.
"Mistakes are prevented by Experience. Experience is gained by making mistakes."
|
|
|
|
|
I don't think it was me, but I'm not sure anymore...
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
"Common sense is so rare these days, it should be classified as a super power" - Random T-shirt
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
I actually answered so to a newbie I started to train back then. He got me with a question I could not answer on the moment and he started "lecturing" me. A while later (had to check something first), I answered him (dismounting some of the arguments he had previously said) and when he was about to say something I added "And for the record, I have already forgotten more than what you have learned so far". His face was priceless
On a side note... I don't actually envy photographic memory, but I could use a bit more of retentive in my brain
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
Cars car phone point (11)
In a closed society where everybody's guilty, the only crime is getting caught. In a world of thieves, the only final sin is stupidity. - Hunter S Thompson - RIP
|
|
|
|
|
AUTOMOBILES
AUTO car
MOBILE phone
S (compass) point
Software rusts. Simon Stephenson, ca 1994. So does this signature. me, 2012
|
|
|
|
|
Too easy ?
In a closed society where everybody's guilty, the only crime is getting caught. In a world of thieves, the only final sin is stupidity. - Hunter S Thompson - RIP
|
|
|
|
|
One of those "microseconds or hours" clues.
Software rusts. Simon Stephenson, ca 1994. So does this signature. me, 2012
|
|
|
|
|
I wise clue setter once said:
Quote: They don't have to be difficult but they do have to be solvable
The Lounge[^] 
|
|
|
|
|
#Worldle #501 2/6 (100%)
π©π©π©π©π¨βοΈ
π©π©π©π©π©π
https://worldle.teuteuf.fr
a bit easy
"A little time, a little trouble, your better day"
Badfinger
|
|
|
|
|
I thought "hey, I'll integrate a documentation search into my website documentation"
https://honeythecodewitch.com/gfx/wiki/index.md[^]
So I created an account with Algolia and spent more than an hour on it only to determine that their deprecated web crawler that they won't let me use would work fine (if they let me at its results) but the one in production won't follow links.
How do you make a paying service with a web crawler that doesn't follow links? Seems like an important feature for a crawler, no? Like, only the whole reason for its existence in the first place.
It gets my goat from a professional standpoint when people release things like this and then charge money for them.
I asked them to delete my account. Instead they want me to troubleshoot this with them. I told them to pay me.
We'll see how that goes.
There's smoke in my iris
But I painted a sunny day on the insides of my eyelids
So I'm ready now (What you ready for?)
I'm ready for life in this city
And my wings have grown almost enough to lift me
|
|
|
|
|
honey the codewitch wrote: I asked them to delete my account. Instead they want me to troubleshoot this with them. I told them to pay me.
We'll see how that goes.
"A little time, a little trouble, your better day"
Badfinger
|
|
|
|
|
honey the codewitch wrote: I asked them to delete my account. Instead they want me to troubleshoot this with them. I told them to pay me. I can't overemphasize how good and correct that response is.
The difficult we do right away...
...the impossible takes slightly longer.
|
|
|
|
|
Exactly. Their logs should contain all the troubleshooting data they need.
|
|
|
|
|
honey the codewitch wrote: Seems like an important feature for a crawler, no?
True but also probably the hardest feature to implement. For example what if the link requires a user login. Or if it requires a selection from the original page. And of course one must eliminate recursive cycles also.
|
|
|
|
|
I usually handle the recursion with a HashTable of crawled URLS.
"Mistakes are prevented by Experience. Experience is gained by making mistakes."
|
|
|
|
|
Sure, but get it right if that's what your product does.
And handling recursion is pretty easy on a modern system with a hash table.
In the case of my site, it's nothing fancy. There's a bit of potential recursion is all due to back linking.
There's smoke in my iris
But I painted a sunny day on the insides of my eyelids
So I'm ready now (What you ready for?)
I'm ready for life in this city
And my wings have grown almost enough to lift me
|
|
|
|
|
What are you using to render your files?
On CodeProject, I use Lucene.Net to index and search our content.
I've used Lucene.Net 2, 3, and 4 for various projects and I'm not sure which I like best due to the differences in APIs.
There are versions ported to several languages from the original Java.
Using Stemming Analyzer, you can index by word roots so that 'run', 'runs', 'running', 'ran' all index to the same thing.
I created a custom tokenizer to handle technical documents geared towards programming to weed out some fluff.
It is blinding fast, and looking at the code can be addictive as the algorithms used are quite interesting.
If you are using a 'standard' CMS such as WordPress, Orchard, or most others, they usually have a Search Plugin which is usually based on Lucene.
"Mistakes are prevented by Experience. Experience is gained by making mistakes."
|
|
|
|