Login
Discover
Waves
Decks
Plus
Login
Signup
Topics
New
Trending
Hot
New
New
Trending
Hot
New
Payouts
Muted
Promoted
Global
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
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
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
$ 1.482
80
9
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
$ 1.557
68
8
caydenshan
OnChainArt
2026-05-20 10:44
Promoted
Art Journal: Original Coffee Painting βπ¨
Hello, Hiver friends and fellow art enthusiasts. How are you there? Let me share the new coffee painting I created today. In today's post, I painted a tranquil landscape featuring a stunning sunset, and
$ 1.301
51
1
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
$ 1.648
130
13
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
$ 1.813
78
7
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
$ 1.450
60
4
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
$ 1.779
106
5
kareembarakat
Photography Lovers
2026-05-21 12:13
Promoted
Silence Between the Hills and the Lake
Sometimes a view says what words canβt. A mountain half-covered in clouds, a calm lake stretching below, and green fields rolling as far as the eye can see. In moments like this, life feels simpler than
$ 0.024
2
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
$ 1.490
74
6
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
$ 0.047
6
2
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
$ 0.044
6
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
$ 13.540
128
3
auraisabel
Aliento
2026-05-20 01:33
Promoted
Hola HIVE / Me presento π¦π Hello HIVE / Let me introduce myself
De mi Para HIVE Mi nombre es @auraisabel π¦π Me presento en HIVE luego de estarlo posponiendo desde hace unos meses y ya ha llegado el momento de iniciar mi aventura en esta plataforma a la cual he llegado
$ 4.794
407
28
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
$ 0.075
8
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
$ 0.071
8
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 {
$ 0.059
8
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
$ 0.114
12
cliffblank
tarot
2026-05-17 21:47
Promoted
General Weekly Advice β 9-Card Spread, Rider-Waite Β· Week of May 18β24
Reading Framework LeftCentreRight Top Row β Mind & DirectionPage of PentaclesThe EmperorThe Magician Middle Row β Heart & RelationshipThree of CupsTwo of CupsAce of Swords Bottom Row β Soul &
$ 0.328
35
2
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
$ 0.052
6
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
$ 0.055
7
1
drago18121996
ita
2024-04-05 17:03
Leap
export const isLeap = (year) => { return year % 4 == 0 && (year % 100 !=0 || year % 400 == 0); };
$ 0.063
6
3
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
$ 0.083
9