nikos
Get 20% off with coupon code “elixirforum”!
Ruby programming was one of the best course I have taken. I can’ t wait !
Trending in Courses
Who this resource is by
Created by Wilfredo Barrios as part of the open-source Coding5s Framework.
Short description
I’m sharing two fre...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming












Showing Posts 32 to 23- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
easco
Go ahead and ping @mikeclark and @NicoleClark at the studio’s site… they are super nice people. If they don’t have updates already, they might be happy to take yours and add them to the course notes.
WestKeys
Answering myself
For
Full-Stack GraphQL with Absinthe, Phoenix, and ReactSo far we have:
elixir: "~> 1.5",Meaning you get the following deprecation warnings:
warning: :simple_one_for_one strategy is deprecated, please use DynamicSupervisor insteadHad the same issue with Dave Thomas’s course
Will update as I progress in the course
WestKeys
Anybody know which versions of Elixir/Phoenix the Pragmatic Studio courses support, specifically
Elixir & OTPandFull-Stack GraphQLwith Absinthe, Phoenix, and React?Multi-Player Game with Elixir, Phoenix, Vue & Elmuses Phoenix 1.4 which is slightly outdated as 1.6 is on its way out (and a few important features came out in 1.5)If the courses use outdated versions, did anyone encounter any difficulties?
ovidiubadita
I just finished the course and it is great. They did an amazing job explaining most of what you would want to know.
I hope they do more courses on Elixir and Phoenix. I started the one on Bingo game development and it looks interesting.
AstonJ
You should report that directly to the Pragmatic Studio:
zlydenko
Here russian guys stole the course and resale it for profit :3
pillaiindu
I watched that video further and they explained the same in the video. Thank you @DevotionGeo and @easco!
DevotionGeo
I don’t use Sublime for Elixir development, but looks like Sublime takes the current directory from the file being run, and VSCode takes the project’s root as the current directory. Simple!
And that’s what @easco also said.
pillaiindu
I first tried the way they taught and it gave me an error with the reason
:enoentthen I removed the../../part from it, and it worked.Now I don’t know, why it worked this (
case File.read("pages/about.html") do)way, because if you look at the directory structure, it should work the way Nicole and Mike taught (
case File.read("../../pages/about.html") do).Edit: The only difference in our setups is that they’re running the script inside Sublime, and I have
coderunnerextension installed in VSCode, which does the job.Edit2:
I even ran it from the terminal, being in the root of the project I ran
elixir lib/servy/handler.ex, still it worked without../../Thank you for the reply!
easco
Elixir has a concept of the current working directory that relative paths are resolved against. Perhaps Mike an Nicole we’re running the application from a different path than you were.