Posts by Gabriel Antunes • 62 points
6 posts
- 
		-2 votes2 answers5475 viewsA: How to query filter in Firebase?The Firebase NAY works as an SQL Database Manager System. One of the main differences is that Firebase focuses on distributing direct data rather than filtering (Where) and gather separate data… firebaseanswered Gabriel Antunes 62
- 
		0 votes2 answers163 viewsA: div’s scroll down when changing screen resolutiondisplay: inline [...] then I lose block conditions How about inline-block, then? @media screen and (min-width: 0px) and (max-width:320px) { .fotosJaCad { display:inline-block; } }… 
- 
		2 votes3 answers809 viewsA: Opacity according to page scrollat the 0vh position it would be 0.7 and at the 100vh position it would be 0.1 Running your function on the website you sent, it does not behave as you expect. If you try to run and log the values in… 
- 
		0 votes1 answer62 viewsA: External employee registration Validation mysql phpYour model is functional but you’ve thought about using nvarchar for complex text fields such as the name? varchar saves a string of characters in 8 bits, while nvarchar keeps a Unicode string,… 
- 
		2 votes1 answer2538 viewsA: npm install -g angular-cli shows errorpeerInvalid is an error of package inconsistency. It can be fixed by deleting the folder node_modules and running npm update, which should solve the problem as npm will download the updated… 
- 
		1 votes1 answer225 viewsA: Spring Security Oauth + FirebaseMaybe it’s cool you use the Firebase Queue to perform this kind of complex task. I was writing about it today for my team. Just connect: Firebase Queue is a Firebase module that allows us to create…