Если вы видите что-то необычное, просто сообщите мне. 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

55 total results found

WELCOME TO ALL THOSE LEARNING HASKELL

Haskell

Отрыв

MONDAY MORNING HASKELL

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

Мозги Haskell

MONDAY MORNING HASKELL

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

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

MONDAY MORNING HASKELL

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

Testing in Haskell

MONDAY MORNING HASKELL

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

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...

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 ...

Purescript: Haskell + Javascript

MONDAY MORNING HASKELL

Elm is a great language, as we cover in our Elm Series. It has great, intuitive primitives for building a web UI. But it lacks a lot of important features that we as Haskell developers are used to, most notably typeclasses. Purescript offers another alterna...

ldap-proxy

Golang

Архив

Архив

Поведенческие паттерны (Behavioral)

Паттерны проектирования с примерами на ...

Поведенческие паттерны делятся на два типа: 1. Паттерны уровня класса 2. Паттерны уровня объекта. Паттерны уровня класса описывают взаимодействия между классами и их подклассами. Такие отношения выражаются путем наследования и реализации классов. Тут ба...

Порождающие паттерны (Creational)

Паттерны проектирования с примерами на ...

Порождающие паттерны делятся на два типа: 1. Паттерны уровня класса 2. Паттерны уровня объекта. Паттерны уровня класса изменяют класс создаваемого объекта с помощью наследования. Паттерны уровня объекта создают новые объекты с помощью других объектов...

Структурные паттерны (Structural)

Паттерны проектирования с примерами на ...

Структурные паттерны делятся на два типа: 1. Паттерны уровня класса 2. Паттерны уровня объекта. Паттерны уровня класса описывают взаимодействия между классами и их подклассами. Такие отношения выражаются путем наследования и реализации классов. Тут базо...

Linux

Инструкции