Top "Reusability" questions

Reusability is the likelihood and potential for a piece of source code to be reused in other projects

Vue JS mounted()

I am creating a game in VueJS, where, when the page loads, I want a method to fire, make an …

javascript vue.js model-view-controller vuejs2 reusability
Why can a string be assigned to a char* pointer, but not to a char[] array?

Can someone explain why this works with the pointer: char * str1; str1 = "Hello1"; str1 = "new string"; // but not this char …

c string pointers initialization reusability
How to use ui:include with parameters?

Have JSF 1.2 two pages(one.xhtml and other.xhtml), that are included to the current page by following rule: ... <…

jsf parameters include reusability
Can we include common css class in another css class?

I am a CSS newbie. I am just wondering, is that possible to include one common class into another class? …

css reusability
Is there any way to reuse a Stream?

I'm learning the new Java 8 features, and while experimenting with streams (java.util.stream.Stream) and collectors, I realized that …

java java-stream reusability
Connecting two UDP clients to one port (Send and Receive)

I tried the suggestion from this question with very little success. Please... any help will be greatly appreciated! Here is …

c# port reusability udpclient
Does CodeIgniter have plugins / extensions / modules?

I am looking at few PHP frameworks and noticed that they all offer re-usable, community-contributed code in various forms: -Symfony 2 (…

codeigniter plugins reusability
Table view with custom cell (programmatically)

So far, I used to create custom nibs to make my cell as I wanted but this time, the height …

uitableview row customization cell reusability
Android using layouts as a template for creating multiple layout instances

OK, So I understand how to use the include tag but I've run into a problem. Basically I want to …

android xml layout reusability
javabean vs servlet

I was searching for difference between javabean and servlet. I found Servlet corresponds a Controller JavaBean corresponds a Model and …

java servlets javabeans reusability