
informatics Tag Posts Index
Explore on-chain topics from the Hive blockchain.
- →
24-03-2026 - Computer Graphics and BIM - BIM and Revit [EN]-[IT]
~~~ La versione in italiano inizia subito dopo la versione in inglese ~~~ ENGLISH 24-03-2026 - Computer Graphics and BIM - BIM and Revit [EN]-[IT] With this post,
- →
23-03-2026 - Computer Graphics and BIM - The CAD System and Meshes [EN]-[IT]
~~~ La versione in italiano inizia subito dopo la versione in inglese ~~~ ENGLISH 23-03-2026 - Computer Graphics and BIM - The CAD System and Meshes [EN]-[IT] With
- →
21-02-2026 - Computer Graphics and BIM - Rendering [EN]-[IT]
~~~ La versione in italiano inizia subito dopo la versione in inglese ~~~ ENGLISH 21-02-2026 - Computer Graphics and BIM - Rendering [EN]-[IT] With this post, I
- →
20-02-2026 - Computer Graphics and BIM - BIM Tools [EN]-[IT]
~~~ La versione in italiano inizia subito dopo la versione in inglese ~~~ ENGLISH 20-02-2026 - Computer Graphics and BIM - BIM Tools [EN]-[IT] With this post, I
- →
15-02-2026 - Computer Graphics and BIM - Digital Images [EN]-[IT]
~~~ La versione in italiano inizia subito dopo la versione in inglese ~~~ ENGLISH 15-02-2026 - Computer Graphics and BIM - Digital Images [EN]-[IT] With this post,
- →
07-02-2026-Computer Graphics and BIM - Conceptual Design [EN]-[IT]
~~~ La versione in italiano inizia subito dopo la versione in inglese ~~~ ENGLISH 07-02-2026-Computer Graphics and BIM - Conceptual Design [EN]-[IT] With this post,
- →
06-02-2026-Computer Graphics and BIM - Modeling from DWG [EN]-[IT]
~~~ La versione in italiano inizia subito dopo la versione in inglese ~~~ ENGLISH 06-02-2026-Computer Graphics and BIM - Modeling from DWG [EN]-[IT] With this post,
- →
05-02-2026-Computer Graphics and BIM - Computer Graphics [EN]-[IT]
~~~ La versione in italiano inizia subito dopo la versione in inglese ~~~ ENGLISH 05-02-2026-Computer Graphics and BIM - Computer Graphics [EN]-[IT] With this post,
- →
04-02-2026-Computer Graphics and BIM - Brep Method [EN]-[IT]
~~~ La versione in italiano inizia subito dopo la versione in inglese ~~~ ENGLISH 04-02-2026-Computer Graphics and BIM - Brep Method [EN]-[IT] With this post, I
- →
Strings!
import string letters = string.ascii_lowercase consonant = ''.join([letter for letter in letters if letter in 'aeiou']) text = "many hands make light work."
- →
Football
using System; using System.Collections.Generic; public static class PlayAnalyzer { public static string AnalyzeOnField(int shirtNum) { switch (shirtNum) { case
- →
Improving my Work-Study tooling - Mejorando mi herramiento de Trabajo y Estudio
Hello everyone! Today I want to share with you my experience with a new acquisition, and it is an external hard drive. My laptop is Lenovo brand, and has 128GB,
- →
ISBN
class IsbnVerifier { boolean isValid(String stringToVerify) { int sum =0; stringToVerify = stringToVerify.replaceAll("-", ""); if
- →
Salary
public class SalaryCalculator { public double multiplierPerDaysSkipped(int daysSkipped) { return daysSkipped > 5 ? 1 - 0.15 : 1.0; } public int
- →
Sieve
export function primes(num: number): number[] { const numer: number[] = []; for(let i=2; i<=num; i++){ if(Isprimes(i)){ numer.push(i); } } return numer; } function
- →
Custom Set
private final int a; private final int b; private final int c; private PythagoreanTriplet() { this.a = 0; this.b = 0; this.c = 0; } public PythagoreanTriplet(int
- →
Node
class Node { public final char value; public Node left; public Node right; public Node(char value) { this(value, null, null); } /\*\* For testing. \*/ Node(char
- →
Poetry Club Door Policy
// @ts-check // // ☝🏽 The line above enables type checking for this file. Various IDEs interpret // the @ts-check directive. It will give you helpful autocompletion
- →
Leap
export const isLeap = (year) => { return year % 4 == 0 && (year % 100 !=0 || year % 400 == 0); };
- →
Elon's Toys
using System; class RemoteControlCar { private int meters=0; // default wäre auch 0 private int percentage=100; public RemoteControlCar() { } public RemoteControlCar(int
Leave informatics Tag Posts Index to discover