Posts by Matheus Moreira • 558 points
6 posts
-
1
votes1
answer72
viewsA: How do I create a Dynamic Array in C?
But in C I don’t know how to create a list without specifying a fixed dimension. Lists like Python do not exist in the C language. There are only simpler data structures. You need to create your own…
canswered Matheus Moreira 558 -
12
votes5
answers7326
viewsA: Is Javascript an Object-Oriented language?
Many say it is not an Object-Oriented language, so don’t it is possible to define classes with it There is an object called Object Object has a function called create create creates a new object…
-
17
votes2
answers3301
viewsA: What is a paradigm?
What is a paradigm? In programming, a graph is a way of thinking about problems and developing solutions. It is said that a given programming language supports a given paradigm. When solving a…
-
2
votes2
answers217
viewsA: Doubt Semantic Html5
Regarding the semantic meaning of the elements, the current authority is the specification of HTML5, promulgated by the World Wide Web Consortium. The element <section> Represents a section of…
-
1
votes2
answers174
viewsA: How to send commands to the ruby interpreter from a Shell Script?
A great way is to use I/O to send the data. In bash: generate_hash() { ruby -r digest/md5 -e 'puts Digest::MD5.hexdigest STDIN.read' } echo 'argumento' | generate_hash generate_hash < arquivo…
-
11
votes2
answers4131
viewsA: How can Whatsapp insert Emojis into the URL?
is a unicode symbol U+1F310 = | GLOBE WITH MERIDIANS 11110000 10011111 10001100 10010000 Use that symbol force user agents, such as Internet Explorers 5 to 8, to encode the HTTP request using UTF-8.…
urlanswered Matheus Moreira 558