<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: [LISP] Simplify the code in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10776604#M52083</link>
    <description>&lt;P&gt;Dug this out of my tool box...&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;;;----------------------------------------------
;; Tony Tanzillo (01-25-02)
(defun cut_nth (lst pos / head)
  (repeat pos
    (setq head (cons (car lst) head)
          lst (cdr lst)
    )
  )
  (append (reverse head) (cdr lst))
)&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 23 Nov 2021 14:52:04 GMT</pubDate>
    <dc:creator>john.uhden</dc:creator>
    <dc:date>2021-11-23T14:52:04Z</dc:date>
    <item>
      <title>[LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769219#M52066</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Who can help me simplify the code below, the one that is between the START and END tags.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(setq L
	(list
		(list 0 1 2)
		(list 0 1 2)
		(list 0 1 2)
		(list 0 1 2)
	)
)

(setq e 2)
(setq L1 nil)
(foreach
	x
	L
	; START
	(setq t nil)
	(setq i 0)
	(while (&amp;lt; i (length x))
		(if (not (equal i e))
			(setq t (reverse (cons (nth i x) (reverse t))))
		)
		(setq i (1+ i))
	)
	(setq L1 (reverse (cons t (reverse L1))))
	; END
)

(princ L1)
(princ)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 16:35:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769219#M52066</guid>
      <dc:creator>iBlachu</dc:creator>
      <dc:date>2021-11-19T16:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769248#M52067</link>
      <description>&lt;P&gt;First, &lt;STRONG&gt;NEVER&lt;/STRONG&gt; use&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt; T&lt;/STRONG&gt;&lt;/FONT&gt; as a variable. It's a protected symbol for True. (not T) = nil&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 16:51:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769248#M52067</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2021-11-19T16:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769265#M52068</link>
      <description>&lt;P&gt;If your goal is&amp;nbsp;&lt;/P&gt;
&lt;P&gt;'(0 1 2) -&amp;gt; '(0 1)&lt;/P&gt;
&lt;P&gt;then&lt;/P&gt;
&lt;P&gt;(reverse (cdr (reverse '(0 1 2))))&lt;/P&gt;
&lt;P&gt;'(0 1)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use your FOREACH, but you need to build another list (L1). Move convenient is to use a mapcar with anonymous func.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(setq L (mapcar '(lambda (x)&lt;STRONG&gt; (reverse (cdr (reverse x)))&lt;/STRONG&gt;) L))&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 17:02:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769265#M52068</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2021-11-19T17:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769274#M52069</link>
      <description>&lt;P&gt;Yes, but note that the variable "e" can be anything and the list L can also have lists of any length, not just 3 elements.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 17:01:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769274#M52069</guid>
      <dc:creator>iBlachu</dc:creator>
      <dc:date>2021-11-19T17:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769284#M52070</link>
      <description>&lt;P&gt;So you need just the first 2 items?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(list (car x) (cadr x)), or... where's the catch?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: Do a more complex example covering all possible cases.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 17:06:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769284#M52070</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2021-11-19T17:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769293#M52071</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(setq L
	(list
		(list 0 1 2 3 4 5 6 7 8 9)
		(list 0 1 2 3 4 5 6 7 8 9)
		(list 0 1 2 3 4 5 6 7 8 9)
		(list 0 1 2 3 4 5 6 7 8 9)
		(list 0 1 2 3 4 5 6 7 8 9)
	)
)

	(list
		(list 0 1 2 3 4 6 7 8 9)
		(list 0 1 2 3 4 6 7 8 9)
		(list 0 1 2 3 4 6 7 8 9)
		(list 0 1 2 3 4 6 7 8 9)
		(list 0 1 2 3 4 6 7 8 9)
	)&lt;/LI-CODE&gt;&lt;P&gt;My routine removes the selected item in all sublists. Thus, it can be indicated that we remove e.g. the 5th element (setq e 5) in such a list:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 17:08:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769293#M52071</guid>
      <dc:creator>iBlachu</dc:creator>
      <dc:date>2021-11-19T17:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769307#M52072</link>
      <description>&lt;P&gt;Why you can't use some routine of those from your last thread?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 17:13:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769307#M52072</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2021-11-19T17:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769312#M52073</link>
      <description>&lt;P&gt;I was thinking more about using mapcar or lambda.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 17:16:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769312#M52073</guid>
      <dc:creator>iBlachu</dc:creator>
      <dc:date>2021-11-19T17:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769328#M52074</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:test ()
  (setq lst '((0 1 2 3 4 5 6 7 8 9) (0 1 2 3 4 5 6 7 8 9) (0 1 2 3 4 5 6 7 8 9))
	e 5)
  (mapcar '(lambda (sub)
	     (vl-remove-if
	       '(lambda (itm) (= e (vl-position itm sub)))
	       sub))
	  lst)
  )
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;... it's the same approach as used&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-replace-an-item/m-p/10768276/highlight/true#M423969" target="_blank" rel="noopener"&gt;HERE&lt;/A&gt;&amp;nbsp;...&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 17:36:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769328#M52074</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2021-11-19T17:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769411#M52075</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1929695"&gt;@iBlachu&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I was thinking more about using mapcar or lambda.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you understand how those works? Or is it just a black box.... and need some comments?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 18:14:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10769411#M52075</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2021-11-19T18:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10774801#M52076</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp; Your code will remove all occurrences if they exist:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 850px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/992495i6798C82C3919B722/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 21:32:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10774801#M52076</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2021-11-22T21:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10775040#M52077</link>
      <description>&lt;P&gt;Hey, BeekeeCZ, that was going to be my answer!&lt;/P&gt;
