- Open Automator
- Create a new document
- Select Quick Action
- Set “Service receives selected” to
files or folders
inany application
- Add a
Run Shell Script
action- your default shell should already be selected, otherwise use
/bin/zsh
for macOS 10.15 (”Catalina”) or later - older versions of macOS use
/bin/bash
- your default shell should already be selected, otherwise use
- if you're using something else, you probably know what to do 😉
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make a README badge for your R Shiny repo | |
# Matt Dray, March 2021 | |
# {badgr} blog post: https://www.rostrum.blog/2020/05/08/readme-badge/ | |
# Shiny badge blog post: https://www.rostrum.blog/2021/03/23/shiny-badge/ | |
# {badgr} is available from GitHub via {remotes} | |
install.packages("remotes") # if not already installed | |
remotes::install_github("matt-dray/badgr") # install {badgr} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Author:: @CatoMinor3 | |
Version:: 3.0 | |
Date:: Sept.rm-italicsber 22nd, 2020 | |
Changes log: | |
- 3.0 - code adapted for the new classes in Roam | |
- 2.1 - code adaptated for future support of colour shades (different opacity), | |
download the additonal CSS here: https://gist.github.com/ciceronianus/5d7b224658b7a9832a6249a13091aa9d | |
Support: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#=============================================================================== | |
# 2019-07-19-- ikashnitsky.github.io | |
# Reproduce Figure 2 from http://doi.org/10.1007/s10708-018-9953-5 | |
# Ilya Kashnitsky, [email protected] | |
#=============================================================================== | |
library(tidyverse) | |
library(hrbrthemes); import_roboto_condensed() | |
# the data as tribble |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Goal | CSS 3 | XPath | |
---|---|---|---|
All Elements | * | //* | |
All P Elements | p | //p | |
All Child Elements | p>* | //p/* | |
Element By ID | #foo | //*[@id=’foo’] | |
Element By Class | .foo | //*[contains(@class,’foo’)] | |
Element With Attribute | *[title] | //*[@title] | |
First Child of All P | p>*:first-child | //p/*[0] | |
All P with an A child | Not possible | //p[a] | |
Next Element | p + * | //p/following-sibling::*[0] |
ls -a
cd ~
open -a TextEdit.app .bash_profile
source ~/.bash_profile
open .
rm -r
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
Use this as a base template. Create your own repository on GitHub and start logging your work daily!
Today's Progress: Fixed CSS, worked on canvas functionality for the app.
Thoughts: I really struggled with CSS, but, overall, I feel like I am slowly getting better at it. Canvas is still new for me, but I managed to figure out some basic functionality.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyWidget extends StatefulWidget { | |
@override | |
_MyWidgetState createState() => new _MyWidgetState(); | |
} | |
class _MyWidgetState extends State<MyWidget> { | |
@override | |
void initState() { | |
// TODO: implement initState |
Akcronym | Meaning |
---|---|
API |
Application Programming Interface |
SDK |
Software Development Kit |
IDE |
Integrated Development Environment |
SQL |
Structured Query Language (SEQUEL - Structured English Query Language) |
CSS |
Cascading Style Sheets |
HTML |
Hypertext Markup Language |
CMS |
Content Management System (Webpage) |
DOM |
Document Object Model |
NewerOlder