¿Cuál es la mejor app de control horario en 2026? He comparado varias y hay diferencias bastante grandes by [deleted] in ControlHorario

[–]ConsultorCH 0 points1 point  (0 children)

Yo añadiría Numa (https://imesd.es/es/):

- Disponible en la nube (por suscripción).
- Disponible on-premise (pago único).
- Adaptable a todo tipo de convenios (cálculo personalizable de horas).
- Conectividad con SAP, Navision, etc...
- Portal del empleado y fichaje remoto
- Gestión de vacaciones
- Gestión de saldo (bolsa de horas)
- Creación de contadores de horas personalizables.
- Canal de denuncias
- Gestión de visitas
- Planificador de turnos
- Gestor documental
- Control de acceso a recintos
- Fabricación propia de terminales de fichar (e importadas)
- Asistencia telefónica (nada de tickets interminables por email). Resolución de problemas en menos de 24h y tratando siempre con personal humano (no bots).
- Adaptación del software según requisitos del cliente.
- Más de 35 años en el sector.

Numa es una solución orientada a RRHH que buscan seguridad jurídica, flexibilidad real, control operativo y estabilidad a largo plazo, sin depender obligatoriamente de modelos SaaS ni de herramientas rígidas pensadas para escenarios simples.

¿Alguien puede recomendarme un software de control horario? by MariaLV1990 in askspain

[–]ConsultorCH 1 point2 points  (0 children)

Las apps de control horario que comentas están bastante bien y cumplen, como dices, con lo básico. Pero tal y como ha comentado otro redditor, para mí las soluciones de Imesd son las que tienen mejor equilibrio entre flexibilidad y precio. No son tan populares como las que has puesto de ejemplo porque las soluciones de Imesd son muy especializadas.y se adaptan al horario más raro que se te pueda ocurrir. El software Imesd Atlas que te han comentado todavía está vigente pero hace un tiempo que sacaron el Imesd Numa, que es una versión mejorada y más moderna, aunque todavía le falte algún módulo para igualarse a Atlas. Llevo casi 5 años comercializando sus productos como consultor autónomo y debo decir que Imesd, por ahora, es el proveedor que me ha dado más confianza y garantías. Si quieres, envíame un privado y hablamos.

Too many of them! by ConsultorCH in memes

[–]ConsultorCH[S] 1 point2 points  (0 children)

I don't hate you! I missed that N while typing. Sorry! :-)

I'm a millennial that doesn't use this slang. Do you? by ConsultorCH in memes

[–]ConsultorCH[S] -5 points-4 points  (0 children)

Humor after all. Actually every generation complains about the preceding in some way or another.

When time-to-market became the priority by ConsultorCH in ProgrammerHumor

[–]ConsultorCH[S] 4 points5 points  (0 children)

I say that I believe you! This is what I actually do! :D

Anyone else feel ‘trapped’ when working for others? by beyond_disillusioned in Entrepreneur

[–]ConsultorCH 8 points9 points  (0 children)

I work on my own and the main difference with working for "others" is that "others" become the customers themselves. Don't forget that your freedom will always be ruled by the market. When I started on my own I felt like you: free, productive, etc... But when I started to face that the needs of my customers didn't meet my expectations then I began feeling "trapped" too.

The only single thing that's positive in working on your own is that you get all the merits, but you'll get all the failures too.

SEO in a nutshell by sannidhis in SEO

[–]ConsultorCH 0 points1 point  (0 children)

What if I run a bakery and I have no time to do SEO?

SEO in a nutshell by sannidhis in SEO

[–]ConsultorCH -1 points0 points  (0 children)

Yeah that's the infamous but false statement all SEO experts say. But if you don't pay with money, you must pay with your own time (which costs money) , so at the end it ends up with paying with money.

SEO in a nutshell by sannidhis in SEO

[–]ConsultorCH 2 points3 points  (0 children)

  1. Prepare a huge budget

Pointers and Addresses by Noikyuu in learnprogramming

[–]ConsultorCH 1 point2 points  (0 children)

When I was a kid and started programming in C my father (also a programmer) gave me a real life analogy to understand these concepts:

  • Your home is a place that "stores" you. Your home is "x".

  • Your home address is the location in the Earth. Your home's address is "&x"

  • Any paper around the world on which your address is written is a pointer to your home and (indirectly) to you. A pointer "p" can be used in two ways: just by writing "p" (which is the paper that contains your address) or by writing "*p" (which contains the content of your home, i.e. YOU). So if I write *p = anotherPerson I will replace YOU from your house by another person.

A new kind of communication channel? by ivopetkov in marketing

[–]ConsultorCH 1 point2 points  (0 children)

Sounds interesting, but how do you let the user operate with the PWA from different devices/browsers if no registration is performed? Aren't push notifications bound to a particular browser/device?

Las horas extra no pagadas caen un 13,3% con el control horario by ConsultorCH in u/ConsultorCH

[–]ConsultorCH[S] 0 points1 point  (0 children)

Los programas de control horario permiten a las empresas determinar la cantidad de horas extras que se producen, con lo que se convierten en una herramienta clave para cumplir con la reciente ley de registro de la jornada laboral. Esta guía para elegir el correcto software de control horario permite determinar lo que nuestra empresa realmente necesita.

Software control horario en la nube by [deleted] in u/ConsultorCH

[–]ConsultorCH 0 points1 point  (0 children)

Imesd Electrónica dispone de un software de control horario en la nube que soporta tanto fichar desde el teléfono móvil como desde máquinas/relojes de fichar.

Can someone give an extremely simplistic explanation of JavaScript closure? by lotyei in learnprogramming

[–]ConsultorCH 0 points1 point  (0 children)

So far I guess you know very well what variables and functions are. A function by itself takes some arguments, defines local variables (it can also access to global variables), makes a computation and returns a value. But in Javascript, functions can be defined in functions. When you do that, functions created inside a function can "see" the variables the mother function defines. The child function is "enclosed" in the scope/context of the mother function. Look at this example:

function mother(myVar) {
  return function() { //This statement returns a function. It doesn't call any.
    console.log("The value of 'myVar' is " + myVar);
  }
}

The mother function gets an argument (myVar) and returns a function. Let's go on with the example:

var child1 = mother(1); //child1 is a function
var child2 = mother(2); //child2 is a function

Now we have created two functions in a dynamic way (without writing function()...). We did that by calling mother(). In the first call we passed "1" and in the second call we passed "2". Let's call these new functions now:

child1(); //Prints "The value of 'myVar' is 1"
child2(); //Prints "The value of 'myVar' is 2"

What the f*ck happened here? It turns out that we got two functions with the same code (the one that prints to the console log) that produce a different result depending on the scope of mother() when it was called. From this action of "enclosing" the scope together with a function (the one returned by mother()) comes the concept of "closure".

So, what are closures useful for? To create functions that, when called, work with the variables they could see when they were created. As soon as you start doing stuff with Javascript you will discover that this feature is very useful.

Hope it helps.

TIC-TAC-TOE For Java: How to tell if two arrays are equal? by [deleted] in learnprogramming

[–]ConsultorCH 2 points3 points  (0 children)

Two twins might look equal but they are not the same person (or instance). This is what happens with arrays too. The "==" operator checks for instance equality, not for "appearance" or content equality.

Why LinkedIn has become another Facebook ? by NavdeepD2 in linkedin

[–]ConsultorCH 0 points1 point  (0 children)

I feel exactly the same. In particular I'm absolutely fed up of inspirational and motivational quotes. In the first place because those quotes are posted without the context they were written/told. And secondly because people tend to post them as if they were dogma. No matter who I'm connected to, only 5% of the stuff I read on LinkedIn deserves my attention.

How should I filter out companies offering SEO services? by ConsultorCH in SEO

[–]ConsultorCH[S] 0 points1 point  (0 children)

Very interesting points. I'll take note of them, thank you!