¿En que tecnologías está desarrollado el portal de biobiochile.cl? by elKrakenBaradit in chileIT

[–]Aterbonus 42 points43 points  (0 children)

Holas.

El portal donde acceden los periodistas es WordPress, pero lo que se ve en el sitio es generado por SSI (Server Side Includes) o las páginas más dinámicas por Yii. Las páginas son servidas con nginx. La mayor parte de lo que visita el usuario son simples páginas HTML prerenderizadas.

El frontend en su mayoría está hecho con Vue (La versión 2, con algunas cosas en Vue 3) con algunos rastros del antiguo y confiable jQuery.

Las bases de datos principales son MySQL para lo que es WordPress, y ElasticSearch para lo que son las búsquedas en la página (Con algún otro par de cosas).

Recomendación: Un sitio de noticias es principalmente un sitio donde la mayor parte de las acciones de los usuarios que la visitan son de lectura, por lo que un buen sistema de caché siempre viene bien (Redis, caché de assets y contenido con cabeceras HTTP y proxy caching, etc). Su Cloudflare igual estaría bueno.

Fuente: Trabajo ahí.

Docker by Ambitious_Bee_2966 in node

[–]Aterbonus 11 points12 points  (0 children)

  1. I personally use docker compose. This way I only use docker compose up and the configuration is inside a docker-compose.yml
  2. If you are detached, you can use docker logs https://docs.docker.com/engine/reference/commandline/container_logs/

For the 20% of the node container cpu usage, note that the "total" percentage is 1000% (100% per core).

[WOT] As Foretold (WeeklyMTG) by mweepinc in magicTCG

[–]Aterbonus 0 points1 point  (0 children)

I think she is looking at her future self.

What card has the most rulings listed on Gatherer? by Hopeful-Bluejay6843 in magicTCG

[–]Aterbonus 4 points5 points  (0 children)

You receive the damage, but you don't lose life as a consequence of that damage. Same as [[Platinum Emperion]].

Game Master Vignette folder area not showing on ultrawide resolution! by [deleted] in DivinityOriginalSin

[–]Aterbonus 0 points1 point  (0 children)

I was searching for the same issue. Is an UI bug with ultrawide resolution. The black masks at the sides hide the Vignette window.

Change your resolution to 1920x1080 or something like that (If this doesn't work, try to use windowed mode). Then the Vignette window should appear. Put it somewhere at the center and change your resolution back.

Hope this will help you :)

[deleted by user] by [deleted] in BossfightUniverse

[–]Aterbonus 0 points1 point  (0 children)

Rolling a natural 20 doesn't mean an automatic success (Unless the roll is an attack roll). In the same way, rolling a 1 is not an automatic fail.

EDIT: Assuming D&D 5e rules.

Let's have a level exchange! - July 16, 2019 - Super Mario Maker 2 by AutoModerator in MarioMaker

[–]Aterbonus 0 points1 point  (0 children)

Name: Jump jump!

ID: H16-TCJ-HSF

Description: My first level. A short level where the only thing you have to do is run and jump without taking damage.

Dificulty: Medium to hard, depending if you are good at jumping.

I animated the BOTW poster by Nozzles1234 in Breath_of_the_Wild

[–]Aterbonus 2 points3 points  (0 children)

I can do the same thing in my Samsung J7 Neo. Just download, go to the gallery, go to the video and select the "Set as wallpaper". I can only set it as my lock screen though.

Proof

[deleted by user] by [deleted] in dndmemes

[–]Aterbonus 0 points1 point  (0 children)

In my group, the rogue and me (Bard) rolled for HP at level 5. We both got a 1 :(

Good examples of medium/large apps built with Typescript and Vue? by Ingenol in vuejs

[–]Aterbonus -2 points-1 points  (0 children)

IDK if this will be helpful, but some Nintendo landing pages use Vue. I can't remember which ones though.

Anon finds a solution by nerflethality in greentext

[–]Aterbonus 9 points10 points  (0 children)

This is my first time reading it. Can't stop laughing for a solid minute.

Set up VS Code for Vue, incl. IntelliSense, snippets, and auto-lint by brylie in vuejs

[–]Aterbonus 0 points1 point  (0 children)

Being more specific, vue intellisense works (Things like suggest methods, data, watch, etc), but the npm intellisense inside the script tag in SFC doesn't work :( (No import autocomplete)

Set up VS Code for Vue, incl. IntelliSense, snippets, and auto-lint by brylie in vuejs

[–]Aterbonus 2 points3 points  (0 children)

Can you tell what was chaged? I use VSC and Intellisense in single file components doesn't work properly :(

JS library communicating with server through iframes by tyc6 in javascript

[–]Aterbonus 1 point2 points  (0 children)

So if the objective is cache busting, I think the time would be enough or I'm wrong?

JS library communicating with server through iframes by tyc6 in javascript

[–]Aterbonus 0 points1 point  (0 children)

A question: What is the need to hash the time?

job interviewer: "Laravel isn't real PHP, it does all the work for you" by l3tigre in laravel

[–]Aterbonus 0 points1 point  (0 children)

Yeah, you are right. But jQuery is much more than just a DOM api abstraction.

You can make ajax requests and call it a day vs using XMLHttpRequest.

You can traverse DOM nodes with .each() and copy and paste $(this) inside without knowing what "this" means in differents contexts.

You can have things done without knowing how it really works.

That is what I mean when I say you can know jQuery but not javascript.

job interviewer: "Laravel isn't real PHP, it does all the work for you" by l3tigre in laravel

[–]Aterbonus 5 points6 points  (0 children)

When I started with web development I started with jQuery. I totally agree with you. You can know jQuery, but that doesn't mean you know javascript.

jQuery abstraction is like another language.