User contributions for Admin
27 March 2023
- 10:5910:59, 27 March 2023 diff hist +71 User:Admin No edit summary
- 10:5710:57, 27 March 2023 diff hist +15 User:Admin No edit summary
- 10:5710:57, 27 March 2023 diff hist +329 N User:Admin Created page with "How to Create Database Seed Data. How to Work with Database Data via Basic Commands and Custom Change sets. How to Render Database Data to LiveView (via Context Commands). How to Create a Chat using PubSub. How to Create Event Handlers in LiveView How to Create a Dynamic Route from Scratch. How to Use Elixirs Template language"
- 10:4910:49, 27 March 2023 diff hist +15 How to Iterate and Render Database Data in Phoenix LiveView No edit summary
- 10:4510:45, 27 March 2023 diff hist +39 N Template:In progress Created page with "<big>This page is ''in progress''</big>" current
- 10:4210:42, 27 March 2023 diff hist +493 N How to Iterate and Render Database Data in Phoenix LiveView Created page with " ==Example== This code references a PostgreSQL table named TestBeds. <source> use AppWeb, :live_view alias App.TestBeds defmodule AppWeb.PageLive do use AppWeb, :live_view alias App.TestBeds def mount(_params, _session, socket) do {:ok, assign(socket, testbeds: TestBeds.list_testbeds())} end def render(assigns) do ~H""" <%= for testbed <- assigns.testbeds do %> <div><%= testbed.name %></div> <% end %> """..."
26 March 2023
- 06:2806:28, 26 March 2023 diff hist 0 How to Create a Basic Elixir Phoenix LiveView Application No edit summary
- 06:2706:27, 26 March 2023 diff hist +63 How to Create a Basic Elixir Phoenix LiveView Application No edit summary
- 06:2506:25, 26 March 2023 diff hist +588 How to Render Dynamic Variables in a Phoenix LiveView No edit summary current
- 06:1806:18, 26 March 2023 diff hist +24 How to Render Dynamic Variables in a Phoenix LiveView No edit summary
- 06:1706:17, 26 March 2023 diff hist +173 How to Render Dynamic Variables in a Phoenix LiveView No edit summary
- 06:1406:14, 26 March 2023 diff hist +34 How to Render Dynamic Variables in a Phoenix LiveView No edit summary
- 06:1306:13, 26 March 2023 diff hist +264 N How to Render Dynamic Variables in a Phoenix LiveView Created page with " <source> defmodule AppWeb.PageLive do use AppWeb, :live_view def mount(_params, _session, socket) do {:ok, assign(socket, greeting: "Hello World")} end def render(assigns) do ~H""" <%= assigns.greeting %> """ end end </source>"
- 06:0606:06, 26 March 2023 diff hist +3,604 N How to Create a Basic Elixir Phoenix LiveView Application Created page with "'''Before You Begin''' {{Phoenix-Installation-Required}} ==What you will do== * Create a new Phoenix application instance * Create a route that points to a LiveView Page * Create a basic LiveView page and render text to the browser that says "Hello World". ==Create the App== Select a directory, open a terminal and type: <syntaxhighlight> mix phx.new app </syntaxhighlight> This creates a new phoenix application named "app". The terminal will prompt you to download..."
- 06:0206:02, 26 March 2023 diff hist +312 N How to Sort a List of Maps Created page with "==Basic Example== <syntaxhighlight> users = [ %{name: "Bob"}, %{name: "Zod"}, %{name: "Maureen"} ] Enum.sort_by(users, &(&1.name), :desc)) </syntaxhighlight> '''Reference''' [https://stackoverflow.com/questions/75719213/phoenix-liveview-basic-sorting-of-data-for-render/75719659#75719659|Stackoverflow]" current
- 05:5305:53, 26 March 2023 diff hist +28 Welcome to ElixirBlocks No edit summary
25 March 2023
- 23:2423:24, 25 March 2023 diff hist 0 Template:Phoenix-Installation-Required No edit summary current
- 23:2423:24, 25 March 2023 diff hist +306 N Template:Phoenix-Installation-Required Created page with " '''Installing Phoenix''' This article assumes that you have installed the Phoenix web framework and all dependencies correctly and without errors. If you have not installed the Phoenix web framework please view the [https://hexdocs.pm/phoenix/installation.html#content|official documentation here] <hr>"
12 March 2023
- 04:0804:08, 12 March 2023 diff hist +13 Working with time No edit summary
- 04:0704:07, 12 March 2023 diff hist +102 Working with time No edit summary
- 04:0604:06, 12 March 2023 diff hist +79 Working with time No edit summary
- 04:0504:05, 12 March 2023 diff hist +142 Working with time No edit summary
- 03:5203:52, 12 March 2023 diff hist +38 Working with time No edit summary
- 03:5103:51, 12 March 2023 diff hist +112 Working with time No edit summary
- 03:0903:09, 12 March 2023 diff hist +66 N Working with time Created page with " Get time: <syntaxhighlight> DateTime.utc_now() </syntaxhighlight>"
- 03:0703:07, 12 March 2023 diff hist −4 Welcome to ElixirBlocks No edit summary
8 March 2023
- 14:4914:49, 8 March 2023 diff hist −804 Main Page Blanked the page current Tag: Blanking
- 14:4614:46, 8 March 2023 diff hist +11 Welcome to ElixirBlocks No edit summary
- 14:4514:45, 8 March 2023 diff hist +7 Welcome to ElixirBlocks No edit summary
- 14:4414:44, 8 March 2023 diff hist +80 Welcome to ElixirBlocks No edit summary
- 14:3914:39, 8 March 2023 diff hist +772 N Welcome to ElixirBlocks Created page with " This is my personal web project where I write small working blocks of useful Elixir Code. If you want to contribute here are the rules: 1. Write the smallest fully working code examples possible. Ideally, the reader should be able to copy and paste the code and have a working example running quickly. 2. Set assumptions prior to writing. If your code requires perquisite knowledge, be explicit and let the reader know. 3. Contextualize the code so the reader underst..."
- 14:3814:38, 8 March 2023 diff hist +23 N MediaWiki:Mainpage Created page with "Welcome to ElixirBlocks" current
- 13:2413:24, 8 March 2023 diff hist −18 Main Page No edit summary
- 13:2213:22, 8 March 2023 diff hist +14 Main Page No edit summary
- 13:2113:21, 8 March 2023 diff hist +3 Main Page No edit summary
- 13:1913:19, 8 March 2023 diff hist +160 Main Page No edit summary
- 13:0513:05, 8 March 2023 diff hist +52 Main Page No edit summary
- 12:2012:20, 8 March 2023 diff hist +81 Main Page No edit summary
- 12:1512:15, 8 March 2023 diff hist −5 MediaWiki:Common.css No edit summary Tag: Manual revert
- 12:0912:09, 8 March 2023 diff hist +5 MediaWiki:Common.css No edit summary Tag: Reverted
- 12:0812:08, 8 March 2023 diff hist +11 MediaWiki:Common.css No edit summary
- 12:0712:07, 8 March 2023 diff hist −6 MediaWiki:Common.css No edit summary
- 12:0712:07, 8 March 2023 diff hist +2 MediaWiki:Common.css No edit summary
- 12:0512:05, 8 March 2023 diff hist −1 MediaWiki:Common.css No edit summary
- 12:0512:05, 8 March 2023 diff hist +40 N MediaWiki:Common.css Created page with " main{ background-color:0042ef6e; }"
- 04:5604:56, 8 March 2023 diff hist +1 Main Page No edit summary
- 04:4504:45, 8 March 2023 diff hist −2 Main Page No edit summary
- 04:4404:44, 8 March 2023 diff hist +454 Main Page No edit summary
- 04:2504:25, 8 March 2023 diff hist −18 Main Page No edit summary
- 04:2304:23, 8 March 2023 diff hist −90 Main Page No edit summary