Understand your Mac and iPhone more deeply by tracing the evolution of Mac OS X from prelease to Swift. John Siracusa delivers the details.
You've got two main options:
Das BMVI hat eine völlig nutzlose App gebaut. Eine Autobahn-Info App.
Nein, es gibt jetzt nämlich eine offene API für aktuelle Verwaltungsdaten in Bezug auf Baustellen-Informationen, Webcams, Parkplätze, … - bestimmt für jemand nützlich.
Hier gibt es eine OpenAPI Spec von @creckord: https://gist.github.com/creckord/a2e09267f5fdfadc2cd75eedb3182b8a
Here's an ecto changeset validation for urls:
@doc """
validates field is a valid url
## Examples
iex> Ecto.Changeset.cast(%ZB.Account{}, %{"website" => "https://www.zipbooks.com"}, [:website])
...> |> Utils.Changeset.validate_url(:website)
...> |> Map.get(:valid?)
| # How to use it: | |
| # | |
| # Plug it at the end of your :browser pipeline in your Phoenix app router.ex | |
| # Make sure it is plugged before your session-based authentication and authorization Plugs. | |
| # | |
| # pipeline :browser do | |
| # plug :accepts, ["html"] | |
| # plug :fetch_session | |
| # plug :fetch_flash | |
| # plug :put_secure_browser_headers |
| -- Your access point's SSID and password | |
| local SSID = "greenhouse" | |
| local SSID_PASSWORD = "senhasupersecreta" | |
| local DEVICE = "device001" | |
| local temperature = 27.5 | |
| -- configure ESP as a station | |
| wifi.setmode(wifi.STATION) | |
| wifi.sta.config(SSID,SSID_PASSWORD) | |
| wifi.sta.autoconnect(1) |
| module PouchDB where | |
| import Task exposing (Task) | |
| import Native.PouchDB | |
| type PouchDB = POUCHDB_IMPLEMENTED_IN_JAVASCRIPT | |
| type PouchError | |
| = Error |
| zpool create -O utf8only=on -O normalization=formD -O casesensitivity=mixed -O aclinherit=passthrough tank raidz ada0 ada1 ada2 | |
| #receive side | |
| #sudo zfs allow -u l33tname create,receive,rename,mount,share,send tank | |
| sudo zfs allow -l l33tname create,destroy,snapshot,rollback,clone,promote,rename,mount,send,receive,quota,reservation tank | |
| l33tname@travos:~ % zfs allow tank | |
| ---- Permissions on tank --------------------------------------------- | |
| Local permissions: |
This my receipe for installing a complete nodejs server on FreeBSD 10. The parameters used in this configuration are for a very small private server that I use for demo purpose only, so for a production server, you should somehow set the limits in pair with your ressources.
I use monit so I don't have to write rc scripts for node and it should take care of process lifecycle management for me. Alternatives exists such as supervisord or circus.