yarn add eslint babel-eslint -D
./node_modules/.bin/eslint --init
[ | |
{ | |
"name": "Air Force blue", | |
"value": "#5d8aa8" | |
}, | |
{ | |
"name": "Alice blue", | |
"value": "#f0f8ff" | |
}, | |
{ |
// Get country codes & flag of countries with respect to country codes | |
const fetch = require("node-fetch"); | |
const NEW_LINES = `\n\n`; | |
const EMOJIS = `${NEW_LINES}😀 😃 😄 😁 😆 😅 😂 🤣 ☺️ 😊 😇 🙂 🙃 😉 😌 😍 😘 😗 😙 😚 😋 😜 😝 😛 🤑 🤗 🤓 😎 🤡 🤠 😏 😒 😞 😔 😟 😕 🙁 ☹️ 😣 😖 😫 😩 😤 😠 😡 😶 😐 😑 😯 😦 😧 😮 😲 😵 😳 😱 😨 😰 😢 😥 🤤 😭 😓 😪 😴 🙄 🤔 🤥 😬 🤐 🤢 🤧 😷 🤒 🤕 😈 👿 👹 👺 💩 👻 💀 ☠️ 👽 👾 🤖 🎃 😺 😸 😹 😻 😼${NEW_LINES}`; | |
const FIXER_URI = "https://api.fixer.io/latest"; | |
const REST_COUNTRIES_URI = "https://restcountries.eu/rest/v2/alpha/"; | |
const COUNTRY_URI = "http://country.io/currency.json"; | |
let currencyCodes = []; | |
let currencyOfCountry = []; | |
const flagsWithCurrencies = {}; |
[...document.querySelectorAll('.btn.btn-sm.js-toggler-target')].map(a => a.click()) |
class Form extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
name: "", | |
email: "", | |
}; | |
} | |
_storeInput = (key, value) => { |
Watch the video for which tasks to automate
// Add script in console. | |
// var _cScript = document.createElement('script');_cScript.src='../../../tools/custom.js';document.head.appendChild(_cScript); | |
// ================================================== | |
function sequenceClass() { | |
this.init = function () { | |
var tClass = document.getElementsByClassName('t'); | |
for (var i = 0; i < tClass.length; i++) { | |
tClass[i].style.boxShadow = '0px 0px 10px 2px #000000'; | |
tClass[i].setAttribute('aria-hidden', 'true'); | |
tClass[i].onclick = mouseEvent; |
import { relations, sql } from "drizzle-orm" | |
import { index, integer, sqliteTable, text } from "drizzle-orm/sqlite-core" | |
import { ulid } from "ulidx" | |
export const affiliatesTable = sqliteTable( | |
"affiliate", | |
{ | |
id: text("id") | |
.primaryKey() | |
.$defaultFn(() => ulid()), |
<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>
<general_guidelines>