Why Building Better Offices Is The Key To Employee Engagement
Interaction Designer and Audio-visual Technologist at ESI Design illustrates the value in creating environments filled with surprise and delight
Read More On PSFK.com
Sometimes I really wonder how people manage to be larries but also kind of think that louis is some kind of idiot that just accepts whatever ‘nasty selfish Harry’ is doing like he’s some love fool that just accepts things while the fandom clearly sees through said version of Harry like what kind of relationship do people think they have? And do people realise they are basically questioning louis’ intelligence?
me: why haven't i bought this game yet
me: oh right i forgot i need money to purchase goods and services
*5 minutes pass*
me:
me:
me:
me: why haven't i bought this game yet
Weird how the moment my FP goes to bed/stops talking to me is the same moment my mood goes from 100 to 0…. hm, must be a coincidence….
1. Autism is a fundamental part of who we are and how we experience the world and it cannot be separated from who we are as people. Autism is not something which is clearly separated from our identities and our personalities - it’s something which affects every aspect of how we think about, experience and interact with the world around us. Autism isn’t something we have or something we’re suffering from, it’s something we are. For the vast majority of autistic people, autism is a part of our identity which means that despite common belief most of us prefer to be called “autistic” as opposed to “people with autism.” Do not tell us that we only have value if we can separate our identities and our personalities from autism.
2. The vast majority of autistic people do not want a cure, we want acceptance and accommodations. Do not put your time and money into researching how to cure autism and how to prevent it, put time and money into accommodating and accepting autistic people. We do not wish to become neurotypical, we wish to change society so that we can be accommodated, accepted and included as autistic people. Our goal isn’t to become as close to neurotypical as possible, it is to get the opportunity to live happy, fulfilling lives as autistic people. It is society that needs to chance, not us.
3. We do not support Autism Speaks or their campaign #LightItUpBlue and neither should you. If you want to support autistic people, check out ASAN or Autism Women’s Network instead. If you don’t know why autistic people don’t support Autism Speaks, check out the many resources linked in this post.
4. Functioning labels are at best inaccurate and at worst actively harmful. Functioning labels (claiming that some autistic people are “high-functioning” while others are “low-functioning”) do more harm than good, not just because they aren’t able to give you an accurate impression of what supports an individual autistic person needs but because they’re mainly used to either silence or invalidate autistic people. Autistic people who speak up about the issues concerning them are labelled “high-functioning” to invalidate what they have to say as being inaccurate and irrelevant for other autistic people and so-called “low-functioning” autistic people are being silenced and spoken over because they are written off as too ‘low-functioning’ to have nuanced, relevant opinions or even communicate at all. Instead of forcing autistic people into one of two boxes, name the specific issues or strengths that you are referring to when you’re calling them low-functioning or high-functioning. Are they non-verbal? Say that instead of calling them low-functioning. Are they able to manage a job? Say that instead of calling them high-functioning.
5. Non-verbal autistic people can and do learn to communicate using other communication forms than verbal speech and they’re all individuals with their own thoughts, feelings, wants and opinions. You do not get to speak on behalf of non-verbal autistic people. You do not get to assume that you know exactly what they think, want and feel, especially not when you have never made any effort to communicate with any of them. Instead of assuming that you know what non-verbal autistic people think and feel, try listening to what they have to say by reading the words of some non-verbal autistic people such as @lysikan or Amy Sequenzia or Emma Zurcher-Long.
6. Applied Behavior Analysis, the most widespread and well-known therapy for autistic children, does more harm than good. The goal of ABA therapy is to train and force autistic people into hiding their autistic traits by all means possible as if passing for neurotypical should be the goal of all autistic people regardless of what consequences it might have for their general well-being and their mental health. If you don’t see why that is a problem, check out this masterpost by @neurowonderful.
7. People diagnosed with Aspergers Syndrome are just as autistic as people diagnosed with other variants of Autism Spectrum Disorder. Aspergers is autism and to emphasize this, aspergers and other variants of autism have been united under a broader diagnosis called “autism spectrum disorder” in the DSM-5, Back when aspergers was a separate diagnosis, the only difference between whether you got diagnosed with aspergers or autism was whether you spoke before you were three years old - something which says approximately nothing about your struggles and abilities later in life. The common misconception that aspergers and autism is two different things is just that - a misconception.
8. If you want to learn more about autism, listen to autistic people - not our parents, our siblings, our therapists our or caregivers. Autistic people are the ones who know the most about being autistic, so if you want to learn about autism we’re the ones you should ask. If you want to learn more about the different aspects of autism, @neurowonderful‘s youtube series “Ask An Autistic” is a good place to start. Here is an index over all the episodes so that you can easily find the topic you want to learn about. You can also visit @askanautistic where autistic people are ready to answer whatever questions you may have about autism.
Please reblog this post. It’s time tumblr starts listening to autistic people.
Human Spatial Memory is Made Up of Numerous Individual Maps
Spatial memory is something we use and need in our everyday lives. Time for morning coffee? We head straight to the kitchen and know where to find the coffee machine and cups. To do this, we require a mental image of our home and its contents. If we didn’t have this information stored in our memory, we would have to search through the entire house every time we needed something. Exactly how this mental processing works is not clear. Do we use one big mental map of all of the objects we have in our home? Or do we have a bunch of small maps instead – perhaps one for each room? Tobias Meilinger and Marianne Strickrodt, cognitive scientists from the Max Planck Institute for Biological Cybernetics, investigated these questions in a research study.
The research is in Cognition. (full access paywall)
So at work today I worked with a new server and she told me and the other servers how much she loved me and how good of a worker I am and that I’d make an amazing server and omg its so nice to see people appreciate my work. My manager thanked me for coming in and doing my job and above and beyond and I was just like “dude I’m just working” lol and he’s like nah you do more than that and I’m just glad they liked my work ethic and that I get a serving job cause that pays more, a lot more. AND it’s a good job until I can do acting full time =‘) and a lot of servers tell me they love me and appreciate me <3 WHICH IS AMAZING CAUSE THEY WILL TIP ME WELL !!!
Masterpiece by Mr. Golden Sun by carloyuen #SocialFoto
The Publish/Subscribe pattern is one of the most used patterns in software, especially in User Interfaces with JavaScript. It is used whenever 2 pieces of a system need to communicate, but cannot or should not communicate directly. For example, a system receives data from a server at regular intervals that a bunch of components can use (which are added while the system runs):
var Publisher = function() { var self = { subscribers: [] }; self.subscribe = function(callback) { self.subscribers.push(callback); }; self.publish = function(data) { self.subscribers.forEach(function(callback) { callback(data); }); }; return self; } var publisher = Publisher(); // Simulate a set of data being returned over time var serverStream = function(callback) { Array.apply(null, { length: 5 }).forEach(function(unused, index) { var ms = index * 500 setTimeout(function() { callback('data-piece: ' + ms + ' ms'); }, ms); }); }; serverStream(publisher.publish); // Simulate components being registered over time. publisher.subscribe(function(data) { console.info('subscribe from part 1', data); }); setTimeout(function() { publisher.subscribe(function(data) { console.info('subscribe from part 2', data); }); }, 1000) // subscribe from part 1 data-piece: 0 ms // subscribe from part 1 data-piece: 500 ms // subscribe from part 1 data-piece: 1000 ms // subscribe from part 1 data-piece: 1500 ms // subscribe from part 2 data-piece: 1500 ms // subscribe from part 1 data-piece: 2000 ms // subscribe from part 2 data-piece: 2000 ms
The problem is that same pattern with almost identical code will be written over and over again in the same project. So instead of creating a publisher and subscriber with multiple message types each time this pattern needs to be used, it is simpler to just use new instances of the publisher object each time:
var messageSet1 = function(callback) { Array.apply(null, { length: 3 }).forEach(function(unused, index) { setTimeout(function() { callback('Hello ' + index); }, index * 500); }); }; var messageSet2 = function(callback) { Array.apply(null, { length: 3 }).forEach(function(unused, index) { setTimeout(function() { callback('World ' + index); }, index * 500); }); }; var MessageBox = function() { var self = { publishers: [] }; self.streams = function(streams) { self.publishers = []; streams.forEach(function(stream, index) { self.publishers.push(Publisher()); stream(self.publishers[index].publish); }); }; self.subscribeTo = function(index, callback) { return self.publishers[index].subscribe(callback); } return self; }; var messageBox = MessageBox(); // Use a trivial example to preserve clarity messageBox.streams([messageSet1, messageSet2]); messageBox.subscribeTo(0, function(data) { console.info('subscribe from part 1B', data); }); messageBox.subscribeTo(1, function(data) { console.info('subscribe from part 2B', data); }); // subscribe from part 1B Hello 0 // subscribe from part 2B World 0 // subscribe from part 1B Hello 1 // subscribe from part 2B World 1 // subscribe from part 1B Hello 2 // subscribe from part 2B World 2
A non-index based naming scheme could be introduced by passing more data into the streams call, but I wanted to keep the example as minimal as possible.
Github Location: https://github.com/Jacob-Friesen/obscurejs/blob/master/2016/publishSubscribeAutomation.js
Apple today began selling the delayed AirPods, but the wireless headphones almost immediately skated to a 2017 ship date.
The Cupertino, Calif. company warned customers that the product would be available in “limited quantities at launch.”
Indeed.
The $159 headphones – which resemble enlarged ear buds sans wires – debuted on Apple’s online store earlier Tuesday. Within minutes, the estimated ship date shifted from Dec. 21 to mid-January 2017.
Apple introduced the AirPods in September, alongside the iPhone 7 and 7 Plus. At the time, executives said that the headphones would be available in October. Late in October, however, Apple confirmed that the AirPods were delayed, saying, “We need a little more time before AirPods are ready for our customers.”
To read this article in full or to leave a comment, please click here
via http://www.computerworld.com/article/3149861/computer-peripherals/apple-launches-late-airpods-into-immediate-ship-slip.html#tk.rss_news and www.computechtechnologyservices.com