- Lacking support
- Inflexible
- Cannot ship to unverified addresses
- Requires use of slow interface and poor batching functionality
- No international address validation
| -- based on http://stackoverflow.com/questions/21767780/how-to-find-size-of-database-schema-table-in-redshift | |
| SELECT name AS table_name, ROUND((COUNT(*) / 1024.0),2) as "Size in Gigabytes" | |
| FROM stv_blocklist | |
| INNER JOIN | |
| (SELECT DISTINCT id, name FROM stv_tbl_perm) names | |
| ON names.id = stv_blocklist.tbl | |
| GROUP BY name | |
| ORDER BY "Size in Gigabytes" DESC |
I hereby claim:
To claim this, I am signing this object:
| export PATH=$PATH:$HOME/bin:/usr/local/bin/npm | |
| alias gcb='git checkout -b' | |
| alias ..="cd .." | |
| alias ...="cd ../.." | |
| alias ....="cd ../../.." | |
| alias .....="cd ../../../.." |
| [ | |
| { | |
| "class": "sidebar_container", | |
| "layer0.tint": [88,110,117], | |
| "layer0.opacity": 1.0, | |
| "layer0.draw_center": false, | |
| "layer0.inner_margin": [0, 0, 1, 0], | |
| "content_margin": [0, 0, 1, 0] | |
| }, |
| #Model | |
| @user.should have(1).error_on(:username) # Checks whether there is an error in username | |
| @user.errors[:username].should include("can't be blank") # check for the error message | |
| #Rendering | |
| response.should render_template(:index) | |
| #Redirecting | |
| response.should redirect_to(movies_path) |