Творчество сообщества itunderhood
- https://twitter.com/kamyshev_code/status/1370270186440425476
- https://eat.kamyshev.me/?utm_campaign=itunderhood
// https://www.tutorialspoint.com/online_processingjs_editor.php | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/processing.js/1.6.6/processing.min.js"></script> | |
<script type="application/processing" data-processing-target="pjs"> | |
dW = 4; dH = 20; dWH = dW/2; dHH = dH/2; | |
gSh = dWH/2; r = dW/sqrt(2); fs = 2 * (dH); |
https://www.youtube.com/watch?v=fhMVCRWpNVc&ab_channel=%D0%90%D0%B9%D0%A2%D0%B8%D0%91%D0%BE%D1%80%D0%BE%D0%B4%D0%B0 | |
igroykt | |
айтишечка и в африке айтишечка | |
а я питоняш, и пишу на нем код наш | |
иногда на пхп, выдаю я выхлоп кнеш |
--ghc 8.0.2 | |
type ThermometerName = String | |
type BarometerName = String | |
data Method | |
= ReadThermometer ThermometerName | |
| ReadBarometer BarometerName | |
| ReportTemperature | |
| ReportAtmospherePressure |
Recently I noticed the number of the same two questions being asked again and again on different Haskell resources. The questions were “How to get a Haskell job” and “Why is it so hard to find Haskellers?” Although these two are coming from the opposite sides of the hiring process, the answer is really just one. There is a single reason, a single core problem that causes difficulties of hiring and being hired in the Haskell community, and we should clearly articulate this problem if we want to increase the Haskell adoption.
We all know that there are many people wishing to get a Haskell job. And a visible increase of Haskell jobs looks like there should be a high demand for Haskellers. The Haskell community has also grown like crazy past years. But still, why is it so difficult to hire and to be hired? Why can’t companies just hire any single person who demonstrates a deep knowledge of Haskell in blog posts, in chats, on forums, and in talks? And why do Haskell companies avoid hirin
At the beginning of 2030, I found this essay in my archives. From what I know today, I think it was very insightful at the moment of writing. And I feel it should be published because it can teach us, Rust developers, how to prevent that sad story from happening again.
What killed Haskell, could kill Rust, too
What killed Haskell, could kill Rust, too. Why would I even mention Haskell in this context? Well, Haskell and Rust are deeply related. Not because Rust is Haskell without HKTs. (Some of you know what that means, and the rest of you will wonder for a very long time). Much of the style of Rust is similar in many ways to the style of Haskell. In some sense Rust is a reincarnation of Haskell, with a little bit of C-ish like syntax, a very small amount.
Is Haskell dead?
This is a list of patterns. I'm collecting this list with an idea to write a book similar to the GoF book.
My patterns:
See also List of materials about Software Design in Haskell
Junior | Middle | Senior | Architect | |
---|---|---|---|---|
Haskell level | Basic Haskell | Intermediate Haskell | Advanced Haskell | Language-agnostic |
Haskell knowledge scope | Learn you a Haskell | Get programming with Haskell | Haskell in Depth | Knows several languages from different categories |
Get programming with Haskell | Haskell in Depth | Functional Design and Architecture | ||
[Other books on Software Engineering in Haskell](https://github.com/graninas/software-design-in-haskell#B |
data User = User | |
{ firstName :: String | |
, secondName :: String | |
} | |
-- The User data type has field firstName, it's a string. | |
-- firstName :: User -> String | |
-- secondName :: User -> String |
List of materials on Software Design in Haskell
Other resources that are good, but not necessarry about Software Design