The initial source comes from sdcuike/issueBlog#4
https://github.com/PacktPublishing free to download books code by Packet
https://github.com/EbookFoundation/free-programming-books Very immense
generated Aug 04, 2023 12:42:06 | |
system Debian GNU/Linux 11 (bullseye) Linux 5.15.90.1-microsoft-standard-WSL2 | |
x86_64 x | |
emacs 28.2 ~/.emacs.d/ | |
doom 3.0.0-pre PROFILE=_@0 HEAD -> master 90b1b221f 2023-07-26 23:31:38 +0200 | |
~/.doom.d/ | |
shell /bin/bash | |
features CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS HARFBUZZ IMAGEMAGICK | |
JPEG JSON LCMS2 LIBOTF LIBSELINUX LIBXML2 M17N_FLT MODULES NATIVE_COMP | |
NOTIFY INOTIFY PDUMPER PNG RSVG SECCOMP SOUND THREADS TIFF |
// pub mod comps; | |
// use comps::hello::*; | |
use sycamore::context::{use_context, ContextProvider, ContextProviderProps}; | |
use sycamore::prelude::*; | |
use sycamore_router::{HistoryIntegration, Route, Router, RouterProps}; | |
use wasm_bindgen_futures::*; | |
#[derive(Clone)] | |
struct InputTxt(Signal<String>); |
// pub mod comps; | |
// use comps::hello::*; | |
use sycamore::prelude::*; | |
use sycamore_router::{HistoryIntegration, Route, Router, RouterProps}; | |
use wasm_bindgen_futures::*; | |
#[derive(Route)] | |
enum Routes { | |
#[to("/")] |
#Insall Ajenti ubuntu 18.04 | |
apt-get update | |
wget http://repo.ajenti.org/debian/key -O- | apt-key add - | |
echo "deb http://repo.ajenti.org/ng/debian main main ubuntu" >> /etc/apt/sources.list | |
apt-get update | |
# install python imaging | |
apt upgrade | |
apt-get install python-pillow | |
cd ~ | |
wget http://security.ubuntu.com/ubuntu/pool/universe/p/pillow/python-imaging_4.1.1-3build2_all.deb |
#Insall Ajenti | |
apt-get update | |
wget http://repo.ajenti.org/debian/key -O- | apt-key add - | |
echo "deb http://repo.ajenti.org/ng/debian main main ubuntu" >> /etc/apt/sources.list | |
apt-get update | |
apt-get install ajenti -y | |
service ajenti restart | |
# Uninstall Apache2 | |
sudo apt-get autoremove && sudo apt-get remove apache2* -y |
https://github.com/PacktPublishing free to download books code by Packet
https://github.com/EbookFoundation/free-programming-books Very immense
module Main exposing (..) | |
import Browser | |
import Browser.Navigation as Nav | |
import Dropdown | |
import Element exposing (Element, centerX, centerY, column, el, fill, fillPortion, focused, height, image, mouseOver, padding, paddingEach, paddingXY, px, rgb255, rgba255, row, spacing, spacingXY, text, width) | |
import Element.Background as Background | |
import Element.Border as Border | |
import Element.Font as Font | |
import Element.Input as Input |
Should be work with 0.18
Destructuring(or pattern matching) is a way used to extract data from a data structure(tuple, list, record) that mirros the construction. Compare to other languages, Elm support much less destructuring but let's see what it got !
myTuple = ("A", "B", "C")
myNestedTuple = ("A", "B", "C", ("X", "Y", "Z"))
PostgreSQL Type | PostgreSQL Size | Description | Range | Diesel Type | Rust Type |
---|---|---|---|---|---|
Nullable Types | nullable | Nullable `` |