User contributions for Admin
13 June 2023
- 21:3721:37, 13 June 2023 diff hist +320 How to Use JavaScript in a Phoenix LiveView No edit summary
12 June 2023
- 21:1321:13, 12 June 2023 diff hist +146 How to Use JavaScript in a Phoenix LiveView No edit summary
- 20:3520:35, 12 June 2023 diff hist +381 How to Use JavaScript in a Phoenix LiveView No edit summary
8 June 2023
- 13:1613:16, 8 June 2023 diff hist +1 Welcome to ElixirBlocks No edit summary
5 June 2023
- 13:3613:36, 5 June 2023 diff hist −1 User:Admin No edit summary
- 13:3213:32, 5 June 2023 diff hist +83 User:Admin No edit summary
- 02:3902:39, 5 June 2023 diff hist +354 User:Admin No edit summary
4 June 2023
- 20:5120:51, 4 June 2023 diff hist +13 User:Admin No edit summary
- 20:5120:51, 4 June 2023 diff hist +465 User:Admin No edit summary
- 16:1816:18, 4 June 2023 diff hist +11 How to Check if a Repo (Table Collection) is Devoid of Entries No edit summary current
- 16:1816:18, 4 June 2023 diff hist +75 N How to Check if a Repo (Table Collection) is Devoid of Entries Created page with "Use exists? Example: <source> Repo.exists?(App.Testbeds.Testbed) </source>"
3 June 2023
- 16:1916:19, 3 June 2023 diff hist +62 How to Add New Item to App Made Using the phx.gen.html Generator No edit summary current
- 16:1716:17, 3 June 2023 diff hist +69 How to Add New Item to App Made Using the phx.gen.html Generator No edit summary
- 16:0816:08, 3 June 2023 diff hist +297 Working with Ecto No edit summary
2 June 2023
- 20:2520:25, 2 June 2023 diff hist +161 N Get Last Record From Ecto Created page with "<source> Repo.one(from x in MyApp.Model, order_by: [desc: x.id], limit: 1) </source> https://til.hashrocket.com/posts/388b0870c7-get-the-last-record-with-ecto" current
- 19:5419:54, 2 June 2023 diff hist +25 Select all Table Entries based on a Field Value and Update Them No edit summary current
- 19:5419:54, 2 June 2023 diff hist +184 Select all Table Entries based on a Field Value and Update Them No edit summary
- 19:5319:53, 2 June 2023 diff hist +240 N Select all Table Entries based on a Field Value and Update Them Created page with "'''Example''' <source> def reset_testbeds do items = from t in TestBed, where: t.status == "Taken" Repo.update_all(items, set: [status: "Available", developer: "None"]) |> broadcast_change([:testbed, :reset]) end </source>"
- 13:5813:58, 2 June 2023 diff hist +95 N Working with Ecto Created page with " {{In_progress}} https://brooklinmyers.medium.com/ecto-with-phoenix-in-4-minutes-9b7c447055c6"
1 June 2023
- 12:2212:22, 1 June 2023 diff hist +160 Working with time No edit summary current
31 May 2023
- 20:3620:36, 31 May 2023 diff hist +117 Working with time No edit summary
30 May 2023
- 18:1418:14, 30 May 2023 diff hist +434 N How to Fix Esbuild.start Error in Elixir Phoenix Created page with "You start phoenix server mix phx.server and get this error: <source> ** (Mix) Could not start application esbuild: exited in: Esbuild.start(:normal, []) ** (EXIT) an exception was raised: ** (ErlangError) Erlang error: :eacces: </source> Delete the directories named '''_build''' and '''deps'''. Run: mix deps.get + compile When you move an Elixir Phoenix app to another machine you always delete those directories." current
29 May 2023
- 17:1217:12, 29 May 2023 diff hist +138 How to Add a Field to a Generated Table Retroactively No edit summary
- 17:1017:10, 29 May 2023 diff hist +271 How to Add a Field to a Generated Table Retroactively No edit summary
- 06:2506:25, 29 May 2023 diff hist +163 How to Add a Field to a Generated Table Retroactively No edit summary
- 06:2106:21, 29 May 2023 diff hist +40 How to Add a Field to a Generated Table Retroactively No edit summary
- 05:3505:35, 29 May 2023 diff hist +77 How to Add a Field to a Generated Table Retroactively No edit summary
- 05:3305:33, 29 May 2023 diff hist +406 How to Add a Field to a Generated Table Retroactively No edit summary
- 05:2705:27, 29 May 2023 diff hist +145 How to Add a Field to a Generated Table Retroactively No edit summary
- 04:4704:47, 29 May 2023 diff hist 0 How to Add a Field to a Generated Table Retroactively No edit summary
- 04:4704:47, 29 May 2023 diff hist +15 N How to Add a Field to a Generated Table Retroactively Created page with "{{In_Progress}}"
- 04:3104:31, 29 May 2023 diff hist +59 How to Iterate and Render Database Data in Phoenix LiveView No edit summary
- 04:1804:18, 29 May 2023 diff hist −2 How to Iterate and Render Database Data in Phoenix LiveView No edit summary
- 04:1804:18, 29 May 2023 diff hist −38 How to Iterate and Render Database Data in Phoenix LiveView No edit summary
- 02:3602:36, 29 May 2023 diff hist +250 How to Iterate and Render Database Data in Phoenix LiveView No edit summary
28 May 2023
- 09:3609:36, 28 May 2023 diff hist +284 How to Add New Item to App Made Using the phx.gen.html Generator No edit summary
- 09:3009:30, 28 May 2023 diff hist +379 N How to Add New Item to App Made Using the phx.gen.html Generator Created page with "This document explains how to retroactively add a new item to your app when your data was created using the phx.gen.html generator. First, you need data that is generated. An example is: <source> mix phx.gen.html Testbeds Testbed testbeds name:string </source> After the code is generated, the items are viewable in your app going to: <source> localhost://testbeds </source>"
- 07:0507:05, 28 May 2023 diff hist +48 User:Admin No edit summary
7 May 2023
- 06:0906:09, 7 May 2023 diff hist +305 How to Create a Basic PubSub Application No edit summary
- 06:0606:06, 7 May 2023 diff hist +15 N How to Create a Basic PubSub Application Created page with "{{In progress}}"
- 05:3605:36, 7 May 2023 diff hist +12 MediaWiki:Common.css No edit summary
1 May 2023
- 03:1903:19, 1 May 2023 diff hist +44 User:Admin No edit summary
7 April 2023
- 12:2412:24, 7 April 2023 diff hist +1 User:Admin No edit summary
- 12:0612:06, 7 April 2023 diff hist +118 User:Admin No edit summary
6 April 2023
- 12:2512:25, 6 April 2023 diff hist +3 How to Create Nested LiveView Components No edit summary current
- 12:2412:24, 6 April 2023 diff hist −1 How to Create Nested LiveView Components No edit summary
- 12:2412:24, 6 April 2023 diff hist +1 How to Create Nested LiveView Components No edit summary
- 12:2312:23, 6 April 2023 diff hist +2 How to Create Nested LiveView Components No edit summary
- 12:2312:23, 6 April 2023 diff hist +3 How to Create Nested LiveView Components No edit summary
- 12:1712:17, 6 April 2023 diff hist +501 N How to Create Nested LiveView Components Created page with "This example demonstrates a nested LiveView component. <source> defmodule AppxWeb.SandboxLive do use AppxWeb, :live_view import MyComponent def mount(_params, _session, socket) do {:ok, socket} end def render(assigns) do ~H""" Hello World! YAY <MyComponent.greet name="Jane" /> """ end end </source> <source> defmodule MyComponent do use Phoenix.Component def greet(assigns) do ~H""" <p>Hello, <%= @name %>!</p>..."