Fish, Bash, Zsh, other...
- How is set up
- Cool snippets, scripts
- Plugins
module.exports = { | |
meta: { | |
type: 'problem', | |
docs: { | |
description: 'Disallow removal of specific CSS classes', | |
category: 'Best Practices', | |
}, | |
schema: [], // No options | |
}, | |
create(context) { |
/* | |
1. Use a more-intuitive box-sizing model. | |
*/ | |
*, *::before, *::after { | |
box-sizing: border-box; | |
} | |
/* | |
2. Remove default margin | |
*/ |
I hereby claim:
To claim this, I am signing this object:
### Keybase proof | |
I hereby claim: | |
* I am al341513 on github. | |
* I am imsolar (https://keybase.io/imsolar) on keybase. | |
* I have a public key ASDuqJhCEGYXQNzidA35pPaGx3vX0o_ZCiihrh91uQb5Xwo | |
To claim this, I am signing this object: |
package com.example.marc.finalproject.Model; | |
import android.content.ContentValues; | |
import android.content.Context; | |
import android.database.Cursor; | |
import android.database.sqlite.SQLiteDatabase; | |
import android.database.sqlite.SQLiteOpenHelper; | |
import android.database.sqlite.SQLiteQuery; | |
import java.util.ArrayList; |