| Nº |
User |
Benchmark |
CPU |
Threads |
CPU RAM(GB) |
Version |
OS |
|
{{valor.user}} |
{{valor.benchMark}} |
{{valor.cpu}} |
{{valor.threads}} |
{{valor.memoryGB}} |
{{valor.maxwellVersion}} |
{{valor.os}} |
https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js
https://cdn.jsdelivr.net/npm/vue-resource@1.3.5
var app = new Vue({
el: '#app',
data: {
valores: [],
},
created() {
this.$http.get('https://maxwell-cloud-nextlimit.appspot.com/api/benchmarks').then(function (respuesta) {
this.valores = respuesta.body;
})
},
computed: {
valoresCPU: function () {
let i = 0;
return this.valores.filter(function (n) {
return n.benchId === 1 && i++ < 1000;
})
}
}
}
)
https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js
https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js
| Nº |
User |
Benchmark |
GPU |
CPU RAM(GB) |
Version |
OS |
|
{{valor.user}} |
{{valor.benchMark}} |
{{recuperarDevices(valor.devices)}} |
{{valor.memoryGB}} |
{{valor.maxwellVersion}} |
{{valor.os}} |
https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js
https://cdn.jsdelivr.net/npm/vue-resource@1.3.5
var app = new Vue({
el: '#app2',
data: {
valores: []
},
methods: {
recuperarDevices: function (devices) {
finalDevices = "";
for (let i = 0; i < devices.length; i++) {
if (i === devices.length - 1) {
finalDevices += devices[i].name;
} else {
finalDevices += devices[i].name + " - ";
}
}
return finalDevices;
}
},
created() {
this.$http.get('
https://maxwell-cloud-nextlimit.appspot.com/api/benchmarks').then(function (respuesta) {
this.valores = respuesta.body;
})
}
})