Documentation uses RGB. https://tailwindcss.com/docs/background-color
bg-black : #000000
bg-white : #FFFFFF
bg-slate-50 : #F8FAFC
bg-slate-100 : #F1F5F9
bg-slate-200 : #E2E8F0
bg-slate-300 : #CBD5E1
Documentation uses RGB. https://tailwindcss.com/docs/background-color
bg-black : #000000
bg-white : #FFFFFF
bg-slate-50 : #F8FAFC
bg-slate-100 : #F1F5F9
bg-slate-200 : #E2E8F0
bg-slate-300 : #CBD5E1
ruby '2.7.1' | |
gem 'rails', github: 'rails/rails' | |
gem 'tzinfo-data', '>= 1.2016.7' # Don't rely on OSX/Linux timezone data | |
# Action Text | |
gem 'actiontext', github: 'basecamp/actiontext', ref: 'okra' | |
gem 'okra', github: 'basecamp/okra' | |
# Drivers |
COMPACT WIDTH (stacked view) | |
- 320 x 568 pt | |
-> iPhone 5, 5s | |
- 320 x 768 pt | |
-> iPad 9.7" Split Landscape 2/3 right | |
- 320 x 834 pt | |
-> iPad 10.5" Split Landscape 2/3 right | |
- 320 x 1024 pt | |
-> iPad 9.7" Split Portrait right |
I've moved this gist to https://github.com/phynet/iOS-Schemes please check it there ;)
//#import <AWSS3/AWSS3.h> | |
//#import <AWSRuntime/AWSRuntime.h> | |
//import those in your .h file and | |
//add the awss3 and awsruntime framework from the client | |
//download from Amazon | |
AmazonS3Client *s3Client = [[AmazonS3Client alloc] initWithAccessKey:@"Key_Goes_here" withSecretKey:@"Secret_Goes_Here"]; | |
NSString *imageName = [NSString stringWithFormat:@"%@.png", @"cpa"]; |
//Mapping philsopher influence netwroks | |
//via http://blog.ouseful.info/2012/07/03/visualising-related-entries-in-wikipedia-using-gephi/ | |
CONSTRUCT{ | |
?p <http://dbpedia.org/ontology/influenced> ?influenced. | |
} WHERE { | |
?p a | |
<http://dbpedia.org/ontology/Philosopher> . | |
?p <http://dbpedia.org/ontology/influenced> ?influenced. | |
} LIMIT 10000 |
Other people's code is awful, and your own code from months previous counts as someone else's. With this and the festive spirit in mind, I dug up a canvas snow demo I made two years ago to see how bad my code really was.
Turns out the performance landscape has changed quite a bit, but after applying a couple of workarounds, best practices, and memory management, I got the demo running smoother than it ever did.
Ugh, I can't believe I just wrote "performance landscape". Anyway...
#!/bin/bash | |
# works with a file called VERSION in the current directory, | |
# the contents of which should be a semantic version number | |
# such as "1.2.3" | |
# this script will display the current version, automatically | |
# suggest a "minor" version update, and ask for input to use | |
# the suggestion, or a newly entered value. |
package | |
{ | |
public class Singleton | |
{ | |
static public const instance:Singleton = new Singleton(); | |
public function Singleton() | |
{ | |
if( instance ) | |
{ |