Birendra Kumar Chaudharybiren.hashnode.dev·Dec 21, 2024🎯To solve slowness seen on the website🚀 | troubleshoot | load average | Log | problem | wp cli | plugins.✔Description: Clients reported experiencing slow performance on the website. Pages were taking longer time to load than usual. #one of the method we optimized the database: cmd - wp db optimize --allow-root Redis cache: redis cache connected from...slowness
Simón Lópezblog.loart.dev·Dec 18, 2024How to Set Up EOS Integration Kit in Unreal Engine 5When implementing Epic Online Services (EOS) in your Unreal Engine game, you might want to consider using a third party plugin like EIK (EOS Integration Kit). Because this third party integrations make the process of implementing EOS SDK much easier,...10 likes·30 readsGame Dev TutorialsEIK
Telosystelosys.hashnode.dev·Dec 12, 2024Telosys plugin for JetBrains IDEA new Telosys plugin is available! This time it’s a plugin for JetBrains IDE (IntelliJ, PyCharm, GoLand, PhpStorm, WebStorm, etc). It brings syntax highlighting for entities in a model (“.entity” files) The plugin is available on JetBrains marketpla...95 readscode
Maitri Pateltechnologicalblog.hashnode.dev·Dec 10, 2024Tailwind CSS Plugins for Advanced Styling: Boost Your Frontend GameIntroduction In the fast-evolving world of web development, Tailwind CSS has become a go-to framework for building responsive, customizable user interfaces. However, leveraging advanced styling techniques is key to taking your front-end design to the...tailwind css plugins
Simón Lópezblog.loart.dev·Dec 1, 2024Boost Your Unreal Engine Game: Best EOS Plugin OptionsAs an Unreal Game Dev you might have asked yourself how to do a multiplayer game, keep track of your players, have a store or even publish your game on Epic Games Store. Well, the answer to this is EOS (Epic Online Services). These tools are designed...13 likes·219 readsUnreal Engine Plugins
Lucy ZhangforNocoBase's blognocobase.hashnode.dev·Nov 28, 2024NocoBase Weekly Updates: Optimize REST API pluginOriginally published at NocoBase Weekly Updates: Optimize REST API plugin - NocoBase. Summarize the weekly product update logs, and the latest releases can be checked on our blog. NocoBase is currently updated with three branches: main , next and dev...No Code
Munilakshmi G J100daysdevops.hashnode.dev·Nov 23, 2024Day 29 of 100 Days : Automating Secrets Management with Jenkins Credentials PluginWelcome back to Day 29 of your DevOps journey! Today’s focus is on secrets management, a vital practice for securely handling sensitive data like passwords, API tokens, and SSH keys. With Jenkins' Credentials Plugin, you can manage secrets efficientl...plugins
Munilakshmi G J100daysdevops.hashnode.dev·Nov 19, 2024Day 24 of 100 Days : Exploring Jenkins Pipelines, Plugins, and IntegrationsHello, Jenkins explorer! 🌟 After setting up your first Jenkins job, it's time to expand your understanding of how Jenkins works conceptually. Today’s focus is on Pipelines, Plugins, and Integrations—the core elements that make Jenkins the powerhouse...Jenkins
Jyotiprakash Mishrablog.jyotiprakash.org·Nov 18, 2024Dynamic Plugin Loading in Java: From Configuration to Annotation-Based Dependency InjectionIn modern software development, dynamically loading and managing plugins at runtime allows for high flexibility, extensibility, and modularity in applications. This blog will walk through creating a dynamic plugin architecture using Dependency Inject...27 readsJava
Dawitblog.minch.dev·Nov 11, 2024How to Register Custom Vue Directives in Nuxt 3TL;DR Create a plugin file in your plugins/ directory, which is where we'll have access to our Vue app instance. We can define and register our custom directive there: // ~/plugins/my-directives.ts export default defineNuxtPlugin((nuxtApp) => { n...Nuxt