Skip to content

Instantly share code, notes, and snippets.

View carloswm85's full-sized avatar
🎯
Compiling...

Carlos W. Mercado carloswm85

🎯
Compiling...
View GitHub Profile
import { Injectable } from '@angular/core';
import { Subject } from 'rxjs';
import {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
KLINE_CRYPTOS,
KLINE_CRYPTOS_BTC,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
KLINE_CRYPTOS_QUICK,
} from '../../../../../data/assets.data';
import { LoggingService } from '../logging/logging.service';
@carloswm85
carloswm85 / README.md
Created August 24, 2024 01:18
VSCode Debugger Configuration - Single project - Angular 17 SPA, with Node 20, nodemon, Express 4.19; with Edge Browser and Microsoft Edge Tools

Comments

  • Project date: 8/23/24
  • Commets generated using ChatGPT 4
  • Please, provide any suggestions you may find suitable.
  • Not all tasks from tasks.json are used.

Relevant Folder Structure

image

// Get dependency: `ng add @angular/material`
// Save to `src/app/material/material.module.ts`
// June 2024
import { NgModule } from '@angular/core';
/* ================================ MATERIAL ================================ */
// Importing Angular Material modules individually
// Each import provides a specific UI component from Angular Material
#!/bin/bash
# I wrote a shell script that takes a project name and then configures an Angular project with a prefix and all my preferences,
# which include eslint, prettier, and the Airbnb styles guide for Angular using pnpm (instead of npm).
#
# Download it to the parent directory where you want to create a new project ( I have them all in a directory called wdd430)
# and then make it executable with this command.
#
# chmod +x create-angular-project.sh
#
/** 1 */
// Inside build method, in form widget
void toggleDropdownEnabled(bool val) {
ref
.read(providerTrackerDrowndownIndustrialDegree.notifier)
.update((state) => val);
}
/** 2 */
// Inside form

Linting (ESLint) and Formatting (Prettier) in Angular

Term Tool Explanation Use Docs
🔦 Linter ESLint - Runs a set of discrete rules
- Slower
- Explicit logic for edge cases
Code quality (bug catching) 📑
🧹 Formatter Prettier - Reformats in one pass
- Faster
- Can't find and fix bugs
Code Formatting 📑
  • eslintconfigprettier -> Prettier -> Lint

Linters have two categories of rules:

@carloswm85
carloswm85 / indexable_skip_list.dart
Created April 29, 2024 15:14 — forked from simc/indexable_skip_list.dart
Fast indexable skip list for Dart. All operations (except clear) are O(log n)
import 'dart:collection';
import 'dart:math';
class IndexableSkipList<K, V> {
static const _maxHeight = 12;
final _Node<K, V> _head = _Node(
null,
null,
List.filled(_maxHeight, null),
// Add the values you want
rsi = ta.rsi(close,14)
// Define the function
// With one call, you'll get back 9 values
fGetImported(_timeframe) =>
request.security(symbol = syminfo.tickerid, timeframe = _timeframe, expression = [open, high, low, close, rsi, open[1], high[1], low[1], close[1]], gaps = barmerge.gaps_off)
// Implement the function for different timeframes
// 3 timeframes