Contatti utili da chiamare se si se hai problemi con:
TOPI E VESPE
Scrivi a: [email protected]
ZANZARE
Scrivi a: [email protected] e/o [email protected]
RIFIUTI – RACCOLTA DIFFERENZIATA
Scrivi a: [email protected]
| from __future__ import annotations | |
| import math | |
| import random | |
| import subprocess | |
| import wave | |
| from dataclasses import dataclass | |
| from pathlib import Path | |
| import imageio_ffmpeg |
| void Main() | |
| { | |
| foreach (var txSet in Enum.GetValues(typeof(TransactionSet))) | |
| { | |
| Console.WriteLine("\n\n\n"); | |
| "".PadRight(120, '=').Dump($"Performing test on {txSet}"); | |
| PerformTest((TransactionSet)txSet); | |
| } | |
| } |
Contatti utili da chiamare se si se hai problemi con:
TOPI E VESPE
Scrivi a: [email protected]
ZANZARE
Scrivi a: [email protected] e/o [email protected]
RIFIUTI – RACCOLTA DIFFERENZIATA
Scrivi a: [email protected]
| public static class ObjectExtensions | |
| { | |
| public static string ToHex(this object val, int size) | |
| { | |
| return Convert.ToInt64(val).ToString("X2").PadLeft(size * 2, '0'); ; | |
| } | |
| public static string ToBitString(this object val, int size) | |
| { | |
| return Convert.ToString((Convert.ToInt64(val)), 2).PadLeft(size * 8, '0'); |
| import { Component, OnInit, Input, AfterViewInit, ViewChild, ViewContainerRef, TemplateRef } from '@angular/core'; | |
| @Component({ | |
| selector: 'chip', | |
| template: ` | |
| <ng-template #fixTemplate> | |
| <!--ugly fix for chips, add an hidden mat-chip-list to be able to add mat-chip without including them in the list--> | |
| <mat-chip-list style="display:none" id="chip-fix" disabled></mat-chip-list> | |
| </ng-template> | |
| <ng-container #fixContainer></ng-container> |