• ClipSaver
  • dtub.ru
ClipSaver
Русские видео
  • Смешные видео
  • Приколы
  • Обзоры
  • Новости
  • Тесты
  • Спорт
  • Любовь
  • Музыка
  • Разное
Сейчас в тренде
  • Фейгин лайф
  • Три кота
  • Самвел адамян
  • А4 ютуб
  • скачать бит
  • гитара с нуля
Иностранные видео
  • Funny Babies
  • Funny Sports
  • Funny Animals
  • Funny Pranks
  • Funny Magic
  • Funny Vines
  • Funny Virals
  • Funny K-Pop

Clojure REPL driven development - a simple introduction with Rebel Readline скачать в хорошем качестве

Clojure REPL driven development - a simple introduction with Rebel Readline 5 лет назад

скачать видео

скачать mp3

скачать mp4

поделиться

телефон с камерой

телефон с видео

бесплатно

загрузить,

Не удается загрузить Youtube-плеер. Проверьте блокировку Youtube в вашей сети.
Повторяем попытку...
Clojure REPL driven development - a simple introduction with Rebel Readline
  • Поделиться ВК
  • Поделиться в ОК
  •  
  •  


Скачать видео с ютуб по ссылке или смотреть без блокировок на сайте: Clojure REPL driven development - a simple introduction with Rebel Readline в качестве 4k

У нас вы можете посмотреть бесплатно Clojure REPL driven development - a simple introduction with Rebel Readline или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:

  • Информация по загрузке:

Скачать mp3 с ютуба отдельным файлом. Бесплатный рингтон Clojure REPL driven development - a simple introduction with Rebel Readline в формате MP3:


Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса ClipSaver.ru



Clojure REPL driven development - a simple introduction with Rebel Readline

A simple introduction to Clojure development using the REPL, referred to as REPL driven development. Run a Clojure REPL with Rebel readline, using the practicalli/clojure-deps-edn configuration. Demonstrates the Read Evaluate Print loop that gives the REPL its name. https://github.com/practicalli/clojur... Use a Clojure aware editor connected to the REPL process for the full development experience http://practicalli.github.io/clojure/... Transcript: REPL driven development is the foundation to working successfully with Clojure. The REPL is an instant feedback workflow that continually runs your code The REPL contains a live application to interact with. When developing Clojure, the first step is to start a REPL process. Then write a Clojure expression and send it to the REPL, the repl then reads the expression and evaluates it returning the result and giving instant feedback. To start a repl, Open a terminal application and run the clojure command, specifying the main program to run clojure -M:repl/rebel This starts a REPL process and shows a prompt, waiting for your code This REPL configuration is using the rebel readline project, give a highly interactive development experience. Clojure expressions are typed (or pasted) at the prompt Lets add some numbers together (+ 1 2 3 5 (* 2 4) 13) This code calls the plus function with several arguments Pressing RETURN show the result underneath The repl saves the history of the code entered at the prompt. Use the up and down arrows to navigate that history to run the same code again or edit a previous code expression saving time typing it all out again. Lets change the code to multiple its arguments Process a collection of values (map inc [1 3 5 7 9]) Rebel Readline shows signatures of functions once typed at the REPL prompt. as a reminder of the arguments to pass to the function. Generate all the combinations of a 3 tumbler lock. (for [tumbler-1 (range 10) tumbler-2 (range 10) tumbler-3 (range 10)] [tumbler-1 tumbler-2 tumbler-3]) Code can be typed on multiple lines, keeping it easy to read. Once the code is a correct form, the code is evaluated. This prints out a large result that is a little challenging to read. Using the clojure pretty print library, the result will be printed in a human friendly form (clojure.pprint/pprint (for [tumbler-1 (range 10) tumbler-2 (range 10) tumbler-3 (range 10)] [tumbler-1 tumbler-2 tumbler-3])) Rather than show all the combinations, show how many combinations their are Use the up arrow to save typing in all the code again And wrap the code with the count function (clojure.pprint/pprint (for [tumbler-1 (range 10) tumbler-2 (range 10) tumbler-3 (range 10)] [tumbler-1 tumbler-2 tumbler-3])) Add a condition in the code to avoid repeating a number in the combination (count (for [tumbler-1 (range 10) tumbler-2 (range 10) tumbler-3 (range 10) :when (and (not= tumbler-1 tumbler-2) (not= tumbler-2 tumbler-3) (not= tumbler-3 tumbler-1))] [tumbler-1 tumbler-2 tumbler-3])) Replacing count with pretty print to see all the combinations (clojure.pprint/pprint (for [tumbler-1 (range 10) tumbler-2 (range 10) tumbler-3 (range 10) :when (and (not= tumbler-1 tumbler-2) (not= tumbler-2 tumbler-3) (not= tumbler-3 tumbler-1))] [tumbler-1 tumbler-2 tumbler-3])) See the video on Data browsers for more ways to visualize data with the Clojure REPL. Ctrl-X Ctrl-D shows a description of a function, from that functions document string. (inc ) Not sure what a function is called, Ctrl-X Ctrl-A on a name runs a fuzzy search and shows functions with a similar name (map TAB will allow selection of function names starting with the current name. Ctrl-l will clear the REPL screen :repl/help show other commands and configure options for rebel readline. Use a Clojure aware editor connected to the REPL process for the full development experience http://practicalli.github.io/clojure/... Thank you.

