- Keynote has Boolean operators
- Curves defaults can be set in prefs (Bézier vs. Spline)
- Rather than trying to master the Bézier tool, in order to mask something, make many small straight lines.
- Magic Move can animate lots of things. Including color, reflection, shape, rotation, and many more parameters.
This file contains hidden or 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
set myLines to "Brainstorming is a group or individual creativity technique by which efforts are made to find a conclusion for a specific problem by gathering a list of ideas spontaneously contributed by its member(s). The term was popularized by Alex Faickney Osborn in the 1953 book Applied Imagination. Osborn claimed that brainstorming was more effective than individuals working alone in generating ideas, although more recent research has questioned this conclusion. Today, the term is used as a catch all for all group ideation sessions." | |
set recordedApp to "iOS Simulator" | |
set typingDelay to "0.1" --try 0.05 so something much faster (double, actually) | |
--make sure the recorded app is foreground | |
--otherwise it can result into missing strings | |
activate application recordedApp | |
delay 3 | |
repeat with currentline in myLines |
This file contains hidden or 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
-- Week Projects | |
-- | |
-- Created by Zettt on 2015-12-28 | |
-- zCasting 3000. | |
-- | |
-- This script creates "Week Projects" in OmniFocus. | |
-- | |
-- I use these "Week Projects" to put stuff, that I need to | |
-- do during a specific week, but aren't big enough to be their own project. | |
-- Things like "Call the doctor on Wednesday" or |
This file contains hidden or 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
#!/bin/sh | |
# sh gifenc.sh -i input.mp4 -o output.gif | |
# defaults | |
palette="/tmp/palette.png" #location of temporary palette file | |
fps=20 | |
filters= | |
#usage and parameter assembly |
This file contains hidden or 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
#!/bin/sh | |
function usage { | |
echo "This script creates a folder containing all linked ![images]()" | |
echo "of a Markdown file -- even linked ones from the Internet." | |
echo "" | |
echo "It takes one argument: the file it should process." | |
echo | |
echo "When a file argument is present, it creates a new folder for:" | |
echo "a) the Markdown file" |
I hereby claim:
- I am zettt on github.
- I am zettt (https://keybase.io/zettt) on keybase.
- I have a public key ASAEMOLtmYzMeH7C9fffIxFRfc8f9xURmBnh9c5hkgz7pQo
To claim this, I am signing this object:
If you are annoyed as much as I am by Binance inability to paste clipboard values into the order boxes, you're welcome. (Please do us all a favor and file a bug report too!)
On a Mac you can simply use an AppleScript to type everything that is on the clipboard for you. The script is this:
try
the clipboard as text
on error
set the clipboard to " "
end try
This file contains hidden or 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
# 1. Download the top 100 from CoinMarketCap. | |
# 2. Download all USDT-based pairs from Binance. | |
# 3. Print out a list of the top 100 coins tradeable on Binance. | |
# | |
# The theory is that the top coins are going to perform best | |
# in a bull market. With this information we can build a momentum | |
# strategy based on the top coins only. | |
# Suggestion usually is to check the top 100 coins monthly, | |
# then rebalance the portfolio. |
OlderNewer