Skip to content

Instantly share code, notes, and snippets.

View EduardoSimon's full-sized avatar
🥝

Eduardo Simón Picón EduardoSimon

🥝
  • Flywire
  • Valencia, Spain
View GitHub Profile
@EduardoSimon
EduardoSimon / guide.md
Created January 30, 2025 17:35
Flex your env

💻 Flex your env

Shell

Fish, Bash, Zsh, other...

  • How is set up
  • Cool snippets, scripts
  • Plugins
@EduardoSimon
EduardoSimon / test.js
Created January 27, 2025 14:49
Draft eslint plugin to prevent css classes to be removed from the code
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
*/

Keybase proof

I hereby claim:

  • I am eduardosimon 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:

### 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;