Comments
  • Clojure projects with the REPL 5 лет назад
    Clojure projects with the REPL
    Опубликовано: 5 лет назад
  • REPL-driven development (RDD) with Clojure 7 месяцев назад
    REPL-driven development (RDD) with Clojure
    Опубликовано: 7 месяцев назад
  • LLM и GPT - как работают большие языковые модели? Визуальное введение в трансформеры 1 год назад
    LLM и GPT - как работают большие языковые модели? Визуальное введение в трансформеры
    Опубликовано: 1 год назад
  • Надоели файлы? Вот, пожалуйста, сокеты • C • Live coding 3 недели назад
    Надоели файлы? Вот, пожалуйста, сокеты • C • Live coding
    Опубликовано: 3 недели назад
  • Токенизация за 20 минут: от «что это?» до собственного токенизатора 1 день назад
    Токенизация за 20 минут: от «что это?» до собственного токенизатора
    Опубликовано: 1 день назад
  • Если гравитация - не сила, а искривление, то как она вообще притягивает? 1 день назад
    Если гравитация - не сила, а искривление, то как она вообще притягивает?
    Опубликовано: 1 день назад
  • Docker за 20 минут 1 год назад
    Docker за 20 минут
    Опубликовано: 1 год назад
  • Clojure Java Interop A Better Java than Java - Stuart Halloway 6 лет назад
    Clojure Java Interop A Better Java than Java - Stuart Halloway
    Опубликовано: 6 лет назад
  • КАКОЙ ЯЗЫК УЧИТЬ В 2026? ЧТОБЫ ТЕБЯ НЕ ЗАМЕНИЛ ИИ 1 день назад
    КАКОЙ ЯЗЫК УЧИТЬ В 2026? ЧТОБЫ ТЕБЯ НЕ ЗАМЕНИЛ ИИ
    Опубликовано: 1 день назад
  • Unleash the Power of the REPL - Dana Borinski 5 лет назад
    Unleash the Power of the REPL - Dana Borinski
    Опубликовано: 5 лет назад
  • «Добро пожаловать в Clojure/conj 2024» Рича Хики 1 год назад
    «Добро пожаловать в Clojure/conj 2024» Рича Хики
    Опубликовано: 1 год назад
  • 1 год назад
    "Enhancing LLM Powered Development with Clojure's REPL" by Colin Fleming
    Опубликовано: 1 год назад
  • Без головы. Война против Ирана. День второй 1 день назад
    Без головы. Война против Ирана. День второй
    Опубликовано: 1 день назад
  • Clojure: A live Demonstration of Simplicity That is Production Ready - Nir Rubinstein 8 лет назад
    Clojure: A live Demonstration of Simplicity That is Production Ready - Nir Rubinstein
    Опубликовано: 8 лет назад
  • Фильм Алексея Семихатова «ГРАВИТАЦИЯ» 5 дней назад
    Фильм Алексея Семихатова «ГРАВИТАЦИЯ»
    Опубликовано: 5 дней назад
  • ПОРТНИКОВ: 1 день назад
    ПОРТНИКОВ: "Все может быть хуже". Что (не)так с ударом по Ирану, чего ждет Путин, Украина, МИР ВСЕ?
    Опубликовано: 1 день назад
  • Как Иран стал главным врагом США? / Уроки истории / МИНАЕВ 20 часов назад
    Как Иран стал главным врагом США? / Уроки истории / МИНАЕВ
    Опубликовано: 20 часов назад
  • Шокирующая причина атаки Трампа на Иран резко вырвалась в новостях. 2 дня назад
    Шокирующая причина атаки Трампа на Иран резко вырвалась в новостях.
    Опубликовано: 2 дня назад
  • шаблоны проектирования агентов ИИ 3 дня назад
    шаблоны проектирования агентов ИИ
    Опубликовано: 3 дня назад
  • Вся IT-база в ОДНОМ видео: Память, Процессор, Код 3 месяца назад
    Вся IT-база в ОДНОМ видео: Память, Процессор, Код
    Опубликовано: 3 месяца назад

Контактный email для правообладателей: u2beadvert@gmail.com © 2017 - 2026

Отказ от ответственности - Disclaimer Правообладателям - DMCA Условия использования сайта - TOS



Карта сайта 1 Карта сайта 2 Карта сайта 3 Карта сайта 4 Карта сайта 5