Login
Discover
Waves
Communities
Login
Signup
Topics
#informatics
Global
Trending
Hot
New
Top
#informatics
New
Top communities
Create your community
latest #informatics created topics on internet
stefano.massari
Olio di Balena
2026-03-24 04:18
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, I would like to provide a brief explanation
$ 0.680
89
7
1
stefano.massari
Olio di Balena
2026-03-23 02:00
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 this post, I would like to provide a
$ 0.724
88
7
1
stefano.massari
Olio di Balena
2026-02-21 05:27
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 would like to provide a brief explanation
stefano.massari
Olio di Balena
2026-02-20 02:48
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 would like to provide a brief explanation
senses18
Hive Learners
2026-06-18 06:40
Promoted
THE BIGGEST INVESTMENT MISTAKE OF MY LIFE AND HOW I REBUILT AFTER LOSING MY SAVINGS
A SINGLE DECISION WIPED OUT YEARS OF HARD WORK AND SAVINGS …. !! Have you ever watched your life savings disappear while feeling completely helpless or powerless to stop it ? Many years ago, I thought
stefano.massari
Olio di Balena
2026-02-15 03:36
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, I would like to provide a brief explanation
stefano.massari
Olio di Balena
2026-02-07 02:42
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, I would like to provide a brief explanation
stefano.massari
Olio di Balena
2026-02-06 05:20
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, I would like to provide a brief explanation
stefano.massari
Olio di Balena
2026-02-05 03:31
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, I would like to provide a brief explanation
skiptvads
Movies & TV Shows
2026-06-25 04:03
Promoted
Shelby Oaks (2025) - Quality Production Meet Lazy Script - REVIEW
Source I got to start by saying that Shely Oak is not as bad as the internet says, I had this one on my bucketlist mainly because of that, low rating reviews, I would suggest bad PR, probably too much
stefano.massari
Olio di Balena
2026-02-04 04:33
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 would like to provide a brief explanation
drago18121996
ita
2024-10-09 15:06
Strings!
import string letters = string.ascii_lowercase consonant = ''.join([letter for letter in letters if letter in 'aeiou']) text = "many hands make light work." find = ''.join([letter for letter
drago18121996
ita
2024-09-30 12:44
Football
using System; using System.Collections.Generic; public static class PlayAnalyzer { public static string AnalyzeOnField(int shirtNum) { switch (shirtNum) { case 1: return "goalie"; break; case
viviana.fitness
Geek Zone
2024-07-03 18:01
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, the laptop has helped me a lot to study
asterkame
CCH
2026-06-28 16:01
Promoted
Ixora Red Plant
Hello Everyone! I went out this afternoon. There were flowering plants where I went and the flowers were red. They were small and clustered together. That plant also had fruit shapes and flower buds. There
drago18121996
ita
2024-05-14 17:58
ISBN
class IsbnVerifier { boolean isValid(String stringToVerify) { int sum =0; stringToVerify = stringToVerify.replaceAll("-", ""); if (stringToVerify.length() != 10) return false; for(int
drago18121996
info
2024-05-12 17:49
Salary
public class SalaryCalculator { public double multiplierPerDaysSkipped(int daysSkipped) { return daysSkipped > 5 ? 1 - 0.15 : 1.0; } public int multiplierPerProductsSold(int productsSold) { return
drago18121996
ita
2024-05-06 11:58
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 Isprimes(num: number):boolean {
drago18121996
ita
2024-04-28 15:35
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 a, int b, int c) { this.a = a; this.b
tonyz
Black And White
2026-06-29 20:29
Promoted
Aci Trezza, Sicily. Monomad Challenge.
Black Lava Sand and Rocks.
drago18121996
ita
2024-04-26 09:25
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 value, Node left, Node right) { this.value
drago18121996
ita
2024-04-23 14:42
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 on the web // and supported IDEs when
drago18121996
ita
2024-04-05 17:03
Leap
export const isLeap = (year) => { return year % 4 == 0 && (year % 100 !=0 || year % 400 == 0); };
drago18121996
ita
2024-04-01 12:41
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 meters, int percentage) { this.meters