Vector Hugo · @gfkdsgn
0 followers · 14 posts · Server graphics.social

Paul de Casteljau not only made possible with his algorithm. Looks like he opposed intellectual property, since he leaked the discovery for the benefit of us all without permission of .

#cad #citroen #computer #History #sketchpad #autocad #freecad #vector #portrait #MastoArt #wip #madewithinkscape

Last updated 1 year ago

Targea Caramar 🇨🇴 · @targea_caramar
71 followers · 397 posts · Server sunny.garden

AutoCAD should really have a better way of editing nested blocks. Idk, like a tree view menu or something. Kinda like Rhino.

#cad #autodesk #autocad

Last updated 1 year ago

Leovaldo Alberto · @Leo_AG
0 followers · 1 posts · Server mast.lat


Empezando en @mast.lat por donde se empieza, por el .
Siendo 😊 es claro que en la me interese y de ella hable, sobre mi experiencia y conocimientos. Áreas de Cad y sus utilidades, apps relacionadas.

Como experto y catedrático de , puedo asistir en términos de gratuidad tanto a estudiantes como a profesionales de cualquier carrera que deba usarlo en sus dudas e interrogantes.

Sobre mi debo decir que llevo más de 30 años ejerciendo la profesión, soy , amigo del cuidado del y abogo por una arquitectura y sostenible. Ejerzo en mi país, República Dominicana tanto y, en ocasiones, de manera internacional.

#introduccion #principio #arquitecto #arquitectura #autocad #bimmaster #medioambiente #ecoamigable

Last updated 1 year ago

professional theremin player · @katieonviolin
96 followers · 1374 posts · Server sfba.social

Holy cannoli, you can put anything on the defpoints layer, freeze layer 0 and have it be un-snappable!!!

If you lock the layer, it still is magnetic to my ortho-snaps

This fricken rules

#autocad

Last updated 1 year ago

phaus · @phaus
194 followers · 317 posts · Server ruhr.social

Do I know someone who is experience with the API? E.g. coding python agains it?

#autocad

Last updated 1 year ago

rouidenCAD · @rouidenCAD
0 followers · 15 posts · Server mas.to

#autocad

Last updated 1 year ago

rouidenCAD · @rouidenCAD
0 followers · 7 posts · Server mas.to
rouidenCAD · @rouidenCAD
0 followers · 6 posts · Server mas.to
Alecu Ștefan-Iulian :verified: · @alecui
93 followers · 723 posts · Server qoto.org

