This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<settings> | |
<servers> | |
<server url="http://speed.etelecomisp.net:8080/speedtest/upload.php" lat="41.3857" lon="2.1699" name="Barcelona" country="Spain" cc="ES" sponsor="eTelecom" id="49934" host="speed.etelecomisp.net:8080"/> | |
<server url="http://speedtest.clouding.io:8080/speedtest/upload.php" lat="41.3857" lon="2.1699" name="Barcelona" country="Spain" cc="ES" sponsor="Clouding.io" id="51008" host="speedtest.clouding.io:8080"/> | |
<server url="http://speedtestbcn.infocelra.com:8080/speedtest/upload.php" lat="41.3857" lon="2.1699" name="Barcelona" country="Spain" cc="ES" sponsor="Inforcelra S.L.U." id="37416" host="speedtestbcn.infocelra.com:8080"/> | |
<server url="https://speedtestbarcelona2.vodafone.es:8080/speedtest/upload.php" lat="41.3851" lon="2.1734" name="Castelldefels" country="Spain" cc="ES" sponsor="Vodafone ES" id="14449" host="speedtestbarcelona2.vodafone.es:8080"/> | |
<server url="http://speedtest.iguana.cat:8080/speedtest/upload.php" lat="41.3850" lon="2.1734" name="Igualada" country="Spain" cc="ES" sponso |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;| | |
TLEN.LSP - Total LENgth of selected objects | |
(c) 1998 Tee Square Graphics | |
|; | |
(defun C:TLEN (/ ss tl n ent itm obj l) | |
(setq ss (ssget) | |
tl 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule NonTail do | |
def sum(1), do: 1 | |
def sum(number), do: number + sum(number - 1) | |
end | |
defmodule Tail do | |
def sum(number), do: do_sum(0, number) | |
defp do_sum(acc, 1), do: acc + 1 | |
defp do_sum(acc, number), do: acc + number |> do_sum(number - 1) |