#DevDiscuss Archive


Tuesday November 13, 2018
9:00 PM EST

  • ThePracticalDev Nov 13 @ 9:05 PM EST
    Time for #DevDiscuss 😻 Tonight's topic is ALGORITHMS 🤖 Some jump-off questions: - Where do "algorithms" fit in with practical day-to-day development? - Which named algorithms are noteworthy and worth learning? - How should we teach algorithms compared to other concepts?
  • kylegalbraith Nov 13 @ 9:07 PM EST
    Algorithms don't play a huge role in my day-to-day. Certainly, there are algorithms implemented in libraries/utilities I use on the day-to-day, but I don't have to implement/change them on a daily basis. #DevDiscuss
  • kellyjandrews Nov 13 @ 9:08 PM EST
    Love using algorithms. I recently created one to determine a winner on a connect four game I'm building. Algorithms do work. #DevDiscuss
    • ThePracticalDev Nov 13 @ 9:05 PM EST
      Time for #DevDiscuss 😻 Tonight's topic is ALGORITHMS 🤖 Some jump-off questions: - Where do "algorithms" fit in with practical day-to-day development? - Which named algorithms are noteworthy and worth learning? - How should we teach algorithms compared to other concepts?
  • KPath001 Nov 13 @ 9:08 PM EST
    Algorithms help make efficient software on your day to day projects. In my opinion algorithms are best taught by iterating over many coding puzzles which show off the results on how effective algorithms can be. #devdiscuss
    In reply to @ThePracticalDev
  • bendhalpern Nov 13 @ 9:08 PM EST
    We sometimes think of algorithms as an "introductory" topic, but you can *always* learn more about algorithms. Having a vocabulary of useful algorithms is incredibly valuable in software development. #DevDiscuss
    • ThePracticalDev Nov 13 @ 9:05 PM EST
      Time for #DevDiscuss 😻 Tonight's topic is ALGORITHMS 🤖 Some jump-off questions: - Where do "algorithms" fit in with practical day-to-day development? - Which named algorithms are noteworthy and worth learning? - How should we teach algorithms compared to other concepts?
  • dangolant Nov 13 @ 9:08 PM EST
    I feel like the field would be much more accessible, and maybe resistant to hype-cycles / suspicion from non-practitioners, if we used the words “playbook” or “recipe” or something instead #devdiscuss
    In reply to @ThePracticalDev
  • kylegalbraith Nov 13 @ 9:10 PM EST
    That said, I do have to consider the performance/complexity of an algorithm I implement for my code. This is different than say implement a new binary or depth-first search IMO. If I am looping over a bunch of data, how big is that data? is linear time OK? #DevDiscuss
  • bendhalpern Nov 13 @ 9:11 PM EST
    - Explore-Exploit - Exponential backoff A couple types of high-level algorithms I've made good use of lately. I come from a pseudo-self-taught background, so I have a good appreciation for the algorithms I do make use of. #DevDiscuss
  • littlekope0903 Nov 13 @ 9:11 PM EST
    trueeeee. I actually wasn't into the topic for this reason, but it's probably was more approachable than I think it is. #DevDiscuss
    In reply to @dangolant, @ThePracticalDev
  • kylegalbraith Nov 13 @ 9:12 PM EST
    Algorithms around searching tress are worth knowing because they are very efficient when you need them. Breadth-first vs depth-first are two good ones to compare. #DevDiscuss
  • philibertdugas Nov 13 @ 9:13 PM EST
    They’re everywhere under the hood of languages & libraries. I whish they were taught with domain specific examples #DevDiscuss
    • ThePracticalDev Nov 13 @ 9:05 PM EST
      Time for #DevDiscuss 😻 Tonight's topic is ALGORITHMS 🤖 Some jump-off questions: - Where do "algorithms" fit in with practical day-to-day development? - Which named algorithms are noteworthy and worth learning? - How should we teach algorithms compared to other concepts?
  • Universe_FD Nov 13 @ 9:14 PM EST
    - Algorithms are good for technical proof-of-concepts, sequence diagrams of the product and development helpers. - Djikstra and Shor, for the culture. - I think it can be easily taught with a natural language approch, like a philosophy course. #DevDiscuss
    • ThePracticalDev Nov 13 @ 9:05 PM EST
      Time for #DevDiscuss 😻 Tonight's topic is ALGORITHMS 🤖 Some jump-off questions: - Where do "algorithms" fit in with practical day-to-day development? - Which named algorithms are noteworthy and worth learning? - How should we teach algorithms compared to other concepts?
  • kylegalbraith Nov 13 @ 9:14 PM EST
    100% agree. Every time I hear the term "algorithm" I think back to my undergrad and CS classes. The reality is that there are different types of algorithms that fit into various places in the stack. It's not all sorting and searching trees and lists. #DevDiscuss
    In reply to @dangolant, @ThePracticalDev
  • Wintermute21 Nov 13 @ 9:14 PM EST
    Algorithms are important in the sense that you should be aware of the performance characteristics of the algorithms you use but not per se necessary to be able to implement from memory. #DevDiscuss
    • ThePracticalDev Nov 13 @ 9:05 PM EST
      Time for #DevDiscuss 😻 Tonight's topic is ALGORITHMS 🤖 Some jump-off questions: - Where do "algorithms" fit in with practical day-to-day development? - Which named algorithms are noteworthy and worth learning? - How should we teach algorithms compared to other concepts?
  • shannon_crabill Nov 13 @ 9:14 PM EST
    I want to know more about these algorithms #DevDiscuss
  • skrish2017 Nov 13 @ 9:15 PM EST
    #devdiscuss I see algorithms everywhere. A daily workflow of events invariably has some algorithm firing based on some trigger and sending information of some sort to someone. From automated time based batch jobs to reminders. One merely has to look.
    In reply to @ThePracticalDev
  • littlekope0903 Nov 13 @ 9:16 PM EST
    To be frank, that's probably where I get my anxieties around the terminology. #DevDiscuss
    In reply to @kylegalbraith, @dangolant, @ThePracticalDev
  • laurieontech Nov 13 @ 9:16 PM EST
    Algorithms are helpful but we don’t need every developer to know them. The typical ones like sorting are great but built into most languages these days. Teaching them should be about understanding efficiency and good patterns. #DevDiscuss
  • KPath001 Nov 13 @ 9:16 PM EST
    Algorithms are good to have in your utility belt when it comes to code cleanups and optimizing your code. I always brute force my solution to a problem first and based on time available or it's usablity I'll go back research algorithms or general ways to optimize #devdiscuss
    In reply to @ThePracticalDev
  • Wintermute21 Nov 13 @ 9:16 PM EST
    The above is part of why I hate leetcode/hackerrank etc style interviews. #DevDiscuss
  • alephnaught2tog Nov 13 @ 9:16 PM EST
    I have the monster book of Algorithms that I have been slowly working through and it is hella educational but not something I would ever intentionally re-roll myself for prod stuff (but love doing it). Knowing those pieces are there helps though #DevDiscuss
    In reply to @bendhalpern
  • bendhalpern Nov 13 @ 9:16 PM EST
    I think business logic can be better explained in terms of algorithms. I feel like sometimes we don't get algorithmic enough when thinking about user-centric concerns. #DevDiscuss
  • skrish2017 Nov 13 @ 9:17 PM EST
    #devdiscuss As a teacher algorithms is one of the first things we have focused on in https://t.co/uOvXc4aKTM. Asking students to critically look @ and think about where they have seen an algorithm work, how does it work, what does it do etc. establishes a personal connection.
    In reply to @ThePracticalDev
  • littlekope0903 Nov 13 @ 9:18 PM EST
    hmmm. curious to hear how you would explain business logic #DevDiscuss
    In reply to @bendhalpern
  • skrish2017 Nov 13 @ 9:18 PM EST
    #devdiscuss For students to learn new information, something they already know should be used as a bridge/an anchor. So allowing them to explore that helps in them getting a good introduction to the core concepts of writing and managing algorithms.
    In reply to @ThePracticalDev
  • shannon_crabill Nov 13 @ 9:18 PM EST
    Which book is that? Would you recommend it for beginners? #DevDiscuss
    In reply to @alephnaught2tog, @bendhalpern
  • Wintermute21 Nov 13 @ 9:19 PM EST
    You should know how tree traversal, search, etc works but you should know where to look up what you need to know rather than feel like you have to memorize everything. #DevDiscuss
  • kylegalbraith Nov 13 @ 9:20 PM EST
    Can you give an example? #DevDiscuss
    In reply to @bendhalpern
  • ZoCodes Nov 13 @ 9:20 PM EST
    Are Algorithms conservative mechanisms for manipulating data? #DevDiscuss
  • ASpittel Nov 13 @ 9:22 PM EST
    You don't just use algorithms every day when you write code, you use also use them in your everyday life. Your morning routine is an algorithm. Multiplication is an algorithm. Making a PB&J is an algorithm. #DevDiscuss
  • Nick_Craver Nov 13 @ 9:22 PM EST
    I strongly believe developers need not learn complicated algorithms for most jobs and tasks. Learning to google and find what you need if and when you actually need it is an immensely better use of time and space in your head. #DevDiscuss
    • ThePracticalDev Nov 13 @ 9:05 PM EST
      Time for #DevDiscuss 😻 Tonight's topic is ALGORITHMS 🤖 Some jump-off questions: - Where do "algorithms" fit in with practical day-to-day development? - Which named algorithms are noteworthy and worth learning? - How should we teach algorithms compared to other concepts?
  • sunnysinghio Nov 13 @ 9:23 PM EST
    My use of algorithms increases the more that I build developer tools and use low-level libraries. Outside of that, I find high-level abstractions to be friendlier for building applications, but there are still use cases for algorithms everywhere. #DevDiscuss
    • bendhalpern Nov 13 @ 9:08 PM EST
      We sometimes think of algorithms as an "introductory" topic, but you can *always* learn more about algorithms. Having a vocabulary of useful algorithms is incredibly valuable in software development. #DevDiscuss
      • ThePracticalDev Nov 13 @ 9:05 PM EST
        Time for #DevDiscuss 😻 Tonight's topic is ALGORITHMS 🤖 Some jump-off questions: - Where do "algorithms" fit in with practical day-to-day development? - Which named algorithms are noteworthy and worth learning? - How should we teach algorithms compared to other concepts?
  • thecurlycoder Nov 13 @ 9:23 PM EST
    For those of us who didn’t get a formal education in CS, algorithms feel super foreign and distant from day-to-day work. I’m very unsure when I’d ever use one, except for possibly in an interview. Would love to face down the beast 👹 #DevDiscuss
    In reply to @ThePracticalDev
  • ASpittel Nov 13 @ 9:24 PM EST
    Algorithms are my favorite. First let's define them: they are " a set of precise steps that need no great mental effort to follow but which, if obeyed exactly and mechanically, will lead to some desirable outcome." - from https://t.co/dwGlRMgvmN #DevDiscuss
    • ThePracticalDev Nov 13 @ 9:05 PM EST
      Time for #DevDiscuss 😻 Tonight's topic is ALGORITHMS 🤖 Some jump-off questions: - Where do "algorithms" fit in with practical day-to-day development? - Which named algorithms are noteworthy and worth learning? - How should we teach algorithms compared to other concepts?
  • littlekope0903 Nov 13 @ 9:24 PM EST
    Me too! #DevDiscuss
    • thecurlycoder Nov 13 @ 9:23 PM EST
      For those of us who didn’t get a formal education in CS, algorithms feel super foreign and distant from day-to-day work. I’m very unsure when I’d ever use one, except for possibly in an interview. Would love to face down the beast 👹 #DevDiscuss
      In reply to @ThePracticalDev
  • ASpittel Nov 13 @ 9:24 PM EST
    You don't just use algorithms every day when you write code, you also use them in your everyday life. Your morning routine is an algorithm. Multiplication is an algorithm. Making a PB&J is an algorithm. #DevDiscuss
  • bendhalpern Nov 13 @ 9:25 PM EST
  • shannon_crabill Nov 13 @ 9:25 PM EST
    That's a fair and accurate response. Thank you. I'm totally new to algorithms but its an area I want to learn more about. #DevDiscuss
    In reply to @alephnaught2tog, @bendhalpern
  • ASpittel Nov 13 @ 9:26 PM EST
    Algorithms are fun AF because they are language agnostic. Once you understand them, they apply to every language and paradigm you will use in the future. You can used optimized algorithms to optimize *so* many processes. #DevDiscuss
  • bendhalpern Nov 13 @ 9:27 PM EST
    I think the book Algorithms to Live By is a really great book. Even though it's presumably written for the laymen, I think it's incredibly relevant for software developers of all skill levels https://t.co/7bRIIXYPaS #devdiscuss
  • skrish2017 Nov 13 @ 9:27 PM EST
    #devdiscuss Agree. Students learn best when examples of their daily lives are documented that way in a step by step routine. They are amazed at how much they manage to do without even thinking about it!
    In reply to @ASpittel
  • Wintermute21 Nov 13 @ 9:28 PM EST
    Also I find formal algorithms courses and textbooks needlessly math heavy which leads to obfuscation rather than clarity. #DevDiscuss
  • littlekope0903 Nov 13 @ 9:29 PM EST
    putting on my good reads :) #DevDiscuss
    In reply to @bendhalpern
  • laurieontech Nov 13 @ 9:30 PM EST
    I think algorithms are often classified as math heavy, or all about Big-O efficiency. In some ways we use algorithms informally every day but don’t call them by that name. Maybe if we did they’d feel more accessible to everyone. #devdiscuss
  • ASpittel Nov 13 @ 9:30 PM EST
    Some of my favorites: * Binary Search * Merge Sort * A* traversals * Binary search trees These are super relevant and well used. At this point, if you want to make some major advancement in CS, create a new algorithm. We don't even know all the prime #s yet. #DevDiscuss
  • ASpittel Nov 13 @ 9:32 PM EST
    The fact that algorithms are things that people think are just for interviews and are incredibly intimidating is one of the most aggravating things to me. Algorithms are cool AF -- don't be an ass in an interview and ruin them for everyone w/ your gatekeeping. #DevDiscuss
  • dangolant Nov 13 @ 9:33 PM EST
    #DevDiscuss
    In reply to @kylegalbraith
  • ASpittel Nov 13 @ 9:33 PM EST
    Teach algorithms in simple terms *after people understand CS fundamentals.* They will love them, I promise. I say this as someone whose taught this stuff to a lot of people. They aren't hard. Don't make them hard when you teach them. #DevDiscuss
  • kylegalbraith Nov 13 @ 9:33 PM EST
    Algorithms are useful to know but I try to avoid getting hung up on the 'formal' definition of them from CS days, but that is harder than it looks. #DevDiscuss
  • gumnos Nov 13 @ 9:34 PM EST
    I find it far more valuable to know the big-oh profile of various algorithms (and data-structures) instead of the actual implementation of them. I care that I can test membership in O(1) or find an item in O(log n); not that it uses a red-black tree under the hood. #DevDiscuss
    In reply to @Nick_Craver, @ThePracticalDev
  • ASpittel Nov 13 @ 9:35 PM EST
    Teach algorithms in simple terms *after people understand CS fundamentals.* They will love them, I promise. I say this as someone whose taught this stuff to a lot of people. They don't have to be hard. Don't make them that way when you teach them. #DevDiscuss
  • plustssn Nov 13 @ 9:36 PM EST
    Define "algorithm." Aren't all programs algorithms (i.e. a set of instructions* to follow to solve a particular problem)? #DevDiscuss *I mean "instructions" here colloquially, not necessarily CPU instructions.
    In reply to @ThePracticalDev
  • skrish2017 Nov 13 @ 9:36 PM EST
    #devdiscuss One of the first things we look at in CS classes is algorithms. I have found that if it is made to look complex than any other knowledge about computing starts becoming amplified. For young minds the idea of connection is key. So keeping it relatable is the way to go.
    In reply to @ASpittel
  • laurieontech Nov 13 @ 9:36 PM EST
    This should definitely be the priority. If you can think through the efficiency of your code and pick the best data structure that’s the most important piece. And the most applicable for developers. #DevDiscuss
    In reply to @gumnos, @Nick_Craver, @ThePracticalDev
  • bendhalpern Nov 13 @ 9:37 PM EST
    With algorithms and with coding in general, I am a squinter. I prefer a concept of the general shape/concept of an algorithm over the nitty gritty details. IMO big picture notions win the day. #DevDiscuss
  • jmdembe Nov 13 @ 9:38 PM EST
    I know about algorithms, but what do they really *mean*? #mytruth #DevDiscuss
  • ASpittel Nov 13 @ 9:38 PM EST
    Favorite resources: * BaseCS in any format: https://t.co/jmM9wQAWJW * Visualizations of algorithms: https://t.co/d8MB8qEuM1 * Cheatsheets I made while I was interviewing at the big tech companies: https://t.co/qX9lYbtsN8 * MIT CS Classes: https://t.co/txm3hlPuWe #DevDiscuss
  • jmdembe Nov 13 @ 9:39 PM EST
    Not to say that I am not learning about them. It is just hard for me and requires repetition. #DevDiscuss
  • BEBischof Nov 13 @ 9:39 PM EST
    “Greed is good” Greedy methods very very often end up being the best first strategy. I think that if you’re just setting out on a new problem, greedy is often helpful to consider—when it’s not right, it provides great insight where to look next. #DevDiscuss
    In reply to @ThePracticalDev
  • kellyjandrews Nov 13 @ 9:40 PM EST
    💯 Totally agree. #DevDiscuss
    In reply to @laurieontech, @ThePracticalDev
  • jmdembe Nov 13 @ 9:41 PM EST
    That second link is really great #DevDiscuss
  • kylegalbraith Nov 13 @ 9:41 PM EST
    I think you need to really understand the basic data structures before diving into algorithms. Once you are ramped up on those you can really get into the meat of algorithms. Get 1,2,3 under your belt and it becomes simpler #DevDiscuss
    In reply to @ASpittel
  • ASpittel Nov 13 @ 9:41 PM EST
    I quit coding after data structures and algorithms because I thought that coding wasn't for me. It wasn't me though -- it was the way it was taught. This is my *shit* now. Don't 👏 make 👏 things 👏 harder 👏 than 👏 they 👏 are /rant #DevDiscuss
  • laurieontech Nov 13 @ 9:41 PM EST
    Brute forcing code is always the best way to start. Make it more efficient! But don’t perfect it forever, there is a middle ground. Working clean code that hasn’t been optimized to death is the goal! #devdiscuss
    In reply to @BEBischof, @ThePracticalDev
  • KPath001 Nov 13 @ 9:42 PM EST
    Amazing resources!!! Thank you....been meaning to find a cheatsheet! Making myself one as well. Will upload my own as well to help pass on the torch. #devdiscuss
    In reply to @ASpittel
  • dangolant Nov 13 @ 9:42 PM EST
    “Tell me how to make a PBJ” was how I introduced algorithms to a Girls Who Code club I used to work with 😅 #devdiscuss
    In reply to @ASpittel
  • kellyjandrews Nov 13 @ 9:42 PM EST
    So many people make things harder than what they really are. #DevDiscuss
    In reply to @ASpittel
  • Wintermute21 Nov 13 @ 9:43 PM EST
    but this is 99% of CS programs tho. #devdiscuss
    In reply to @ASpittel
  • KPath001 Nov 13 @ 9:43 PM EST
    100% agree on this! Data structures are the true fundamentals to know and algorithms on top of that make you an excellent dev #devdiscuss
    In reply to @kylegalbraith, @ASpittel
  • laurieontech Nov 13 @ 9:43 PM EST
    This! Learning data structures gets glossed over for new coders in favor of algorithms because of coding interviews....unless the needed data structure is in the algorithm 🤷🏻‍♀️ #DevDiscuss
    In reply to @kylegalbraith, @ASpittel
  • bendhalpern Nov 13 @ 9:44 PM EST
    Detail-for-detail I could have literally written the same tweet 😄 #DevDiscuss
    • ASpittel Nov 13 @ 9:41 PM EST
      I quit coding after data structures and algorithms because I thought that coding wasn't for me. It wasn't me though -- it was the way it was taught. This is my *shit* now. Don't 👏 make 👏 things 👏 harder 👏 than 👏 they 👏 are /rant #DevDiscuss
  • kylegalbraith Nov 13 @ 9:44 PM EST
    O yeah, interviewing is a different ball game. Especially at big companies. #DevDiscuss
    In reply to @danotorrey
  • gumnos Nov 13 @ 9:44 PM EST
    Also worth considering though, does it *need* to scale. Sometimes I find myself overarchitecting a solution that would scale with O(1) performance in the big picture, but has so much overhead that a simple O(n) linear search of the 5 items would be far faster. 🤷‍♂️ #DevDiscuss
    In reply to @laurieontech, @ThePracticalDev
  • littlekope0903 Nov 13 @ 9:44 PM EST
    not quite that long for me, 6 years here...but yeah LOL #DevDiscuss
    In reply to @imrandyk, @ThePracticalDev
  • Programazing Nov 13 @ 9:45 PM EST
    Check out my website/blog at https://t.co/4DAQVTUa1s #DevDiscuss
  • laurieontech Nov 13 @ 9:45 PM EST
    I’ll say it again: working code that hasn’t been optimized to death is the goal! #DevDiscuss
    In reply to @gumnos, @ThePracticalDev
  • cyaaato Nov 13 @ 9:47 PM EST
    I love algorithms, but I honestly have never implemented any of them in my career. I have however written my own algorithms, that are often inspired by them. Although I hate that I have to remember the classics for interviews cause I always look them up 🤣 #devdiscuss
    In reply to @ThePracticalDev
  • DanFellini Nov 13 @ 9:47 PM EST
    I was kinda thinking the same thing... #devdiscuss
    In reply to @plustssn, @DevDiscussHQ, @ThePracticalDev
  • laurieontech Nov 13 @ 9:48 PM EST
    As a former mathematician and current mathy coder I can promise you I see numbers and patterns and real life math EVERYWHERE #DevDiscuss
    In reply to @melisianyc, @williamlegate
  • kellyjandrews Nov 13 @ 9:48 PM EST
    I didn't quite finish the other work but the code to determine the winner works. No idea if it's terribly optimized, though. https://t.co/Soo1hybUxt #DevDiscuss
    In reply to @adamdawkins, @ThePracticalDev
  • littlekope0903 Nov 13 @ 9:48 PM EST
    I sometimes try to walk in hypotenuses. #DevDiscuss
    In reply to @laurieontech, @melisianyc, @williamlegate
  • ASpittel Nov 13 @ 9:49 PM EST
    Whoops, adding more. I have used them in my day to day job -- I took a job that took 15+ mins to run to seconds by using a more efficient data structure and thinking through the Big O efficiency. This stuff actually *does* matter. #DevDiscuss
  • laurieontech Nov 13 @ 9:49 PM EST
    This is why we’re friends 😂 #DevDiscuss
    In reply to @littlekope0903, @melisianyc, @williamlegate
  • littlekope0903 Nov 13 @ 9:50 PM EST
    It's more efficient!!! LOL #DevDiscuss
    In reply to @laurieontech, @melisianyc, @williamlegate
  • Wintermute21 Nov 13 @ 9:50 PM EST
    the CS version of "we didn't start the fire." #devdiscuss
    In reply to @ASpittel
  • dangolant Nov 13 @ 9:52 PM EST
    Ooh I need to check out that visualizations link, I find most of the YouTube videos a bit inaccessible #devdiscuss
    In reply to @ASpittel
  • laurieontech Nov 13 @ 9:53 PM EST
    Correct. But the algorithms we’re talking about are exactly that, the algorithms we learn and teach to help people implement more efficient and effective code. Not the perfected library algorithm that people use from a third party #DevDiscuss
    In reply to @zenelectron
  • saigowthamr Nov 13 @ 9:53 PM EST
    Algorithm is a particular approach to solve a problem in day to day development we are using many algorithms without aware of it. #DevDiscuss
    In reply to @ThePracticalDev
  • ThePracticalDev Nov 13 @ 9:55 PM EST
    In the last few minutes of #DevDiscuss, does anybody have any news to share, like a project or a personal win, or any other announcement?
  • codecareercoach Nov 13 @ 9:56 PM EST
    As I’ve currently been focusing on learning Functional Programming I’m wondering if algorithms might become more practical. What do you think @getify 🤔 Can understanding FP make algorithms more common place? #DevDiscuss
    • ThePracticalDev Nov 13 @ 9:05 PM EST
      Time for #DevDiscuss 😻 Tonight's topic is ALGORITHMS 🤖 Some jump-off questions: - Where do "algorithms" fit in with practical day-to-day development? - Which named algorithms are noteworthy and worth learning? - How should we teach algorithms compared to other concepts?
  • ASpittel Nov 13 @ 9:56 PM EST
    In a million item array, in the worst case scenario, a linear search will check 1,000,000 items to see if they are equal to the item you are searching for. In a binary search, that number is 20! That is a huge difference. #DevDiscuss
  • dangolant Nov 13 @ 9:56 PM EST
    What did the job do? Jw #DevDiscuss
    In reply to @ASpittel
  • littlekope0903 Nov 13 @ 9:58 PM EST
    I have a new blog post out! It's all about what I've learned the past week regarding web accessibility and dyslexia! I also used @kylegalbraith's https://t.co/Wjfg8TBWNV tool as an option for those who have dyslexia. Now on all my posts. #DevDiscuss https://t.co/YO3cV1RnVa
  • skrish2017 Nov 13 @ 9:58 PM EST
    #devdiscuss Best way to teach benefits of sorting too. After Google lot more focus on searching and not enough on sorting as a concept imo.
    In reply to @ASpittel
  • laurieontech Nov 13 @ 9:59 PM EST
    And that’s part of why we have these conversations. Vocabulary is important and within the industry we often overload terms, algorithm being a good example. Oh wait, this sounds familiar 😂 #seagl2018 talk. #DevDiscuss
    In reply to @zenelectron
  • MiffTheFox Nov 13 @ 9:59 PM EST
    "Algorithms" seems to me like one of those buzzwords like "AI" that could really mean any sort of programming. #DevDiscuss
    In reply to @DanFellini, @plustssn, @DevDiscussHQ, @ThePracticalDev