Domain: sbg.ac.at
Stories and comments across the archive that link to sbg.ac.at.
Comments · 12
-
Re:Any kind of sustained concentrated thinking doe
The vascular part I am guessing / noting / observing.. it's a
,thing I noted a long time ago is all.The rest of it is information readily available . The general topic goes by the name of neural plasticity which is broken down into functional and structural .
It's not the thing I research specifically so I am not loaded down with bookmarks for you but I know all about it from undergrad
For people with no neuroscience background there's books like The Brain That Changes Itself and of course it's a big area of research- pulled from the web without much effort:
http://www.jneurosci.org/content/29/10/3019.full.pdf
http://psyserv06.psy.sbg.ac.at:5916/fetch/PDF/21906988.pdf
Some notes on one methodology:
http://dbm.neuro.uni-jena.de/pdf-files/May-TICS11.pdf
Aside from that, what exactly do you think phenomena like PTSD are? Purely disembodied psychological issues? If you've were or have ever repeatedly sustained hard study, you'd notice that your whole "self" changes in response to your efforts. You're smarter, your experience of everyday life is richer etc etc. This goes on as long as you're willing to inflict a good measure of discomfort on yourself.
By the same token, leaving your studies for a time then coming back is an extraordinarily punishing affair. Along with feelings of inadequacy and bewilderment when faced with the same material you left even a few short weeks ago, there's a sense of awe at your own former self's output and level of functioning.
Like the song says:
When you're up / looks like a long ways down
When you're down / looks like a long ways upCheers
-
Re:Randomness is not an objective thing
I believe you are missing the more important point (most of you in this thread). 'Random' is usually used as short for 'uniformely random' and would ultimately mean that any sequence of draws has an a priori equal probability to any other sequence of the same fixed length. Pseudo random generators do not have this property for long strings and most external events can't be guaranteed to have this property. The generators can be pretty good however, something that is often meassured by Spectral Tests (somewhat empirically). So when researchers talk about pseudo-randomness vs. true randomness, it is usually not so much about whether someone could predict the numbers as about whether long sequences have a truly uniform distribution.
In particular, simple classical PRNGs with internal states of 32 bits may have a cycle of about 2^31 numbers, i.e. the 2^31+1'st number you draw will always be the same as the first. Apparently the PRNG of theoretical choice today, the Mersenne Twister has a cycle of 2^19937-1. -
Quantum mind
You might want to go to Salzburg this summer to attend the Quantum Mind conference. You'll find a number of top physicists, a few philosophers, some famous mathematicians, and at least one anaesthesiologist (hey, you don't know what you've got till it's gone).
-
Re:One thing is obvious from the photographActually, the origins of the tie can be traced way back to ancient Greece (or maybe Rome, I'm too lazy to go look now). It was simply a scarf tied in a specific style to keep the neck warm.
Actually, they can't. A tie (in original - kravata) is a Croatian military accessory from approximately mid. 1600s. It gained popularity when Croatian troops helped Luis XIII./XIV. in some long forgotten war.
More info here.
Other trivia includes:
- There are 85 ways to tie a tie
- Only 10 are symmetrical
- The most known is a Windsor knot
How come Croatians invented the tie? Well, the reason is love (hmm, explains why some geeks don't like ties - no love, man :) ) Women gave their men a scarf/handkerchief when men had to go away to wars as a token of love and loyality. When the fighting began, men had no time to dress up and they invented a way to fixate them around their necks.
P.S. If I were you, I'd sue the university :) -
Solaris /dev/random
On Solaris 7 and 8 I use a kernel space
/dev/random from Andreas Maier. I have successfully compiled it on both 32bit and 64bit machines using the SunPRO 5.0 compiler. To use it with OpenSSH, install the package, recompile OpenSSL and OpenSSH.
In my opinion using the kernel space /dev/random removes most of the negative issues associated with running OpenSSH on Solaris.
Trey -
Re:But!
Haven't you come across this which gives you a
/dev/random (and /dev/urandom) - even on 2.5.1? -
RNG testing
-
High cost, no PCMCIAIf it had a PCMCIA slot, I would have paid the $1000 for it. But without it, no way. I'm not spending a grand to have to lug a unit into some cradle to transfer files.
Better would be to get an SBC that supports Linux, throw on a microdrive, add an 802.11b card, and then write a set of scripts that rsync to your home MP3 DB when you get in range of the access point (and after you exchange some cryptographic keys, of course). You can then use the apmd stuff to sleep your machine after the transfer.
I planned on using an old Palm IIIx and a serial cable for the GUI. PalmAMP works really well (for my purposes, anyway). Of course, it doesn't beat the Empeg's really fancy display. It's very nice. But worth an extra $500? Probably not.
Bad to see them go. Hopefully, they'll keep their software on the Net so others can play with it still.
-B
-
Re:Austria still has a few prudes left
I read some of the Austrian StGB (Strafgesetzbuch = Penal Code) yesterday, and IMO there is nothing illegal about adultery there. Polygamy and incest are illegal. OTOH, there are some very questionable laws over there.
If you can read German fluently, the Austrian StGB is available here. The Swiss StGB is here and the German one is here. -
Try Palmamp
This page should give you a good set of info and links.
-
Why not use PalmAMP?
PalmAMP from Ironcreek Software (looks like their site is goobered, but you can find the download by Googling still) and the PalmAMP XMMS plugin should do at least a big chunk of what you're trying to do. The XMMS plugin is GPL as well, so you can perhaps turn your FIFO daemon into a converter for the PalmAMP protocol, thus saving the time of writing the GUI.
-
Re:gpgActually, Solaris doesn't have
/dev/random or /dev/urandomYou can use methods such as egd.pl (as described and linked for download at http://www.lothar.com/tech/crypto/) to gather entropy for random seeds and a third party
/dev/random device driver such as the one at http://www.cosy.sbg.ac.at/~andi/ though. Also, OpenSSH has its own internal method of gathering entropy - such as running netstat and viewing the ps table.You're not *that* dependent on the OS for randomness, it just takes a bit more work if you start with a hobbled one.