ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Miscellaneous Tech News

    News
    83
    7.4k
    2.6m
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • DanpD
      Danp @DustinB3403
      last edited by

      @dustinb3403 said in Miscellaneous Tech News:

      But they've finally fixed it . . . .

      Apparently it was never broken...

      “To be clear, this is not a vulnerability or bug in Apple’s code... basically just unclear/confusing documentation that led to people using their API incorrectly,” Wardle told Ars. “Apple updated [its] documents to be more clear, and third-party developers just have to invoke the API with a more comprehensive flag (that was always available).”

      DustinB3403D 1 Reply Last reply Reply Quote 0
      • DustinB3403D
        DustinB3403 @Danp
        last edited by

        @danp that still counts as broken in my world. If the people developing the software don't understand how to use the tools they need to develop the software. . . well then there is a break there. .

        FiyaFlyF 1 Reply Last reply Reply Quote 2
        • FiyaFlyF
          FiyaFly @DustinB3403
          last edited by

          @dustinb3403 said in Miscellaneous Tech News:

          @danp that still counts as broken in my world. If the people developing the software don't understand how to use the tools they need to develop the software. . . well then there is a break there. .

          Let this be a lesson to everyone who is writing scripts and programming...
          COMMENT YOUR CODE.

          scottalanmillerS 1 Reply Last reply Reply Quote 4
          • scottalanmillerS
            scottalanmiller @FiyaFly
            last edited by

            @fiyafly said in Miscellaneous Tech News:

            @dustinb3403 said in Miscellaneous Tech News:

            @danp that still counts as broken in my world. If the people developing the software don't understand how to use the tools they need to develop the software. . . well then there is a break there. .

            Let this be a lesson to everyone who is writing scripts and programming...
            COMMENT YOUR CODE.

            Better to just write code that is readable, if you need to comment it, check to see if there isn't a better way.

            dafyreD JaredBuschJ 2 Replies Last reply Reply Quote 0
            • dafyreD
              dafyre @scottalanmiller
              last edited by dafyre

              @scottalanmiller said in Miscellaneous Tech News:

              @fiyafly said in Miscellaneous Tech News:

              @dustinb3403 said in Miscellaneous Tech News:

              @danp that still counts as broken in my world. If the people developing the software don't understand how to use the tools they need to develop the software. . . well then there is a break there. .

              Let this be a lesson to everyone who is writing scripts and programming...
              COMMENT YOUR CODE.

              Better to just write code that is readable, if you need to comment it, check to see if there isn't a better way.

              There's never an excuse to not comment code -- even clean code.

              Edit: I don't mean comment excessively.

              1 Reply Last reply Reply Quote 1
              • JaredBuschJ
                JaredBusch @scottalanmiller
                last edited by

                @scottalanmiller said in Miscellaneous Tech News:

                @fiyafly said in Miscellaneous Tech News:

                @dustinb3403 said in Miscellaneous Tech News:

                @danp that still counts as broken in my world. If the people developing the software don't understand how to use the tools they need to develop the software. . . well then there is a break there. .

                Let this be a lesson to everyone who is writing scripts and programming...
                COMMENT YOUR CODE.

                Better to just write code that is readable, if you need to comment it, check to see if there isn't a better way.

                Readable doens't mean shit. All code is inherently readble because it is a logical process flow.

                It might be horribly inefficient, but it is always readable.

                Even the cleanest code tells you jack shit about what the though process was for the design. That is what comments are for.

                scottalanmillerS 1 Reply Last reply Reply Quote 3
                • scottalanmillerS
                  scottalanmiller @JaredBusch
                  last edited by

                  @jaredbusch said in Miscellaneous Tech News:

                  @scottalanmiller said in Miscellaneous Tech News:

                  @fiyafly said in Miscellaneous Tech News:

                  @dustinb3403 said in Miscellaneous Tech News:

                  @danp that still counts as broken in my world. If the people developing the software don't understand how to use the tools they need to develop the software. . . well then there is a break there. .

                  Let this be a lesson to everyone who is writing scripts and programming...
                  COMMENT YOUR CODE.

                  Better to just write code that is readable, if you need to comment it, check to see if there isn't a better way.

                  Readable doens't mean shit. All code is inherently readble because it is a logical process flow.

                  It might be horribly inefficient, but it is always readable.

                  Even the cleanest code tells you jack shit about what the though process was for the design. That is what comments are for.

                  It means a lot. All code tells you what the programmer decided to do, comments to say what they failed to do is a silly thing to have in code.

                  Readability applies to code just like it applies to English. You can make technically correct English that is hard to read, or easy to read. Same with code. Readability is very real, and standard study material for SD and CS courses. Knuth, the father of CS, was a key advocate and researcher in this area.

                  DustinB3403D 1 Reply Last reply Reply Quote 0
                  • DustinB3403D
                    DustinB3403 @scottalanmiller
                    last edited by

                    @scottalanmiller said in Miscellaneous Tech News:

                    @jaredbusch said in Miscellaneous Tech News:

                    @scottalanmiller said in Miscellaneous Tech News:

                    @fiyafly said in Miscellaneous Tech News:

                    @dustinb3403 said in Miscellaneous Tech News:

                    @danp that still counts as broken in my world. If the people developing the software don't understand how to use the tools they need to develop the software. . . well then there is a break there. .

                    Let this be a lesson to everyone who is writing scripts and programming...
                    COMMENT YOUR CODE.

                    Better to just write code that is readable, if you need to comment it, check to see if there isn't a better way.

                    Readable doens't mean shit. All code is inherently readble because it is a logical process flow.

                    It might be horribly inefficient, but it is always readable.

                    Even the cleanest code tells you jack shit about what the though process was for the design. That is what comments are for.

                    It means a lot. All code tells you what the programmer decided to do, comments to say what they failed to do is a silly thing to have in code.

                    Readability applies to code just like it applies to English. You can make technically correct English that is hard to read, or easy to read. Same with code. Readability is very real, and standard study material for SD and CS courses. Knuth, the father of CS, was a key advocate and researcher in this area.

                    But reading something and understanding what the heck is going on are two different things. I know people who have sat down and programmed for hours, and then went and looked at the code and had no idea what they did "or how it works".

                    Comments are meant to be a simple "this does this" in plain language, not programming language that would require you to look at the entire code to understand what is going on.

                    scottalanmillerS 1 Reply Last reply Reply Quote 2
                    • scottalanmillerS
                      scottalanmiller @DustinB3403
                      last edited by

                      @dustinb3403 said in Miscellaneous Tech News:

                      @scottalanmiller said in Miscellaneous Tech News:

                      @jaredbusch said in Miscellaneous Tech News:

                      @scottalanmiller said in Miscellaneous Tech News:

                      @fiyafly said in Miscellaneous Tech News:

                      @dustinb3403 said in Miscellaneous Tech News:

                      @danp that still counts as broken in my world. If the people developing the software don't understand how to use the tools they need to develop the software. . . well then there is a break there. .

                      Let this be a lesson to everyone who is writing scripts and programming...
                      COMMENT YOUR CODE.

                      Better to just write code that is readable, if you need to comment it, check to see if there isn't a better way.

                      Readable doens't mean shit. All code is inherently readble because it is a logical process flow.

                      It might be horribly inefficient, but it is always readable.

                      Even the cleanest code tells you jack shit about what the though process was for the design. That is what comments are for.

                      It means a lot. All code tells you what the programmer decided to do, comments to say what they failed to do is a silly thing to have in code.

                      Readability applies to code just like it applies to English. You can make technically correct English that is hard to read, or easy to read. Same with code. Readability is very real, and standard study material for SD and CS courses. Knuth, the father of CS, was a key advocate and researcher in this area.

                      But reading something and understanding what the heck is going on are two different things. I know people who have sat down and programmed for hours, and then went and looked at the code and had no idea what they did "or how it works".

                      Comments are meant to be a simple "this does this" in plain language, not programming language that would require you to look at the entire code to understand what is going on.

                      Right, so they DIDN'T make it readable, hence the problem. If they had, and knew how to program and weren't just guessing - you still have to be literate, then the comments would have been superfluous. Just because you know people who make unreadable code doesn't mean readable code is the issue, it means they didn't do it and then had to use the bandaid of comments for that very reason.

                      DustinB3403D 1 Reply Last reply Reply Quote 0
                      • DustinB3403D
                        DustinB3403 @scottalanmiller
                        last edited by

                        @scottalanmiller said in Miscellaneous Tech News:

                        @dustinb3403 said in Miscellaneous Tech News:

                        @scottalanmiller said in Miscellaneous Tech News:

                        @jaredbusch said in Miscellaneous Tech News:

                        @scottalanmiller said in Miscellaneous Tech News:

                        @fiyafly said in Miscellaneous Tech News:

                        @dustinb3403 said in Miscellaneous Tech News:

                        @danp that still counts as broken in my world. If the people developing the software don't understand how to use the tools they need to develop the software. . . well then there is a break there. .

                        Let this be a lesson to everyone who is writing scripts and programming...
                        COMMENT YOUR CODE.

                        Better to just write code that is readable, if you need to comment it, check to see if there isn't a better way.

                        Readable doens't mean shit. All code is inherently readble because it is a logical process flow.

                        It might be horribly inefficient, but it is always readable.

                        Even the cleanest code tells you jack shit about what the though process was for the design. That is what comments are for.

                        It means a lot. All code tells you what the programmer decided to do, comments to say what they failed to do is a silly thing to have in code.

                        Readability applies to code just like it applies to English. You can make technically correct English that is hard to read, or easy to read. Same with code. Readability is very real, and standard study material for SD and CS courses. Knuth, the father of CS, was a key advocate and researcher in this area.

                        But reading something and understanding what the heck is going on are two different things. I know people who have sat down and programmed for hours, and then went and looked at the code and had no idea what they did "or how it works".

                        Comments are meant to be a simple "this does this" in plain language, not programming language that would require you to look at the entire code to understand what is going on.

                        Right, so they DIDN'T make it readable, hence the problem. If they had, and knew how to program and weren't just guessing - you still have to be literate, then the comments would have been superfluous. Just because you know people who make unreadable code doesn't mean readable code is the issue, it means they didn't do it and then had to use the bandaid of comments for that very reason.

                        Comprehension and being able to read are different things. I can read English, it doesn't mean that I might understand what the author was attempting to convey.

                        Notes are meant for as "plain English" definitions of what is going on.

                        Think of it like this, someone who wants to learn how to program can read my GitHub, but likely would have no idea what any of it does without the comments.

                        1 Reply Last reply Reply Quote 2
                        • black3dynamiteB
                          black3dynamite
                          last edited by

                          https://www.nethserver.org/nethserver-7-5-released/

                          1 Reply Last reply Reply Quote 2
                          • black3dynamiteB
                            black3dynamite
                            last edited by

                            https://www.omgubuntu.co.uk/2018/06/the-linux-foundation-say-we-should-celebrate-microsoft-buying-github

                            1 Reply Last reply Reply Quote 0
                            • DustinB3403D
                              DustinB3403
                              last edited by

                              For anyone who uses Mac products it looks as though Apple broke Office 365 installs for the interim) Work-arounds can be found in the image below.

                              0_1528978194619_Mac-breaking-office.png

                              dbeatoD 1 Reply Last reply Reply Quote 3
                              • dbeatoD
                                dbeato @DustinB3403
                                last edited by

                                @dustinb3403 said in Miscellaneous Tech News:

                                gh Apple broke Office 365 installs for the interim) Work-arounds can be found in the image below.

                                Thanks!

                                1 Reply Last reply Reply Quote 0
                                • dbeatoD
                                  dbeato
                                  last edited by

                                  Let’s Encrypt Acmev2 for HAProxy

                                  https://www.haproxy.com/blog/lets-encrypt-acme2-for-haproxy/

                                  JaredBuschJ 1 Reply Last reply Reply Quote 3
                                  • FiyaFlyF
                                    FiyaFly
                                    last edited by

                                    This post is deleted!
                                    1 Reply Last reply Reply Quote 0
                                    • ObsolesceO
                                      Obsolesce
                                      last edited by

                                      https://betanews.com/2018/06/14/google-open-source-gif-cli-terminal/

                                      1 Reply Last reply Reply Quote 0
                                      • black3dynamiteB
                                        black3dynamite
                                        last edited by black3dynamite

                                        https://www.omgubuntu.co.uk/2018/06/kde-plasma-5-13-release-video
                                        Youtube Video

                                        momurdaM 1 Reply Last reply Reply Quote 0
                                        • dbeatoD
                                          dbeato
                                          last edited by

                                          https://blogs.msdn.microsoft.com/powershell/2018/06/14/powershell-script-analyzer-1-17-1-released/

                                          1 Reply Last reply Reply Quote 0
                                          • B
                                            bnrstnr
                                            last edited by

                                            Couldn't post this yesterday, because, well, WOW internet services were down yesterday for all of SE MI because some construction jackass killed their fiber. My house was down, work, favorite restaurants couldn't process credit cards... Big oopsies there.

                                            https://twitter.com/WOWCare/status/1007314013569642496

                                            For some reason my Verizon internet sucked yesterday too, could hardly load anything during the outage.

                                            dafyreD DustinB3403D 2 Replies Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 87
                                            • 88
                                            • 89
                                            • 90
                                            • 91
                                            • 372
                                            • 373
                                            • 89 / 373
                                            • First post
                                              Last post