Number three: . This is spicy enough, so:

  1. Lisp syntax is painful (and the classical Lots of Irritating Small Parentheses stab). For those who don’t know (and why I put this at #0), what other languages might write as 5*a+3 is (+ (* 5 a) 3). However, in spite of the fact that it may look initially a little funny to the unaccustomed, there are some sound technical reasons why Lisp syntax exists:
    • Easy to teach: grouping of operators and associativity is obvious. 5 * a + 3 is (+ (* 5 a) 3), while 5 * (a + 3) is (* 5 (+ a 3));
    • Easy to parse: you don’t have to bend the language to understand your new function, everything works the same;
    • Maps nicely to an underlying data structure: Lisp is a living and breathing AST. Having this syntax makes macros possible. When you teach someone about macros, it’s obvious what the internal representation of a Lisp expression is because it looks just like Lisp program data. You can thus fit Lisp to anything you want. Lisp programmers focus on the content, Lisp haters focus on the parentheses.
  2. Lisp is old. No? There are modern dialects of Lisp such as , and the myriad of R{5,6,7}RS implementations. We’re still going strong, thank you. If anything else, is still a thing and that has AutoLISP, so it definitely lives on.

  3. Lisp is slow. I have actually heard this from a teacher live (along with the Lots of Irritating Small Parentheses stab). I asked them when was the last time they’ve tried Lisp. He tried it 30 years ago. Before doing his PhD in 98 (which was fresh in , nobody has heard of it, I still have great respect for him). When all datatypes are appropriately declared, a typical commercial (and even some non-commercial) Lisp compilers produce native machine code on par with C++. It was true back when Lisp ran on the IBM 704 because they could barely handle the GC, but over times the compilers improved a lot. To equate 1960s (or even 1980s) Lisps to modern Lisp compilers is like claiming C is slow because the only time you’ve tried it is with a C compiler on the PDP-11.

  4. Lisp is big. First of all, I find this really funny because Scheme (a branch of the Lisp family) is minimalist yet powerful in its nature. This myth started around the 1980s when Lisp was indeed big (because it packed a lot of useful functionality and there was a limit to how small that functionality could be made). Lisp vendors noticed that and nowadays Lisp is one of the few programming languages in recent years that has not been allowed to grow in size by leaps and bounds with every release. At this point, this point is (excuse my Chinese) fucking bullshit, people are happily running Electron-apps and they don’t care at all about resource usages because they’re all running the latest and greatest hardware anyway. Languages are getting more and more bloated (ahemc++ahem) and so Lisp actually ends up looking like a compact alternative.

  5. Lisp has no arrays. This is also BS, we’ve had an array datatype for at least 30 years. Even though the Lis of Lisp is from, shocking, List, it doesn’t mean that it’s the only data type. Lisp offers powerful support for single and multi-dimensional arrays, arrays of varying element type, and array access that provides transparent access to fixed size arrays, arrays displaced to other arrays, and arrays whose size is expected to dynamically grow and shrink.

  6. Lisp has no compiler. It… does? Since its earliest days Lisp implementations have been variously interpreted or compiled, and often both. Much important work in the theory of program compilation has been done using Lisp and so Lisp benefited from that. All modern Lisps have a compiler (and also a REPL which allows for interactive debugging, thank us for that and much more at the end of this post).

  7. Lisp is not standard. Let me present ANSI X3.226/1994 (first ANSI standard for any OO language btw) and RnRS (5 <= n <= 7 nowadays). The Common Lisp HyperSpec (CLHS) is a webbed adaptation of the ANSI Common Lisp standard made by LispWorks, heavily cross-indexed with a lot of indices.

  8. Lisp doesn’t talk to other programs… Um, most serious Lisp dialects and implementations definitely have FFI, most even have easy access to TCP, CORBA, COM, databases etc. This is a really weird point that I’ve actually heard, people think Lisp is isolated from everything.

  9. Lisp GC is slow. It may have been true in the past when computers could barely handle GC, but a lot of progress has been made since then and it’s now on par with other popular GC languages.

Lisp haters should give Lisp more credit. It pioneered a lot of features that people take for granted such as REPLs (which are trivial in Lisp, literally (loop (print (eval (read)))) (in Lisp-ish pseudocode), GC with mark-and-sweep, AST as a tree structure, if (yes, not even FORTRAN had conditionals), a function type, recursion, programs composed of expressions, a symbol type, a notation for code using trees of symbols and constants, and the concept of having the whole language there all the time. What I mean by the last point is that there’s no real distinction between read-time, compile-time, and runtime. You can compile or run code while reading, read or run code while compiling, and read or compile code at runtime). This lets you reprogram Lisp’s syntax; running code at compile-time is the basis of macros; compiling at runtime is the basis of Lisp’s use as an extension language in programs like Emacs; and reading at runtime enables programs to communicate using s-expressions, an idea reinvented as XML.

Lisp is pretty nifty after all, huh?

#clojure #scheme #lisp #haskell #racket #autocad #romania

Last updated 1 year ago

berita · @berita
0 followers · 40 posts · Server mstdn.business

Alternative Terbaik Perangkat Lunak Autocad Berita Info

AutoCAD adalah salah satu sofware desain dan pemodelan 2D dan 3D terpopuler di dunia. Pembaca Berita Info, namun ada beberapa alternatif yang dapat dipertimbangkan jika mencari perangkat lunak dengan fitur serupa atau yang mungkin lebih sesuai dengan kebutuhan. Berikut beberapa alternatif terbaik AutoCAD:

Dilanjutkan Pembahasan Berikutnya

Berita Info beritainfo.com/2023/06/alterna

#alternative #terbaik #perangkat #lunak #autocad #berita #info

Last updated 1 year ago

Peggy · @Wolfmama
3 followers · 12 posts · Server ruhr.social
Spin D'Accord · @gkmizuno
54 followers · 2056 posts · Server mas.to

Ha.

Would have been useful 15 years ago or so. Nowadays, maybe not.

#autocad

Last updated 1 year ago

IT News · @itnewsbot
3287 followers · 263108 posts · Server schleuss.online

They Used to Be a Big Shot, Now Eagle Is No More - There once was a time when to make a PCB in our community was to use CadSoft EAGLE... - hackaday.com/2023/06/09/they-u

#pcb #eda #news #eagle #rants #autocad #eaglepcb #softwarehacks

Last updated 1 year ago

pafurijaz · @pafurijaz
137 followers · 888 posts · Server mstdn.social

While deleting old things, I found these images, they are a real attempt to use to generate drawings from 3D with FreeStyle, and finally edited with , this experiment dates back to 2015 when I had already lost hope with , from here on then there was much else

#blender3d #b3d #OpenSource #Linux #autocad #cad #Blender

Last updated 1 year ago

Stu · @originalg
22 followers · 470 posts · Server mastodon.sdf.org

@F1N3Y_Designs I'm an Engineer myself and I also work with and

#solidworks #autocad

Last updated 1 year ago

Lisa · @F1N3Y_Designs
0 followers · 1 posts · Server creatorstudio.space
Hitsch · @Hitsch
140 followers · 1358 posts · Server swiss.social

Wenn genauer gesagt die Fehlermeldung auf Chinesisch ausspuckt, muss wirklich etwas schief gelaufen sein …

Oder um einen meiner ehemaligen Mitarbeiter zu zitieren: "Mit wäre das nicht passiert."

#autocad #civil3d #allplan

Last updated 1 year ago

taylan :fedi: · @taylan
14 followers · 78 posts · Server universeodon.com

I've come to the stage that I really want to migrate to a Linux distribution. I'm hating everyday that I've to use Windows but engineering programs are taking captive me in this s**thole.

Some might say that aren't you aware of FreeCAD, Salome, Elmer, OpenFOAM etc. Yes, I'm aware but I'm not sure how are they compatible with the programs that used in the industry.

If any engineers out there in the wide world of the fediverse, I'm asking you for your guidence.

Boosts are appriciated for the wider reach.

#askfedi #engineering #linux #windows #freecad #salome #elmer #openfoam #solidworks #autocad #matlab

Last updated 1 year ago

Apple News :os_apple: · @AppleNews
1263 followers · 748 posts · Server mastodon.uno

di si aggiorna e ora è nativo per i chip

#autocad #autodesk #AppleSilicon

Last updated 1 year ago

IT News · @itnewsbot
3051 followers · 254502 posts · Server schleuss.online

After two years, Autodesk Maya and AutoCAD become Apple Silicon-native - Enlarge / A woman uses AutoCAD on a MacBook Pro in this promotional ima... - arstechnica.com/?p=1927703

#m2 #m1 #mac #cad #maya #tech #apple #autocad #autodesk #3dmodeling #autodeskmaya #applesilicon

Last updated 1 year ago