Если вы видите что-то необычное, просто сообщите мне. Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

311 total results found

raspberry

Micro

Code-server

Инструкции Docker/docker-compose

code-server взято отсюда: https://hub.docker.com/r/codercom/code-server docker-compose.yml - можно использовать или build или image version: "2.1" services: code-server: #image: codercom/code-server:latest build: . container_name: cod...

Функциональщина

Haskell

WELCOME TO ALL THOSE LEARNING HASKELL

Haskell

Selfhosted Sentry

Инструкции Docker/docker-compose

Первый запуск: docker-compose run sentry sentry upgrade dokcer-compose.yml version: '2' services: redis: image: redis postgres: image: postgres env_file: - .env volumes: - ./pgdb:/var/lib/pos...

Фото бот

Архив Kotlin

Сегодня наша миссия - создать фото бота. который будет посылать пользователю картинку. Это просто пример, мы не будем использовать картинки онлайн, не будет поддержки груповых чатов. Просто локально картинки. Но зато мы научимся как создавать свои клавиатуры, ...

Отрыв

MONDAY MORNING HASKELL

Если вы всегда мечтали начать изучать Haskell и не знаете откуда начать, не ищите дальше! Наш серия "Отрыв" это руководство разработано для того, чтобы провести вас от базовых знаний о язык до написания полноценного кода. Вы начнете с получения всех необходим...

Мозги Haskell

MONDAY MORNING HASKELL

Чисто технически, Haskell бросает нам большой вызов. Но часто это больше чем просто грубый технический навык знания какого-то нового языка. В этой части, мы обсудим некоторые причины, почему люди видят Haskell вызовом. Так же направим мысли при изучения языка ...

Монады (и другие функциональные структуры)

MONDAY MORNING HASKELL

Монады одни из самых страшных тем для новичков в Haskell. Но как и большинство идей, они перестают быть страшными с приходом понимания. Есть множество пособий и множество определений, что такое на самом деле монады и как это объяснить людям. Эта серия - попытк...

Testing in Haskell

MONDAY MORNING HASKELL

В Haskell, мы бы предпочли, чтобы показателем было не только то что наш код собирается, но и то что он правильно работает. В Haskell это проще чем в других языках. Но конечно, всегда есть что по делать. Важная часть любого языка - написание тестов. В этой част...

Запуск java как сервиса через systemd

Инструкции Запуск различных программ через systemd

Предоставим у вас есть jar файл и вам нужно его запустить как сервис. Так же есть необходимость запускать его автоматически когда система перезагружается. Убунту имеет встроенный механизм для создания сервисом в ручном режиме, запуск во время загрузи системы ...

Haskell's Data Types!

MONDAY MORNING HASKELL

One of the first major selling points for me and Haskell was the simplicity of data declarations. Even as a novice programmer, I was tired of the odd syntax require just to associate some data together. Haskell was clean and fresh. As I dug deeper, I found tha...

Run a Java Application as a Service on Linux

Инструкции Запуск различных программ через systemd

Введение Любое Java приложение с точки зрения системы это просто объект JVM. В этом коротком руководстве мы увидим, как мы можем сделать наше приложение сервисом. Мы будем истользовать удобства пакета system, systemd это сервис управления системой в современ...

Real World Haskell

MONDAY MORNING HASKELL

A lot of people think day-to-day tasks like running a web app are difficult or impossible in Haskell! But of course this isn't true! In our Real World Haskell series, we'll take you through a whole slew of libraries that allow you to write a web backend. These...

Machine Learning in Haskell

MONDAY MORNING HASKELL

AI and machine learning are huge topics in technology. In this series, we'll explore how Haskell's unique features as a language can be valuable in crafting better AI programs. In particular, we'll explore some advanced concepts in type safety, and apply these...

Haskell & Open AI Gym

MONDAY MORNING HASKELL

Our Machine Learning series explores both basic and advanced topics when it comes to using Haskell and TensorFlow. This series expands on that knowledge and demonstrates how we can use Haskell with another practical AI framework. We'll explore some of the idea...

Parsing with Haskell

MONDAY MORNING HASKELL

Haskell is an excellent language for all your parsing needs. The functional nature of the language makes it easy to compose different building blocks together without worrying about nasty side effects and unforeseen consequences. Since the language is so well-...

Haskell API Integrations

MONDAY MORNING HASKELL

Haskell claims to have functional purity, and hence lacks side effects. This is of course a bit of a simplication that lends itself to many jokes. Of course we can do lots of interesting communication tasks with Haskell, as long as we know the right libraries!...

Contributing to GHC

MONDAY MORNING HASKELL

The Glasgow Haskell Compiler is one of the linchpins of the Haskell community. It is far and away the most widely used compiler for the language. Its many unique features help make Haskell a special language. It also depends a lot of open source contributions!...

Elm: Functional Frontend

MONDAY MORNING HASKELL

Frontend web programming presents an interesting challenge for Haskell developers. Ultimately, browsers run on HTML, CSS, and Javascript. This means that whatever you program in, you’d better be able to compile it down to those languages. There are a few pure ...