Skip to content
  • Foul mood, but day ends well

    The Lounge python com sales functional tutorial
    16
    0 Votes
    16 Posts
    0 Views
    M
    V. wrote: Usually I move on to greener pastures when I have managers like that The fact that I work 3000 miles away, remotely, helps to mitigate the issues. If I worked there, my greener pasture would probably be a cell, either padded, or barred, or both! Marc Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny
  • Susanne Sundfør

    The Lounge python com functional question learning
    4
    0 Votes
    4 Posts
    0 Views
    M
    It's quite forgettable, even after having watched it. I wanna be a eunuchs developer! Pass me a bread knife!
  • HyperTerminal!

    The Lounge python com functional learning
    7
    0 Votes
    7 Posts
    0 Views
    P
    I use QVT/Term, have since the 90s. It's more compatible with OpenVMS. If I recall correctly, very few terminus emulation systems emulate the "GOLD" key effectively; QVT/Term does (possibly Reflection does too).
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    5 Posts
    0 Views
    Mike HankeyM
    Awesome project! I love embedded and electronics, have always been interested although still consider myself a hack! I just finished a lightbox using IR LEDs and ATMega328P so I can start making my own PCBs. Now just waiting for transparencies to get here so I can start testing. (I need to test lightbox to determine how long I need to set timer for developing light sensitive boards) New version: WinHeist Version 2.2.2 Beta I told my psychiatrist that I was hearing voices in my head. He said you don't have a psychiatrist!
  • 0 Votes
    8 Posts
    0 Views
    M
    I've been watching OS.js - JavaScript Cloud/Web Desktop Platform[^] -- pretty active development, and quite impressive. Marc Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny
  • 0 Votes
    2 Posts
    0 Views
    M
    FP does a horrible job selling itself because: 1. The world is not immutable 2. Tail recursion is a thing only necessary when coerced into an immutable world, and can get really complicated really fast 3. Continuations and continuation passing style are hardly ever necessary (and easily implemented in non-FP languages) 4. Pattern matching is just a glorified switch statement 5. Type inference sorta sucks, especially when only the first field of a type is used to infer the type (that one bit me numerous times.) Marc Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny
  • SalesForce

    The Lounge python com design functional help
    7
    0 Votes
    7 Posts
    0 Views
    D
    Find the list of top salesforce consultants here: Top Salesforce Consultants 2023 List | Top 10 Salesforce Consulting[^]
  • I feel small

    The Lounge python com functional learning
    10
    0 Votes
    10 Posts
    0 Views
    M
    :thumbsup: Marc Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny
  • 0 Votes
    7 Posts
    0 Views
    M
    Bassam Abdul-Baki wrote: here's a Yin for every Yen. Or in his case, a Yen for every Yin! Marc Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny
  • 0 Votes
    14 Posts
    0 Views
    Sander RosselS
    Marc Clifton wrote: I'm probably living in the past[^], still using W7. :) I wish MS would live in the past a little more, maybe they'd make a good OS again :D Read my (free) ebook Object-Oriented Programming in C# Succinctly. Visit my blog at Sander's bits - Writing the code you need. Or read my articles here on CodeProject. Simplicity is prerequisite for reliability. — Edsger W. Dijkstra Regards, Sander
  • 0 Votes
    9 Posts
    0 Views
    L
    Restated another way, the question is how to update an existing item in a collection using LINQ: List toys = new List(); toys.Add( new Toy() { Id = 1, Color = "Red", Price = 1.20M } ); toys.Add( new Toy() { Id = 2, Color = "Red", Price = 1.20M } ); toys.Add( new Toy() { Id = 3, Color = "Red", Price = 1.20M } ); toys.Single( o => o.Id == 2 ).Color = "Blue"; toys.Single( o => o.Id == 2 ).Price = 3.99M; toys.ForEach( o => Console.WriteLine( $"{o.Id} {o.Color} {o.Price}" ) );
  • Hole Earth

    The Lounge csharp python com functional learning
    25
    0 Votes
    25 Posts
    0 Views
    M
    Exactly! Victor Borge, God rest his soul, was exactly the kind of genius I had in mind. I wanna be a eunuchs developer! Pass me a bread knife!
  • 0 Votes
    18 Posts
    0 Views
    M
    "To the moronic mind, sufficiently advanced reasoning ability is indistinguishable from evil JuJu magic" -- Markie C. Wallace I wanna be a eunuchs developer! Pass me a bread knife!
  • Uber conference call hold music

    The Lounge python com functional learning
    3
    0 Votes
    3 Posts
    0 Views
    G
    It beats all hell out of the 8-bit, four bar 90's video game theme on some PBX's. Software Zen: delete this;
  • What is Sign of 0?

    The Lounge question csharp python com functional
    33
    0 Votes
    33 Posts
    0 Views
    M
    The flaw in this is that b and c are both calculated as integer values (at compile time) then converted to double. Integer doesn't have a negative zero. "Fairy tales do not tell children the dragons exist. Children already know that dragons exist. Fairy tales tell children the dragons can be killed." - G.K. Chesterton
  • Beaglebone, RabbitMQ, and a gyro sensor

    The Lounge python php com iot functional
    9
    0 Votes
    9 Posts
    0 Views
    G
    excellent, cheers Marc (posted a comment already on the article)
  • 0 Votes
    5 Posts
    0 Views
    Richard DeemingR
    BillWoodruff wrote: something about iterating from end of the collection to the start. You usually do that if you're removing items from the collection within a for loop, and you don't want to skip any elements. :) "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • 0 Votes
    3 Posts
    0 Views
    R
    Might be localization settings, but the google doodle I have is related to earth day. That is, I guess, today.
  • 0 Votes
    10 Posts
    0 Views
    M
    Chris Maunder wrote: Are there any specific examples of articles you're thinking of? This article[^] on making property-like events in Python Also, suggestions for where The Dangers of Duck-Typed Languages[^] is best? It's in the scrapbook for now. Thanks! Marc Imperative to Functional Programming Succinctly Contributors Wanted for Higher Order Programming Project! Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny