ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Categories
    3. Developer Discussion
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • scottalanmillerS

      Recursive Palandrome Checking in Python

      Watching Ignoring Scheduled Pinned Locked Moved recursion python
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • scottalanmillerS

      Understanding $args in PowerShell

      Watching Ignoring Scheduled Pinned Locked Moved powershell
      92
      3 Votes
      92 Posts
      73k Views
      C

      Rob I do try to take things at face value. I went back over what has been said and haven't found where you or anyone has said that it's created each time a scipt is run. Very likely I misunderstood something. My assumptions are only testing what I think so I know whether or not I get it. Since I now know it's created new each time something is run that makes a big difference to my understanding. It's fine to tell me to take your posts at face value but if I'm left with a question about it the face value is not a value. I'm not trying to be disrespectful however what is plain to you isn't to me. So Merry Christmas and thank you for the excellent discussion

    • scottalanmillerS

      Web Resources for Learning Python

      Watching Ignoring Scheduled Pinned Locked Moved python
      2
      4 Votes
      2 Posts
      1k Views
      Bill KindleB

      CodeAcademy's tutorial is pretty good. The interaction is great.

    • Reid CooperR

      Microsoft Expanding Its OpenSource Strategy for .NET

      Watching Ignoring Scheduled Pinned Locked Moved microsoft net open source
      1
      1 Votes
      1 Posts
      868 Views
      No one has replied
    • scottalanmillerS

      Paired Programming Tool

      Watching Ignoring Scheduled Pinned Locked Moved stypi pair programming
      1
      0 Votes
      1 Posts
      808 Views
      No one has replied
    • scottalanmillerS

      Reversing a List in Python

      Watching Ignoring Scheduled Pinned Locked Moved python 3 python
      2
      0 Votes
      2 Posts
      1k Views
      scottalanmillerS

      And here is a similar one but this time, both lists remain...

      months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'] newMonths = [] monthlen = len(months) for i in range((monthlen - 1),-1,-1): month = months[i] newMonths.append(month) print(newMonths)
    • scottalanmillerS

      The Beginner's Guide to BASH Scripting

      Watching Ignoring Scheduled Pinned Locked Moved scripting bash
      2
      1 Votes
      2 Posts
      1k Views
      nadnerBN

      Thanks for the pointer. Something that I've wanted to look at but not known where to start 🙂

    • scottalanmillerS

      Easy Guide to Python Recursion

      Watching Ignoring Scheduled Pinned Locked Moved python python 3 recursion
      2
      0 Votes
      2 Posts
      1k Views
      scottalanmillerS

      The most common sample of recursion is always doing factorials, of course. So here it is in Python.

      def main(): num = int(input("Please enter a non-negative integer.\n")) fact = factorial(num) print("The factorial of", num, "is", fact) def factorial(num): if num == 0: return 1 else: return num * factorial(num - 1) main()
    • scottalanmillerS

      Adding a Simple Main Function in Python

      Watching Ignoring Scheduled Pinned Locked Moved python python 3
      2
      0 Votes
      2 Posts
      1k Views
      scottalanmillerS

      I do the same technique when I am working in BASH. It just makes coding cleaner and easier. I find that even for small programs and quick scripts that it is a good habit to get into.

    • scottalanmillerS

      Linked List in Python

      Watching Ignoring Scheduled Pinned Locked Moved python linked list
      2
      1 Votes
      2 Posts
      1k Views
      scottalanmillerS

      Here is the code for using the above list to make a LinkedList and to insert some test data:

      myList = linkedList() for x in range(1,10): y = Node(x) myList.insert(y) print(myList.size())
    • scottalanmillerS

      User Interfaces Are Like Jokes

      Watching Ignoring Scheduled Pinned Locked Moved
      3
      2 Votes
      3 Posts
      1k Views
      thanksajdotcomT

      Fair point.

    • scottalanmillerS

      Best Language for Learning Functional Programming?

      Watching Ignoring Scheduled Pinned Locked Moved
      1
      0 Votes
      1 Posts
      625 Views
      No one has replied
    • Reid CooperR

      Video Explaining Sort Algorithms

      Watching Ignoring Scheduled Pinned Locked Moved sort
      8
      2 Votes
      8 Posts
      2k Views
      StrongBadS

      @Dominica said:

      Ah, so it's showing how long it takes in relation to the others? That's a great visual.

      Yes, you can see how long the sorts take given different sorting methods as well as with different starting points (different algorithms work better or worse with different types of data) and you can see it working it through so that you can somewhat tell how the algorithm is doing the sort as it goes. It's a little too fast to do that well, though. I wish that it was a little slower.

    • scottalanmillerS

      Fifteen Best JavaScript Charting Libraries

      Watching Ignoring Scheduled Pinned Locked Moved javascript charting
      4
      2 Votes
      4 Posts
      2k Views
      C

      Care to share?

    • Reid CooperR

      Microsoft Upgrades F# Functional Programming Language

      Watching Ignoring Scheduled Pinned Locked Moved functional program
      2
      2 Votes
      2 Posts
      837 Views
      scottalanmillerS

      I really need to take some time to learn F# and really get into functional programming. Now that F# is going to be widely available on Mac and Linux as well as Windows, it is a lot more interesting.

    • Reid CooperR

      .NET Goes Open Sources and is Coming to Mac OSX and Linux

      Watching Ignoring Scheduled Pinned Locked Moved mac osx open source linux net
      12
      1 Votes
      12 Posts
      3k Views
      scottalanmillerS

      Apparently some counterpoint has come out...

      http://techrights.org/2014/11/12/openwashing-lockin/

    • Reid CooperR

      The High Cost of Functional Programming

      Watching Ignoring Scheduled Pinned Locked Moved functional program infoworld
      5
      0 Votes
      5 Posts
      1k Views
      scottalanmillerS

      @Dashrender said:

      I guess I'm going to have to look this up, I've never heard of Functional Programming.

      It's pretty big today. In general, though, people aren't switching to F# or Haskell. Instead they use the new functional extensions in C# or other languages to mix functional and procedural elements together to make it far easier for non-functional programmers to add functional elements without being unable to program normally.

    • Reid CooperR

      Nine Cutting Edge Languages to Learn

      Watching Ignoring Scheduled Pinned Locked Moved
      4
      0 Votes
      4 Posts
      1k Views
      thanksajdotcomT

      I've heard of Haskell and Groovy, but that's about it.

    • Reid CooperR

      O'Reilly Webinar on Flexible Delivery Architecture for the Web

      Watching Ignoring Scheduled Pinned Locked Moved oreilly webcast
      1
      0 Votes
      1 Posts
      597 Views
      No one has replied
    • Reid CooperR

      O'Reilly Webinar on Kraken.js

      Watching Ignoring Scheduled Pinned Locked Moved kraken.js javascript
      1
      0 Votes
      1 Posts
      951 Views
      No one has replied
    • 1
    • 2
    • 6
    • 7
    • 8
    • 9
    • 10
    • 9 / 10