I wonder if that's going to happen for my kids. Today's internet feels so highly commercialized. All the new exciting discoveries are in the form of profit-driven silicon valley products with no humanity or soul.
I may very well be wrong. This is all emotion based and I really don't have concrete evidence. I'm probably falling into a fit of nostalgia.
There was never a point to them, but they were hugely interesting. Today there's no point bothering as it would be gone forever a month after posted to twitter or a Facebook group now bloody everything has to have a stream or timeline. So akin to a chilling effect it invisibly promotes things that have releases. Products.
Nostalgia is some of it I'm sure, but I really do think there's something more concrete there too.
I've got a four month old. By the time she's in third or fourth grade, I expect that VR will give her the same kinds of experiences that I had with the web at that age. What made the web exciting wasn't just the fact that it was run by amateurs, it was the fact that there was just an enormous amount of possibility waiting to be explored where we genuinely didn't know the answers.
I actually think the web itself may go back into that kind of phase again after a couple more iterations of Moore's Law make programming easy enough for people who wouldn't be able to do it today, especially when combined with blockchain opening up new kinds of relationships that people can have with one another. The web currently has some issues, but I think a lot of people have given up on it prematurely without taking into consideration the new kinds of experiences the recent and upcoming improvements to the underlying infrastructure are going to make possible.
For me, some of that's moved on to YouTube. Even today, I find channels full of crazy stuff, brilliant stuff, beautiful stuff, educational stuff, stuff I'd never even heard before, just randomly stumbling around. It's hard to find them, what with the suggestions throwing only the lowest-common-denominator version of the stuff I get baited into clicking on, but sometimes I manage to run across it.
This is something i think about regarding my kids... specifically that my experience was free and unfettered - theirs is contolled, walled and full of ads and bullshit.
In the following, let Y = the last two digits of the year (e.g., 18 for 2018), and let N be the value we are trying to be compute. We only actually need N mod 7, but I'm going to leave out the reduction mod 7 in the equations to reduce clutter.
The simplest way to compute N is simply:
N = Y + Y//4
I'll use Python3-like arithmetic and pseudocode in this comment, so "//" is integer division (with x for times to avoid accidental italics).To keep the numbers smaller during mental calculation, people have developed alternatives. The one given in that link is this:
N = Y // 12
N += Y % 12
N += (Y % 12) // 4
An interesting alternative, called the "odd+11" method, is given on the Wikipedia article [1]: if odd(Y): Y += 11
Y = Y // 2
if odd(Y): Y += 11
N = -Y
For the last step there, N = -Y, it will usually be easier and clearer to reduce Y mod 7 before doing that N = -Y. Also, given Y, sometimes the simplest way to get -Y mod 7 is to just note what you have to add to Y to get to a multiple of 7. For example, if when you get to that step Y = 20, note that adding 1 to Y gives a multiple of 7, so -20 mod 7 = 1.Anyway, here's my method. It keeps the numbers smaller--if you reduce mod 7 aggressively never more than 12--at the cost of slightly more branches in the logic.
Let the last two digits of the year be T and U, so Y = 10 T + U.
N = 2 x T
if odd(T): N += 3
N += U
if odd(T):
N += (U+2)//4
else:
N += U//4
That if...else is taking into account the number of leap years that have occurred in the current decade (not including the year T0). When doing mental calculation, it is probably easier just to remember that if T is odd, at 1 if U >= 2 and add another 1 if U >= 6, and if T is even same except at 4 and 8.Here are examples, using some years from the link, with parenthetical explanations for some of the numbers:
2018: T=1, U=8. 2x1(T) + 3(T is odd) + 8(U) + 2(U>=2,6) = 1 mod 7.
1929: T=2, U=9. 2x2(T) + 9(U) + 2(U>=4,8) = 1 mod 7.
1999: T=9, U=9. 2x2(T%7) + 3(T is odd) + 2(U%7) + 2(U>=2,6) = 4 mod 7. Note that I reduced U and T mod 7 inline when using them. You can do this as long as when checking odd/even you use the original T, and when adding in the leap year correction you use the original U. E.g., for 99, you could compute it like it was 22, except you have to add the 3 for odd T, and use 9 for the U>=2,6 check.
1982: T=8, U=2. 2x1(T%7) + 2(U) = 4 mod 7.
1969: T=6, U=9. 2x(-1)(T%7) + 2(U%7) + 2(U>=4,8) = 2 mod 7.
Some might find changing the leap year handling to this a little easier instead of just remembering the 2,6 or 4,8 +1 points. Change the if...else to this:
N += U//4
if odd(T) and N%4 >= 2: N += 1
E.g., compute the leap year adjustment with U//4 regardless of whether T is odd or even, and if U is in {2, 3, 6, 7} and T is odd, add one more.[1] https://en.wikipedia.org/wiki/Doomsday_rule#The_%22odd_+_11%...
In general I’ve always been into sound and I think a lot of people have better hearing than they think, but never learned to hear well. I find it odd that we have such prominent childhood learning focused around sight (shapes, colors, etc) but barely teach children anything about hearing beyond animal sounds. I’m not advocating golden ears courses for kindergartens, but listening skills can be quite useful in lots of situations, not the least of which is situational awareness.
For someone who isn't blind, learning how to do this is very difficult. This is the kind of skill that rewires your brain and comes out of necessity rather than desire. By actually being blind, you get 10,000 hours of practice in around two years. Even if you practiced this an hour a day blindfolded, it would take decades to get 10,000 hours of practice.
An exercise to test/prove existing echolocation abilities: Stand 10 meters from a wall. Close your eyes and walk towards it. Try to stop right in front of the wall without opening the eyes. The majority of participants will stop when the wall is 1/5 meter in front of the face. Participants report “hearing” the wall.
Broadly speaking, listening is the human means for becoming aware of physical threats. Even unconsciously heard sounds will trigger stress hormones.
How Well Do We Know Our Own Conscious Experience? The Case of Human Echolocation by Eric Schwitzgebel and Michael S. Gordon
http://www.faculty.ucr.edu/~eschwitz/SchwitzAbs/Echo.htm
been obsessed with this paper since it came out.
The talk's title is "Can we create new senses for humans?" by David Eagleman and is available at https://www.youtube.com/watch?v=4c1lqFXHvqI
> Daniel Kish: How I use sonar to navigate the world
I noticed that I could make a continuous sound and it would correspond roughly with the distance and gave me a one-dimensional relative distance detection from my head. A 'hissing' sound worked best for continuous reading while being subtle. It was pretty easy for me but it might have to do with being on the autistic spectrum and hypersensitivity.
The capital E makes it look like a proper noun, like Email.
Crazy thing how these letters in our alphabet work.
We need a better alphabet! Ya?
Edit: wait, we don't just have two mics in our head, we also have our outer ear that's required for this. I guess the phone would need physical addons for this to work.
On interesting thing is to open the windows (and sunroof) in an electric car, whilst driving in built up areas < 20 mph/35 km/h, you hear a lot more what is going on (including insects and birds) and it is a very different experience.
Windows down in a quiet (electric) car is pretty amazing too, even in a traffic jam.
Also I wonder how much of this will come to you naturally if you live in the wild. You rely on so many minute signals ..
There is one example in the book, I believe, where a person is consciously blind, and is completely convinced they're blind, but when asked to walk through a hallway filled with junk and obstacles, the person passes through the hallway without a problem. When asked, "how did you avoid those obstacles?", they answered "luck", "small obstacles", etc...
It almost seems to me as if consciousness serves a social function. The mind's eye is blind, but the unconscious eye isn't. Yet, they communicate as if they were blind.
I wonder if there are more cases like this one, whether they lose their ability to communicate in all/most similar cases.
There's a controversial opposite, called https://en.wikipedia.org/wiki/Anton%E2%80%93Babinski_syndrom...
(Semi-relatedly, plug for Peter Watt's book https://en.wikipedia.org/wiki/Blindsight_(Watts_novel) )
Your sentence about "It almost seems to me as if..." seems to be hinting at https://en.wikipedia.org/wiki/Epiphenomenalism / https://plato.stanford.edu/entries/epiphenomenalism/ . This is a theory/proposal that consciousness does not actually cause behaviour, but is simply a subject experience caused by the physical processes that do cause behaviour (how's THAT for a gross oversimplification, fite me bro). I suggest that this is both an interesting theory in its own right, but also an interesting mental exercise to limber up how one thinks about things like volition/free-will and responsibility.
Is there anyone out there actually pushing this idea?
The basic idea is to compute the year day for the "0th" day of the month, then add the day of the month. For example, today, October 13th is the 286th day of the year, because October 0th is the 273rd day of the day, so 13 days past that is the 286th.
The simplest way, short of memorizing the 0th day of each month directly (or the 1st day...if you are going to take this approach might as well do the 1st, not the 0th), is to memorize how far off the actual 0th day is from what the 0th would be if all months were exactly 30 days.
Those differences are, for the 12 months:
0, -1, 1, 0, 0, 1, 1, 2, 2, 3, 4, 4
If F[m] refers to the the m'th entry in that list, 1 <= m <= 12, then the 0th day for month m is 30(m-1) + F[m]. E.g., for October, m = 10, so 30x(10-1) + F[10] = 30x9+3 = 273.If it is a leap year, add one more day for dates after February 29.
The F table has enough structure that it is not unreasonable to just memorize it.
For m >= 4, F[m] = (6x(m-4))//10. If you round toward -∞ instead of 0 when dividing, that works for m >= 3. It's probably harder to remember this than to just remember the table.
Let M[m] = the month factor from the Doomsday algorithm:
3, 0, 0, 4, 9, 6, 11, 8, 5, 10, 7, 12
Then F[m] = -(M[m] + 2 x m + 2) mod 7. Just remember that -1 <= F[m] <= 4, so you can pick the right range when reducing mod 7.For example, let's do July 20th, 1969, the day of the first Moon landing. July is the 7th month, and the month factor for that in the Doomsday algorithm is 11, so we have F[7] = -(11 + 2x7 + 2) = 1 mod 7, so F[m] = 1, and July 0th is 30x(7-1)+1 = 181, and so July 20th is the 201st day of the year.
BTW, if you find F[] easier to memorize than M[], you reverse the formula given above for computing F from M, to go the other way.
M[m] = -(F[m] + 2 x m + 2) mod 7.
While I'm here, one more Doomsday observation.
If a given year, Y, has year number N, then the next year with the same year number is:
• Y+6 if Y%4 == 0 or 1
• Y+11 if Y%4 == 2
• Y+5 if Y%4 == 3
(but only if that does not cross a century boundary).
The day of weeks within a century go on a 28 year cycle. Within any 28 consecutive years in a century, each of the 7 possible year number values occurs 4 times, once on a year with Y%4 == 0, once on a Y%4 == 1 year, and so on.
If you start with Y%4 == 0 year, the gaps between consecutive years with the same year number are 6, 11, 6, 5, which brings you back to the Y%4 == 0 year for the next 28 year cycle. You visit the years in the order 0, 2, 1, 3 mod 4 stepping this way.
If you memorize this pattern, it is easier to answer questions about when years or dates with specific properties happen. For example, let's say you want to know when there will next be a Friday the 13th in October.
Assuming that there will be another one this century, so using the century factor of 2 (for 20xx), you can work out that in this century Friday October 13 occurs when the year number is 0. Such a year was 2000, and 00 is a Y%4 == 0 year, so Friday October 13th occurs in 2000, 2000+6=2006, 2006+11=2017, 2017+6=2023, and then 2023+5 brings is to the 2028, the next 28 year cycle. So the next Friday October 13 is 2023.
BTW, the first Y in a century with year number N and with Y%4 == 0 is (3xN%7)x4.
If you don't care about starting from a Y%4 == 0 year, then it is easiest probably to just memorize the first year with year number 0, 1, 2, ..., 6 in a century:
0, 1, 2, 3, 9, 4, 5
and then add multiples of 28 to get to where you want to be. E.g., if you were trying to find the first time your birthday falls on a Thursday after 2040, and figured out you need year number 4, that table would tell you 2009 is such a year, and the 28 year cycles would tell you 2037, 2065, and 2093 are other such years, so you'd probably go to 2037 and work forward from there. 36 is a 1%4 year, so the next with the same year number is 2043, and you are done!Bonus: I just learned the word proleptic...
It doesn't need any external equipment to get the basics. To start out simply, just close your eyes in a (very) dark room and get the hang of the different sounds when a wall is close in front of you (couple inches) vs not.
Once you can clearly detect that difference, start extending from there. It definitely works ok.
i am not that old and not that young, and VR has been "around the corner" for 10 to 15 years already. even with all the hype and the amount of people that have been feverishly working on it, there's basically nothing to show for it. it will come eventually, but not in any useful form anytime soon.
what does moore's law have to do with ease of programming?
blockchain has no relevance to the common person.
Is this a serious comment? VR isn't around the corner, it's here. I'm sitting in my living room right now looking at the vive lighthouses on the wall, and my wife and I frequently use VR for all sorts of things.
for what? you didn't give any examples except the demonstration of the existence of VR products and VR "stuff".
I love music, and the best I can do pitchwise is remember a few references. So, it is like one or two perfect pitches. I worked at recall on those... hard. It takes an immersive memory to do, and it is like a little movie of that time and place. When I do that, I can get a note from a song I know well.
And I know what that note is on the scale. Good as it gets. Strange, I can often tell same or different too, even whem some time has passed, but mapping notes to pitches heard is hard.
The other one, btw, is 1khz. The Apple 2 beep. Similar memory. And both are fond ones.
Otherwise, I have great discrimination. Can pluck parts out a total mess, usually no problem. And I hear technical details well. Production, essentially, or signals in the noise.
I knew a girl with perfect pitch. Her recall of things and a conversation encouraged me to try, and it worked, but so much effort! And only for a couple, and those are shaky at best!
But, I have just a taste, and that is enough to validate what you put here. No way can I just pluck chords out of something without first getting some references. It's a sort of build up. Do a listen, tag some notes, do it again, tag some more, and over some iterations note values, chords become clear. And that sticks while I have the head space. Let it slip, and a lot slips. In that space, I could play, improvise then.
She could often just listen and write down whole phrases! Of course it was pretty great having her around. I could just ask for one, and she would nail it. Thanks!
A lot of how people manage is by feel and other cues. Or, they just do not improvise to the degree possible. Or, they do not care, instead just working from where things are at. Say, a fifth up would be good... doing that only needs a sense of the scale in play.
In any case, I do not agree relative pitch is intrinsically more useful. I would not value it that way.
What is generally more useful is being able to really listen. I do that and it comes in very handy for testing, various electromechanical tasks. Over time, I have gotten really good at being able to play sound back in my head that I have heard in the past.
On odd artifact is playing that radio snippet game. If I have heard the tune, I can often get it in very short, sometimes sub second bits of audio. All comes down to what is in that snip. Vocals are easiest. Even a bit, and the map to the person lights right up.
Or, a mechanism. If it is doing anything odd, I hear that and know what normal is to good precision.
Discrimination is broadly useful, maybe most useful in the broadest sense, I would argue. At least there is a strong case for it.
YMMV
There was a period in the mid-'90s at least when you could find really interesting personal pages by punching any given topic into your search engine of choice. It may actually have been petering out by the time Google arrived in '98, though.
The thing is "what do you type into the search engine." I, for one, would never think to type in any of probably tens of thousands of topics that, having seen, I think are awesome.
Just last night I remembered micromusic.net which introduced me to chiptunes and continues as a ghostship.
http://margo.student.utwente.nl/el/microwave/
and this page in particular:
http://margo.student.utwente.nl/el/microwave/mladen_story.ht...
Few additions http://amasci.com/news.html The Trafficwaves article made the WSJ, even with video. And Crown Flash (leaping sundogs) is now all over the place (see my upcoming bit on TV show Strange Evidence.) Magnetic analogy: https://www.youtube.com/watch?v=tH-CAhtXBfQ
Fortunately (unfortunately?) I only posted examples of my somewhat-kid-friendly magic. Nobody died in microwave oven accidents. That plus a couple of minor inventions (made public as a test to see how fast the idea-thieves would pounce on them.) None of my frightening demos using vacuum pumps and Spellman supplies. Well, I guess I did write about our hypergun which fired a small plastic slug through a clay block twelve inches thick (a spinoff of the very first quarter-shrinker capacitor bank,) and no little kids yet tried building one: http://amasci.com/amateur/capexpt.html#shrink
An unexamined backwater is at http://amasci.com/weird/wtext.html
I still haven't tried out the giant version of Lord Armstrong's water-bridge, from an eyewitness report where a liquid "snake" several feet thick was extending itself thousands of feet across desert land during a thunderstorm. If such things are possible, then an HV supply of a few hundred watts and a couple hundred kilovolts should produce something similar (the recent water-bridge experiments use 10 to 20KV supplies at under ten watts, a 2cm bridge, a mm or two in diameter.) Rainwater or ddw on very clean sand? Needs a big Cockroft-Walton diode stack http://amasci.com/freenrg/wasser.html
And the infamous invisible wall at the 3M factory, recently someone claims to have seen an example caused by electrodes connected to a reversed pole-pig transformer, where coins would bounce off the empty space. This is silghtly conceivable: a corona in air may develop a stable annular double-layer with a significant space-charge and pressure-gradient of air. But would a metal object bounce off? Or just short it out? Plasmas do tend to avoid cold bulk metal surfaces (Tesla managed to make an opaque "neon sign" with a metal tube rather than glass, but skeptics refused to believe it was real. The plasma in near-vacuum can travel many inches through thin metal tubes without leaping to the metal! Try it, it's really weird: pipes full of glowing "electricity" rather than water.)
Speaking of PRIMER, did they actually base the plot on meissner maglev "null coils," placed in a circle rather than parallel rows? Then, put it all inside a "One Atmosphere Plasma Globe" full of argon? But then, where do platinum catalytic converters figure in that? Or maybe they were just huddling inside a styrofoam version of the USS Eldridge hull, covered with active magnetic shielding coils, but not turning invisible.
:)
No bat species are blind. Microbats have poor visual acuity but their vision is on par with a human's.
Reference: Tuttle's work
Thank you.
I must now ascertain the veracity of the “as poor as a church mouse” trope.
I didn't even know about that trope? Is that even a real expression or did you just make it up? Makes zero sense.
Puritan, poor, pure, you get the gist. Actually, these are not said to be related, with peh₂w- and pewh₂- reconstructed, respectively. But in my humble opinion, "humble" could semanticly connectboth. peh₂w-, whence poor* and few, is also the root to pupil and puberty, via Latin pūpa/pūpus. On that note, words for orphan have been surprisingly productive, orphan supposedly giving German "Arbeit" - work, its origin unsure but perhaps connected to orpheus. Maybe orphans nominally under the care of the "father" are the mice in question. Mouse is a humbling diminutive, at least in German. In the pied piper, children are compared to mice. Boy can mean male servant (it's root is not compare to these here, though, might still be in an older layer of the languages' roots). Spanish puta is still unexplained, but Portuguese has puto (boy), Italian puttus (child) - said to be cognate with, no not pupa, but purus. Spanish and Portuguese also have moço, moço (boy, girl) of "unknown origin". But they do use rat related words for mouse instead, while muro is archaic. Baltic languages have instead pele (mouse), from pel- (grey, alternatively pelh), whence also pale. Surely, grey mouse is a synonym for plain, which is one of the glosses found for poor. Plain again is from pleh₂-, which derives several words for thin, flat, further tame* and perhaps also plague. Plage, Blage is a dysphemism for children in German. A page is a young servant in French and a page of paper is plain and flat. mew- also derives a sense of small, but whether that pertains to mouse or not is debatable. There's also mey which could be confused, meaning e.g. to change. Another spanish word for boy is muchacho, from mocho (mutilated, incomplete; hornless; having a hypocritical and ostentatious faith; cut short; bald headed), of uncertain origin). Then compare patch, patchy hair to page or Russian plóskij (flat, plain, level, tame, trivial). I mean, chico (boy) probably relates as much to chick as mouse to maid. Mouse rather rhymes with house (the house mouse), therefore compare house, husband and husbandry. I have no idea where this might lead, possibly astray, though.