(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| [ | |
| { | |
| "id": "dca3c9ee-d59e-40e0-a686-e29ae62c9ab5", | |
| "name": "Testamente", | |
| "type": "parent", | |
| "blocks": [ | |
| { | |
| "category": "waypoint", | |
| "id": "dca3c9ee-d59e-40e0-a686-e29ae62c9ab5", | |
| "next": { |
| { | |
| "openapi": "3.0.0", | |
| "info": { | |
| "title": "LianaMailer REST API documentation", | |
| "version": "1.0.0", | |
| "description": "REST API of LianaMailer" | |
| }, | |
| "servers": [ | |
| { | |
| "url": "https://rest.lianamailer.com/api" |
| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "definitions": { | |
| "APIBlockType": { | |
| "properties": { | |
| "api": { | |
| "$ref": "#/definitions/APIConfig" | |
| }, | |
| "category": { | |
| "anyOf": [ |
| #cloud-config | |
| apt: | |
| sources: | |
| docker.list: | |
| source: deb [arch=amd64] https://download.docker.com/linux/ubuntu $RELEASE stable | |
| keyid: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88 | |
| #ca-certs: | |
| # remove-defaults: true |
| import { GenerateClassNameOptions } from '@material-ui/styles/createGenerateClassName/createGenerateClassName'; | |
| import nested from '@material-ui/styles/ThemeProvider/nested'; | |
| import logger from './logger'; | |
| const pseudoClasses = [ | |
| 'checked', | |
| 'disabled', | |
| 'error', | |
| 'focused', | |
| 'focusVisible', |
| #!/bin/bash | |
| # IMPORTANT: You will need to disable SIP aka Rootless in order to fully execute this script, you can reenable it after. | |
| # WARNING: It might disable things that you may not like. Please double check the services in the TODISABLE vars. | |
| # Get active services: launchctl list | grep -v "\-\t0" | |
| # Find a service: grep -lR [service] /System/Library/Launch* /Library/Launch* ~/Library/LaunchAgents | |
| # Agents to disable | |
| TODISABLE=('com.apple.security.keychainsyncingoveridsproxy' 'com.apple.personad' 'com.apple.passd' 'com.apple.screensharing.MessagesAgent' 'com.apple.CommCenter-osx' 'com.apple.Maps.mapspushd' 'com.apple.Maps.pushdaemon' 'com.apple.photoanalysisd' 'com.apple.telephonyutilities.callservicesd' 'com.apple.AirPlayUIAgent' 'com.apple.AirPortBaseStationAgent' 'com.apple.CalendarAgent' 'com.apple.DictationIM' 'com.apple.iCloudUserNotifications' 'com.apple.familycircled' 'com.apple.familycontrols.useragent' 'com.apple.familynotificationd' 'com.apple.gamed' 'com.apple.icloud.findmydeviced.findmydevi |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Note: I'm currently taking a break from this course to focus on my studies so I can finally graduate
| version: '2' | |
| services: | |
| web: | |
| image: nginx | |
| ports: | |
| - "80:80" |