&lt;P&gt;In spite of that, it's a good one.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 00:11:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10775040#M52077</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-11-23T00:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10775043#M52078</link>
      <description>&lt;P&gt;Okay, where's the "dislike" button?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 00:13:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10775043#M52078</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-11-23T00:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10775727#M52079</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:test ()
  (setq lst '((0 1 2 3 4 5 6 7 8 9) (0 1 2 3 4 5 6 7 8 9) (0 1 2 3 4 5 6 7 8 9))
	e 5)
  (mapcar '(lambda (sub)
	     (vl-remove-if	       &lt;BR /&gt;             '(lambda (itm) &lt;STRIKE&gt;(= e (vl-position itm sub)))
&lt;/STRIKE&gt;	       sub))
	  lst)
  )&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;&amp;nbsp;well pointed out, this algorithm sacks. Dunno what I was thinking.&lt;/P&gt;
&lt;P&gt;We need to include a counter there to match the current index in the list.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:test ()
  (setq lst '((4 5 6 6 6 6 7 8 9 10 11 12 13) (3 4 6 7 8 9) (3 4 6 6 7 8 9))
	edx 2)
  
  (mapcar '(lambda (sub / idx)
	     (setq idx -1)
	     (vl-remove-if
	       '(lambda (itm)
		  (= edx (setq idx (1+ idx))))
	       sub))
	  lst)
  )
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 18:44:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10775727#M52079</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2021-11-23T18:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10776463#M52082</link>
      <description>&lt;P&gt;This removes a single item by position from a single list:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun RIFL (thelist itemno / prelist); = Remove Item From List
  (if (&amp;gt;= (length thelist) itemno)
    (progn ; then
      (repeat (1- itemno)
        (setq
          prelist (append prelist (list (car thelist)))
          thelist (cdr thelist)
        ); setq
      ); repeat
      (append prelist (cdr thelist))
    ); progn
    (progn ; else
      (prompt "List does not contain that many items.")
      (princ)
    ); progn
  ); if
); defun&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;(setq xyz '(1 2 3 4 5 5 5 6 7 8 9))&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Command: &lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;(rifl xyz 1)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;(2 3 4 5 5 5 6 7 8 9)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;Command: &lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;(rifl xyz 6)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;(1 2 3 4 5 5 6 7 8 9)&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#00CCFF"&gt;[preserves multiples same as removed item]&lt;/FONT&gt;&lt;BR /&gt;Command: &lt;FONT face="courier new,courier" color="#000000"&gt;(&lt;STRONG&gt;rifl xyz 11)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;(1 2 3 4 5 5 5 6 7 8 )&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="helvetica" color="#00CCFF"&gt; [really no space between &lt;FONT color="#000000"&gt;8&lt;/FONT&gt; &amp;amp; &lt;FONT color="#000000"&gt;)&lt;/FONT&gt;, but the website makes an emoji of them when together]&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Command: &lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;(rifl xyz 15)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;List does not contain that many items.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If applied across a list of sub-lists, presumably you wouldn't want that too-short-a-list message.&amp;nbsp; What should be done if one of the sub-lists does not contain as many items as the item number to be removed?&amp;nbsp; Should it simply be left alone?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 17:59:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10776463#M52082</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-11-23T17:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10776604#M52083</link>
      <description>&lt;P&gt;Dug this out of my tool box...&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;;;----------------------------------------------
;; Tony Tanzillo (01-25-02)
(defun cut_nth (lst pos / head)
  (repeat pos
    (setq head (cons (car lst) head)
          lst (cdr lst)
    )
  )
  (append (reverse head) (cdr lst))
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 23 Nov 2021 14:52:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10776604#M52083</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-11-23T14:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10776935#M52084</link>
      <description>&lt;P&gt;Another for fun ( assuming a list not storing nil values )&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(defun _removenth (l n / i)
  (setq i -1)
  (vl-remove 'nil
	     (mapcar '(lambda (x)
			(if (/= n (setq i (1+ i)))
			  x
			)
		      )
		     l
	     )
  )
)
(_removenth '(0 1 2 3 3 4 5 6 7 8 9 10 10 10 11) 3)
;; (0 1 2 3 4 5 6 7 8 9 10 10 10 11)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 21:45:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10776935#M52084</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2021-11-23T21:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10777154#M52085</link>
      <description>Pretty tricky &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;&lt;BR /&gt;But how can we be sure which 3 you removed? &lt;span class="lia-unicode-emoji" title=":winking_face_with_tongue:"&gt;😜&lt;/span&gt;</description>
      <pubDate>Tue, 23 Nov 2021 18:27:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10777154#M52085</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-11-23T18:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10777670#M52086</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3930636"&gt;@john.uhden&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Pretty tricky &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;&lt;BR /&gt;But how can we be sure which 3 you removed? &lt;span class="lia-unicode-emoji" title=":winking_face_with_tongue:"&gt;😜&lt;/span&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It removed the correct 3 adjacent to 2 &lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 21:46:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10777670#M52086</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2021-11-23T21:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: [LISP] Simplify the code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10777987#M52087</link>
      <description>&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;&lt;BR /&gt;Okay, prove it! &lt;span class="lia-unicode-emoji" title=":goblin:"&gt;👺&lt;/span&gt;&lt;BR /&gt;I had a friend Charlie in high school who dated identical twins, Donna and&lt;BR /&gt;Linda.&lt;BR /&gt;I'm pretty sure he never really knew which one he was with.  But the girls&lt;BR /&gt;didn't mind.  They were able to share and laugh about their experiences.&lt;BR /&gt;I think he ended up marrying Donna, but no one is really sure about that.</description>
      <pubDate>Wed, 24 Nov 2021 01:40:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-simplify-the-code/m-p/10777987#M52087</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-11-24T01:40:39Z</dc:date>
    </item>
  </channel>
</rss>

