:g/DS_Store/d
:v/DS_Store/d
Hello there!
I'm Renoir, a self-taught software developer who’s been working in this field since 2002. Back then, it was known as the "Browser Wars," and I consider myself a survivor, a veteran from that era. Our main challenge at the time was ensuring that websites looked the same on every browser. While the basics remain unchanged, it has become much easier today, believe me!
Throughout my career, I have held various roles such as founder, sole proprietorship business owner, self-employed contractor, and consultant. I have had the opportunity to work with notable organizations including the W3C/MIT, Mozilla on MDN for Compatibility Tables, CAE (an aero simulation software manufacturer) for secure air-gapped deployment complexity, Walmart for deployment consistency, Exxon Mobil, and Eri
| /** | |
| * Extract all messages from left panel | |
| * | |
| * We can click on "next" page, and re-run | |
| */ | |
| /** | |
| * .item-firstline > .item-senders > [data-testid="message-column:sender-address"][title], | |
| * .item-firstline > .item-senders > [data-testid="message-column:sender-address"].textContent, | |
| * |
This is the content from the Gist 286211f2, loaded using this loader.
This does. Just run this when you’ve selected the filter criteria you want, then paste this in developer tool. It'll transform the transaction button with "Download CSV".
A date range and you want those transactions as CSV, with transaction number and only amounts, no formatting: so you can use your spreadsheet to manage that data.
Furthermore, RBC’s OMNI Team; What would be even cooler is if when we filter the transactions with criterias. When we click to view an item, like a Cheque image, when we click "Back" on the browser, we don’t lose the search we had. Like it currently does. That would be easily possible if the URL kept the filter criterias. This changes browser history, and allows to use the Back button *for free*. But the FrontEnd code doesn’t do that. And that Gist’s content isn't covering this problem — But I might tackle that one too some day.
This does. Just run this when you’ve selected a date range and you want those transactions as CSV
| import { LitElement, html, TemplateResult } from 'lit' | |
| import { property } from 'lit/decorators/property.js' | |
| import { state } from 'lit/decorators/state.js' | |
| import { assert } from '@esm-bundle/chai' | |
| import { ContextProvider, createContext } from '../context.js' | |
| import { ContextConsumer } from '../lib/controllers/context-consumer.js' |
| import { html } from 'lit' | |
| import { unsafeSVG } from 'lit/directives/unsafe-svg.js' | |
| import { dirname } from 'path' | |
| import { readFile } from 'fs/promises' | |
| import { Plugin } from 'vite' | |
| import { URL } from 'url' // in Browser, the URL in native accessible on window | |
| export const svgLoader = (): Plugin => { | |
| const svgRegex = /\.svg(\?(raw|url|component))?$/ |