Login
Discover
Waves
Decks
Plus
Login
Signup
Topics
New
Trending
Hot
New
New
Trending
Hot
New
Payouts
Muted
Promoted
Global
Top communities
Create decentralized 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
4
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
4
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
onee
Nature Observer
2026-04-03 14:42
Promoted
Genus Chrysocoris
Latin NameObservation DateLocation Genus ChrysocorisApr 3, 2026Sontala, Bangladesh Hello Dear Hive Community and All Hive Members! This is my first post, my hive name is @onee. When I first came here,
$ 1.072
367
4
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
oadissin
Splinterlands
2026-04-03 19:11
Promoted
Climbing Smart, No Bruteforce: My Splinterlands Silver League Plan
Let's find our way back to the league We scored before season reset. It is a serious adventure that can open the doors to Champion league in modern format. Hold on to your seat.
$ 5.048
257
11
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
gibic
HiveDevs
2026-03-29 12:44
Promoted
I Built a Daily Flappy Bird Game on Hive
A daily Flappy Bird-style game that runs in the browser and connects directly to Hive.
$ 1.009
128
8
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
ashokcan143
Actifit
2026-04-04 16:30
Promoted
My Actifit Report Card: April 4 2026
Today I had to take a day off from work as I had a personal errand and then after coming home at night I walked for a bit and had dinner to sleep well. This report was published via Actifit app (Android
$ 0.118
26
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