Skip to content

www.Dev4Devs.com

  • Linkedin
  • GitHub
  • Twitter

Solutions for developers

  • Home
  • Tags
    • ci
    • command line
    • devtools
    • docker
    • git
    • [Intellij IDEA]
    • macosx
    • operator-sdk
    • operator-framework
    • opensource
    • operators
    • regex
    • ssh
    • travis
    • utils
    • woman
    • kubernetes
  • Search
  • Categories
    • Algorithms
    • ansible
    • Books
    • CommandLine
    • DevOps
    • docker
    • English
    • Functional Programming
    • git
    • golang
    • Hibernate
    • Java
    • Javascript
    • NodeJS
    • MongoDB
    • kubernetes
    • operators
    • OpenShift
    • Tips
  • About

Tag: javascript

[JS] – What is the difference between == and === ?

Understanding by examples 0 == false Result : True. 0 is automatically converted to boolean. 0 === false Result :  False. Don’t … More

javascript, js

[NodeJS] – Production best practices: performance and reliability

This article is really nice for you that are working with NodeJS and ExpressJS. You should read to improve your application … More

javascript, node.js, performace

[NodeJS] – How to automating front-end tasks with Grunt ?

What is Grunt ?  The Grunt is a task automation Node.js module . Official WebSite :http://gruntjs.com/ How to install in your … More

grunt, javascript, node.js

How to change the style of a log in the browser console ?

For you change the style of a log in the browser console you can use : console.log(‘%c <string>’, ‘<style>’); It … More

javascript, js

Meteor Js: The shortest path between points project with Neo4J + Meteor JS

About Solution This is a solution for finding the shortest path between points using a graph database (Neo4J) with Meteor … More

javascript, js, meteor, neo4j

Javascript: How to wait N seconds to do something ?

You can use : setTimeout Full Example: function run() { setTimeout(afterSeconds, 10000); } function afterSeconds() { //{…DO SOMWTHING} }

javascript

JavaScript + Meteor JS : How to open a link in new window ?

Use : var win = window.open(url, ‘_blank’); win.focus(); Example in a Meteor Js application: clip.file <template name=”Clip”> <div class=”card-container”> {…} … More

javascript, meteor

JavaScript : Iterating arrays with forEach

array.forEach(function(entry) { alert(entry); } Example : if ( event.attractions ){ var att = []; event.attractions.forEach(function(entry) { if (entry.artist){ att.push(entry.artist); } … More

javascript

JavaScript : How to remove some item from an array ?

One way to remove some item is take his position on array and remove by this. Example: var users = … More

javascript

Primefaces : How to set the max value for a inputTextarea component ?

You can use this function in Javascript : onkeyup=”if(this.value.length>(max value)){this.value=this.value.substring(0,5);alert(‘(Warning Text)’)}” Example : <h:inputTextarea value=”#{myController.bigtext}” onkeyup=”if(this.value.length>500){this.value=this.value.substring(0,5);alert(‘The maximum value is 500 … More

javascript, primafeces

Posts navigation

Older posts
Newer posts

Search

Follow www.Dev4Devs.com on WordPress.com

Category Cloud

Algorithms AngularJS ansible Architecture Books CommandLine container convection DevOps docker English Functional Programming git golang helm hibernate java javascript JavaServer Faces kubebuilder kubernetes layout maven meteor minikube mongoDB neo4j NodeJS OpenShift operators postgreSQL primefaces python regex shell SO think tips Uncategorized [Intellij IDEA]

Tags Cloud

5.0 2019 2020 aggregate ai Algorithms amazon android AngularJS annotations ansible anyMatch Architecture AtomicBoolean autocomplete automate aws beans best practices Books bootstrap bundle cache callable cdi centos ci Clojure cloud code collections command line CommandLine configuration confirmation container contribution control-plane.io cool cordova course database datable date date component debugger debugging for chrome default methods Design design pattern development DevOps devtools directions api docker email English estatistics events example exceptions faces factory Fedora filter findFirst fix foreach formatter Functional Programming genericConverter gi git golang good practices google gradle groupingBy grunt hibernate ibm images install interceptors ios isse java java8 javascript javaserverfaces JAX-B jdk js jsf junit key kids kubebuilder kubernetes kubernets lambdas layout learn lint linux local env london macosx mandrill mapping maps Material Design math maven meteor Methods microservices minikube Minishift mobile mongoDB music neo4j node node.js nuaware oc tool olm OpenShift opensource operator-framework operator-sdk operatorhub operators optional parse performace pocs pool postgreSQL primafeces primefaces Process python reactivevar redhat redis reflection regex regular expressions remotework responsive rest rhel7 sax scalingo script sdk security sensitive shel shell socket sorted sound sp spin sponsored by spring ssh StAX STEM stream streams sum t tail recursion tdc think thread threads tip tips travis UI uk upstream utils vagrant validation form volatile webpack wildfly woman xml xpath xsd xsl XSLT [Intellij IDEA]
Create a website or blog at WordPress.com
  • Subscribe Subscribed
    • www.Dev4Devs.com
    • Join 56 other subscribers
    • Already have a WordPress.com account? Log in now.
    • www.Dev4Devs.com
    • Subscribe Subscribed
    • Sign up
    • Log in
    • Report this content
    • View site in Reader
    • Manage subscriptions
    • Collapse this bar
 

Loading Comments...