Posts by Ramires Nascimento • 311 points
11 posts
-
0
votes1
answer15
viewsA: How to remove a css class using jquery on just one screen? is not working
You are using a reserved word for a class, the correct is to add a point at the beginning of the declaration, because the css is interpreting as if it were the body element of the HTML. Do that…
css-transitionsanswered Ramires Nascimento 311 -
1
votes1
answer429
viewsA: Typescript error import * as Popper from "Popper.js";
From what I read, it’s a problem regarding the types used in Popper.js and the typescript types. It is necessary to make a correction by providing the types correctly. The code below can help you…
-
1
votes1
answer641
viewsA: What is a reference location?
Reference locality is a concept coming from computer architecture, as computer memory is finite there are some algorithms that aim to make access to memory faster. The main idea is that there are…
-
1
votes2
answers310
viewsA: Highlight weekends from a date range - Javascript
I took the liberty of removing unnecessary code, you may need it for another feature, but the code does exactly what you want. What I did was every iteration of is check if the date was a weekend.…
-
1
votes2
answers95
viewsA: Validate fields within separate Ivs in a single form
If I understand correctly, it is possible that you validate the fields before showing the next div The bottom I made an example, so you can get an idea, you can run to see the behavior. function…
-
2
votes1
answer356
viewsA: How to convert a json object to array
It is not possible to convert an Object into an array, and I don’t think you need it. say you have an object Person with name and age. for example: { nome: 'Beatriz', idade: 16 } in this case you…
-
2
votes0
answers105
viewsQ: Application runs on eclipse but does not run on Intelij
I am migrating from eclipse to Intelij and my application runs normal in eclipse, and when I deploy on server, but it does not run on intelij. No error message, log only. package br.com.ramires.pac;…
-
1
votes2
answers133
viewsA: How to filter a Hashmap by returning another Hashmap using Java 8 lambda?
If I understand your doubt correctly just do the following: Set<LineDocument> set = lineDocuments.stream().filter( l -> l.isActive()).collect(Collectors.toSet());…
-
1
votes1
answer112
viewsA: How to save a private key locally in security?
I don’t know about Android, but iOS has a concept of reserved area for each application, IE no application gets access to which directories of other application, so just that you store the private…
-
1
votes3
answers389
viewsA: Change font size according to iOS device
There is a solution, if it calls "Auto Layout" you must select the text and in the Xcode inspector you trigger a rule for this by clicking the button + of the source. see that appears the fields so…
-
4
votes4
answers1634
viewsA: What does the term "atomic" mean?
Note: It is necessary that you know what a thread is to understand the explanation below. All the instructions you do on a computer are divided into parts, this happens by the way the computer…