urbanists.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
We're a server for people who like bikes, transit, and walkable cities. Let's get to know each other!

Server stats:

560
active users

#m

4 posts4 participants0 posts today
Replied in thread

@pedromj seeing your iterative and recursive ones helped me see what I was /meant/ to do with series (which should be lazy and declarative):
``` #commonLisp #series
(defun better-fibs
(n &optional (x-1 0) (x-0 1))
(let* ((range (scan-range))
(fibonacci-series
(#M(lambda (n)
(declare (ignore n))
(psetq x-1 x-0
x-0 (+ x-1 x-0))
(values x-0))
range)))
(collect-nth n fibonacci-series)))
```
CL-USER> (better-fibs 4)
8

(Edit: (scan-range) on its own is just 𝗡)

MSTest 3.8 is here to transform your .NET testing experience! With enhanced filtering, improved MSBuild support, and a wealth of new features like RetryAttribute, OSConditionAttribute, and upgraded assertion APIs, we’re committed to making MSTest more powerful and user-friendly.

Explore streamlined data-driven tests, conditional tests, and the new analyzers to refine your testing practices.

Dive into the release and check the full changelog on GitHub! Let’s make testing smoother together! #M

Microsoftin "ylistys": käytin tänään Copilotia apuna Excel-kaavojen vääntämisessä.

Sain toimivan makron, jolla erotella teksti yhdestä solusta eri sarakkeisiin, erottimena iso alkukirjain.

Sen sijaan kun parilta riviltä olisi pitänyt yhdistää teksti useista sarakkeista yhteen sarakkeeseen, Copilotia piti oikaista siinä, mikä on kaavan parametrien erotin 😅

#MaailmassaMontaOnIhmeellistäAsiaa #M$