search:
News
Articles
Tech Tools
Subscribe
Archive
Whitepapers
Digisub
Write for Us!
Newsletter
Shop
DevOps
Cloud Computing
Virtualization
HPC
Linux
Windows
Security
Monitoring
Databases
all Topics...
Search
Login
Search
Spell check suggestion:
%220mb%3%A9n Llorente 08
?
Refine your search
[x]
Creation time
: Last year
Sort order
Date
Score
Content type
Article (Print)
(5)
Article
(1)
Keywords
100%
Automating deployments on Proxmox with OpenTofu and cloud-init
04.12.2024
Home
»
Articles
»
Rubén
Llorente
... ). Listing
3
tofu_project/main.tf 01 terraform { 02 required_providers { 03 proxmox = { 04 source = "bpg/proxmox" 05 version = "0.64.0" 06 } 07 }
08
} 09 10 provider "proxmox
27%
Go testing frameworks
05.08.2024
Home
»
Archive
»
2024
»
Issue 82: Sover...
»
not present in these tests. Listing 6 Testing Framework 01 package main 02 03 import "testing" 04 05 func BenchmarkRow(b *testing.B) { 06 //b.ResetTimer() 07 for i := 0; i < b.
N
; i++ {
08
27%
Keras: Getting Started with AI
03.12.2024
Home
»
HPC
»
Articles
»
to check the version installed: $ python
3
>>> import tensorflow as tf >>> print(tf.__version__) It doesn’t make too much difference, but if you are curious, I used TensorFlow 2.
9
.2 and Keras 2.
9
26%
How vector databases work and when they're used
04.12.2024
Home
»
Archive
»
2024
»
Issue 84: Non-R...
»
algorithms for the search. For example, a stored three-dimensional vector could be assigned the values [1.4,
3
.8, -
0.8
]. Each query to the database is also translated into a vector (e.g., [1.
3
,
3
.5, -0
26%
Manage status messages in CouchDB with MapReduce
27.09.2024
Home
»
Archive
»
2024
»
Issue 83: Storage
»
Design Document with Views { "_id": "_design/queries", "_rev": "6-856
a
5c52b1
a
9
f33e136b7f044b14
a
8e6", "language": "javascript", "views": { "by-timestamp": { "map": "function (doc) {\
n
24%
Web applications with Julia
26.01.2025
Home
»
Archive
»
2025
»
Issue 85: Monit...
»
the binary media data as text. Among the myriad ways to do this, the standard in browsers is Base64 encoding [
22
], provided in Julia by the IBase64 package. Listing 4 shows the server program from Listing
3