View vwap-custom.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
float vwap_mainValue = na | |
float vwap_upperBand_one = na | |
float vwap_lowerBand_one = na | |
float vwap_upperBand_two = na | |
float vwap_lowerBand_two = na | |
float vwap_upperBand_three = na | |
float vwap_lowerBand_three = na | |
// === RESOLUTION | |
var vwap_anchor_resolution = input.string(defval = 'Session', title = 'VWAP & pVWAP Anchor Period', options = ['Session', 'Week', 'Month', 'Quarter', 'Year', 'Decade', 'Century', 'Earnings', 'Dividends', 'Splits'], inline = '1', group = vwap_group) |
View listViewBuilderDuplication.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:miningtrackerapp/domain/entities/prueba.dart'; | |
import 'package:miningtrackerapp/presentation/providers/pruebas/providers_pruebas.dart'; | |
import 'package:miningtrackerapp/presentation/widgets/drawers/side_menu.dart'; | |
import 'package:go_router/go_router.dart'; | |
import 'package:flutter_riverpod/flutter_riverpod.dart'; | |
class TrackerHomeView extends ConsumerStatefulWidget { | |
const TrackerHomeView({super.key}); |
View datatables-example.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function () { | |
// DataTables integration | |
var dataTableSpa = { | |
"processing": "Procesando...", | |
"lengthMenu": "Mostrar _MENU_ registros", | |
"zeroRecords": "No se encontraron resultados", | |
"emptyTable": "Ningún dato disponible en esta tabla", | |
"infoEmpty": "Mostrando registros del 0 al 0 de un total de 0 registros", |
View Running-transformation-NullReferenceException.md
The problem seems to be related to Visual Studio 2022 versions higher than 17.5.5
See the problem at: https://developercommunity.visualstudio.com/t/Cannot-import-anymore-tables-into-edmx/10368835 or https://developercommunity.visualstudio.com/t/Create-or-recreate-a-Model-does-not-work/10318478
Solutions:
- Use Visual Studio 2019 when updating the models, or
- Use Visual Studio 2022 version 17.5.5
- A possible solution I didn't used is suggested here: https://developercommunity.visualstudio.com/t/Create-or-recreate-a-Model-does-not-work/10318478#T-N10371304
The problem:
View videos-docker.md
Curso completo de 1 hora (SPA): https://youtu.be/CV_Uf3Dq-EU
3 videos cortos, con ejemplo, desde desarrollo hasta despliegue (ver con subtítulos autogenerados):
- Parte 1: https://youtu.be/vmnvOITMoIg
- Parte 2: https://youtu.be/k2sskhYEPkI
- Parte 3: https://youtu.be/d7D0h9i-QCw
Playlist con más videos: https://youtube.com/playlist?list=PLlKSF1mm1ductJaCZWTW889z8haHHL9bf
View Product.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Product | |
{ | |
// The attributes have private setters, meaning they can only be modified from within the class itself. | |
public int Id { get; private set; } | |
public string Name { get; private set; } | |
public decimal Price { get; private set; } | |
public DateTime CreatedAt { get; private set; } | |
public DateTime? UpdatedAt { get; private set; } | |
public Product(string name, decimal price) |
View GetNextExpirationDate.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public DateTime? GetNextExpirationDate() | |
{ | |
DateTime year = new DateTime(DateTime.Now.Year, 1, 1); | |
DateTime today = DateTime.Now; | |
IQueryable<ConfiguracionWeb> dates = _unitOfWork.WebConfigurationRepository.GetAll(); | |
DateTime firstDate = DateTime | |
.Parse(dates | |
.First(u => (WebConfigEnumerations)u.enumeracion == WebConfigEnumerations.PrimerVencimiento) |
NewerOlder