Slashdot Mirror


User: irrational_design

irrational_design's activity in the archive.

Stories
0
Comments
544
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 544

  1. Re:Teaching moment on Google's Featured Snippets Are Worse Than Fake News (theoutline.com) · · Score: 1

    It should, but in my experience it doesn't. The youth I interact with take just about everything as non-fiction.

  2. Re:Teaching moment on Google's Featured Snippets Are Worse Than Fake News (theoutline.com) · · Score: 1

    I think the difference is when I was growing up there was no WWW (there was an Internet, but we weren't aware of it). So reading material was pretty easily distinguished between fiction and non-fiction. If I was reading something and I don't know who the author is and what their credentials are I would assume it was fiction.

  3. Re:Teaching moment on Google's Featured Snippets Are Worse Than Fake News (theoutline.com) · · Score: 1

    I have teenagers and am an online instructor for a university class (mostly late teens/early 20 year olds). I am consistently amazed at how readily "that" generation accepts anything they read on the internet. It's like they have no filter. I've tried imparting critical thinking skills to my own teenagers, but it doesn't seem to stick since just about every day they relate some new "fact" they learned on social media that I have to correct.

  4. Perfect Timing! on Woolly Mammoth On Verge of Resurrection, Scientists Reveal (theguardian.com) · · Score: 1

    The ice is melting, global temperatures are going up... It seems like the perfect time to create a creature with "subcutaneous fat, long shaggy hair and cold-adapted blood".

  5. Wait, was there a math test that I was supposed to take before visiting Slashdot? Because I missed it. I certainly don't already know this stuff. Then again I don't know much beyond Algebra 1 (and there I don't know much beyond x +1 = 5).

  6. Re:Coffee on Ask Slashdot: How To Get Started With Programming? [2017 Edition] · · Score: 1

    You're doing it wrong. After lunch is nap time.

  7. Re:Interesting, but I'm not sure I trust it on Reached Via a Mind-Reading Device, Deeply Paralyzed Patients Say They Want to Live (technologyreview.com) · · Score: 1

    You haven't read much if you think that is probably the most traumatic thing imaginable.

  8. Re:Apple fans will buy anything, news at 11 on It's Time To Admit Apple Watch Is a Success (imore.com) · · Score: 1

    I see them fairly frequently, but they are still rare enough that I do a double take when I see one.

  9. Re:Polluting the environment on Oxygen From Earth's Atmosphere May Be Traveling To the Moon's Surface (theverge.com) · · Score: 1

    What? Who cares about Earth's oxygen on the moon! I just want a moon base!

  10. Polluting the environment on Oxygen From Earth's Atmosphere May Be Traveling To the Moon's Surface (theverge.com) · · Score: 1

    Just one more way we are polluting the environment! The EPA needs to get on this stat!

    Actually, maybe NASA could convince people this is a legitimate problem so they will get behind funding a moon base.

  11. Re:What about electrical, plumbing etc? on Woman Built House From the Ground Up Using Nothing But YouTube Tutorials (digitaltrends.com) · · Score: 1

    Why do you doubt this? Where I live in the US we can do absolutely everything except connect the electric/gas/water lines to the public grid. That connection has to be done by a licensed professional. But once you get past the public interface I can do anything and everything (as long as I have a permit - but those are dead simple to get). If you have any kind of technical aptitude it is dead simple to read and understand the codes and learn how to do all your own plumbing, electrical, etc. work. Have you met the guys who are "professionals"? If those people can learn to do it then so can I.

  12. Re: What about electrical, plumbing etc? on Woman Built House From the Ground Up Using Nothing But YouTube Tutorials (digitaltrends.com) · · Score: 1

    Yeah, I don't know. My brother is a union electriction, but prior to that he went to college and worked as an editor for a major newspaper. He decided that he didn't like working in an office and after doing a ton of research decided that becoming an electrician was the best thing for him. He reported that he was shocked at the idiots he trained with and worked with. His advice to me was to read up on it on my own and do my own work instead of assuming any union electrician has an IQ above that of a gnat (himself excepted of course ;-) Now then, if the electrician has an electrical engineering degree, that is another matter.

  13. Re:What about electrical, plumbing etc? on Woman Built House From the Ground Up Using Nothing But YouTube Tutorials (digitaltrends.com) · · Score: 1

    "australia: yeah we don't even trust our kids to cross the road" Uh, duh? They are likely to run into about 50 deadly insects/reptiles/mammals while attempting that!

  14. Re:What about electrical, plumbing etc? on Woman Built House From the Ground Up Using Nothing But YouTube Tutorials (digitaltrends.com) · · Score: 1

    Different parts of the US have different laws, but where I live you can do anything you want, except for running natural gas lines, as long as you have the right permits (basically you tell them what you are going to do, pay some money for the permit, and let them inspect it when it is all done).

  15. Re:And the shift to Databases away from Oracle on Oracle Effectively Doubles Licence Fees To Run Its Stuff in AWS (theregister.co.uk) · · Score: 2

    That hasn't been my experience. After using Oracle for 15 years (and having consultants like Burleson tweak our database many times) we have moved to Postgresql. Our experience is that Postgres is as fast or faster than Oracle in every instance.

  16. Re:And the shift to Databases away from Oracle on Oracle Effectively Doubles Licence Fees To Run Its Stuff in AWS (theregister.co.uk) · · Score: 1

    It turns out this is harder than I would have thought it would be. We determined last year that we needed to move off of Oracle to Postgresql (this is just one database for one website that has been hosted on Oracle since 2001). I have been working full-time since last April to make that happen and the project still isn't done. We mainly decided to switch for monetary reasons, but there have been a lot of benefits. Postgres's documentation is head and shoulders above Oracle's. We've found that many things, such as creating a hot-standby replicated database, are far easier in Postgres than Oracle. We've found that our queries are running the same speed or slightly faster. The main thing that has been taking so long is Postgres is so much more strict than Oracle. It's kind of like the difference between strict and dynamic typed languages. I've been rewriting bits and pieces of tens of thousands of SQL statements to get them to work on Postgres. Here is a list of some of the differences between the two:

    replace nvl with coalesce

    replace rownum = 1 with LIMIT 1

    replace listagg with string_agg

    replace recursive hierarchy (start with/connect by/prior) with recursive

    rewrite the method of doing case/accent insensitive queries.

    replace minus with except

    replace SYSDATE with CURRENT_TIMESTAMP

    replace trunc(sysdate) with CURRENT_DATE

    replace artificial date sentinels/fenceposts like to_date(’01 Jan 1900’) with '-infinity'::date

    remove dual table references

    replace decode with case statements

    replace unique with distinct

    replace mod with % operator

    replace merge into with INSERT ... ON CONFLICT DO UPDATE/NOTHING

    change the default of any table using sys_guid() as a default to gen_random_uuid()

    oracle pivot and unpivot do not work in postgres - use unnest

    ORDER BY NLSSORT(english, 'NLS_SORT=generic_m’) becomes ORDER BY gin(insensitive_query(english) gin_trgm_ops)

    replace UNISTR( with U&’

    Oracle: uses IS NULL to check for empty string; postgres uses empty string and null are different

    PostgreSQL requires a sub-SELECT surrounded by parentheses, and an alias must be provided for it.

    any functions in the order by clause must be moved to the select statement (e.g. order by lower(column_name))

  17. Re:The new IE 6 on Google Removes Plugin Controls From Chrome, Reports Claim (ghacks.net) · · Score: 1

    You mean like Firefox? I use Firefox on a daily basis (I still prefer Firebug over Chrome's developer tools) and it works great. YMMV

  18. Mobile first responsive design on Ask Slashdot: A Point of Contention - Modern User Interfaces · · Score: 1

    In terms of websites the culprit is mobile first responsive design. The interfaces are designed to work well on phones and tablets and to be good enough for desktop machines. So they are designed first to work well with fat fingers and good enough for keyboards.

  19. When would I use this? on Alexa and Google Assistant Have a Problem: People Aren't Sticking With Voice Apps They Try (recode.net) · · Score: 4, Insightful

    I am almost never in a place where I would feel comfortable talking aloud to me phone. Should I get up and go somewhere private to talk to my phone, or just stay here and use the screen? Hmm, that is such a tough decision.

  20. Re:Not a single time traveler? on Donald Trump Is Sworn In As the 45th US President (reuters.com) · · Score: 1

    10 points to [whatever house spiritplumber belongs to]

  21. Re:already exceeding expectations on Donald Trump Is Sworn In As the 45th US President (reuters.com) · · Score: 1

    I know you're joking, but just to be clear I didn't mean "what is the the difference between x and y" but "how much different things are this time around!"

  22. Re:already exceeding expectations on Donald Trump Is Sworn In As the 45th US President (reuters.com) · · Score: 1

    How different is this than when Obama was first sworn in 8 years ago. I remember reading so many comments about his "getting some" from Michelle that night. Trump on the other hand (pun intended)...

  23. How does a shark gain asexual reproduction through experience?

  24. She did what? on Female Shark Learns To Reproduce Without Males After Years Alone (newscientist.com) · · Score: 5, Funny

    She _learned_ it did she? Hopefully the same book that taught her about asexual reproduction doesn't have a chapter on lasers.

  25. Re:But why? on Apple Cuts Tim Cook's Pay After 2016 Performance Falls Short (cnbc.com) · · Score: 1

    It has to do with how much it costs to replace them. Fast food workers are paid little since they can be replaced with anyone off the street. Despite what us plebes might think, the same doesn't hold true for people at the CEO level. Thus their outrageous salaries.