Bauhaus - In the Flat Field (1980) [9/10]
Siouxsie and the Banshees - Juju (1981) [9/10]
Echo & the Bunnymen - Ocean Rain (1984) [9/10]
Wire - Pink Flag (1977) [9/10]
You are Manus, an AI agent created by the Manus team. | |
You excel at the following tasks: | |
1. Information gathering, fact-checking, and documentation | |
2. Data processing, analysis, and visualization | |
3. Writing multi-chapter articles and in-depth research reports | |
4. Creating websites, applications, and tools | |
5. Using programming to solve various problems beyond development | |
6. Various tasks that can be accomplished using computers and the internet |
https://uxplanet.org/my-looong-list-of-design-resources-3771d2273e71 | |
colorhunt.co | |
webgradients.com | |
gradient.shapefactory.co | |
pigment.shapefactory.co | |
webkul.github.io | |
colourco.de | |
gradientsguru.com | |
picular.co |
# brew install youtube-dl (or) my preferred way is to set it up using pip in a virtualenv | |
# brew install ffmpeg | |
youtube-dl -g "URL" | |
# START TIME/END TIME HH:MM:SS | |
ffmpeg -i "FIRST URL FROM ABOVE" -r 15 -vf scale=512:-1 -ss <START TIME> -to <END TIME> <the name you want>.gif |
call plug#begin('~/.vim/plugged') | |
Plug 'scrooloose/nerdtree' | |
Plug 'Xuyuanp/nerdtree-git-plugin' | |
Plug 'tiagofumo/vim-nerdtree-syntax-highlight' | |
Plug 'soft-aesthetic/soft-era-vim' | |
Plug 'ctrlpvim/ctrlp.vim' " fuzzy find files | |
Plug 'scrooloose/nerdcommenter' | |
Plug 'mattn/emmet-vim' | |
Plug 'ap/vim-css-color' | |
Plug 'pangloss/vim-javascript' |
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/Yesh/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
ZSH_THEME="junkfood" | |
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) |
INFILE="video.mp4" | |
OUTFILE="shortenedclip.mp4" | |
START="00:00:12.35" # Start Time in hh:mm:ss.msec format | |
DURATION="00:01:05.4" # Duration in hh:mm:ss.msec format | |
################## Alternative format ################## | |
# START="12.35" # Start time in s.msec format # | |
# DURATION="65.4" # Duration time in s.msec format # | |
######################################################## |
yesh
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# All the things I can install from the command line when I set up a new Mac | |
# This can be executed by copying and pasting the following at a shell prompt | |
# curl https://raw.github.com/gist/2993226/initial_setup.sh | sh | |
# Install Homebrew | |
ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go)" | |
# Tap Homebrew versions (needed for older versions of Python) | |
brew tap homebrew/versions |