Posts by Furabio • 701 points
21 posts
-
0
votes1
answer35
viewsQ: Doubt when using SESSION to store data
I’m trying to display n names from a list, I’m making use of Sessions to make this possible. When I use Session through the form page the elements are added n times to the array, however when I use…
-
0
votes1
answer31
viewsQ: Is it possible to use addEventListner this way?
I’m studying javascript and decided to play a little with the creation of fields with the CORE GIFT. This is the code I’ve made so far : <!DOCTYPE html> <html lang="en"> <head>…
-
0
votes1
answer67
viewsQ: Get news through the URL
I recently saw a video on youtube, where the guy through the URL of a news item Uol, globe and other sites of the type, he recovered the title of the news, the body and the images along with the…
-
4
votes1
answer104
views -
1
votes1
answer57
viewsQ: toogle menu not returning to desktop media query
I am developing a responsive menu and it works normally, when enters the media query for tablet it hides the menu and it is only possible to view it by clicking the button, but when the menu is…
-
3
votes1
answer1061
viewsQ: input:checked is not applying the properties
I’m developing a responsive menu using css3 (I can’t use JS), and I’m having a problem that’s keeping me from moving forward, the problem is the following : input:checked ~ nav { display: none; }…
-
12
votes1
answer3675
viewsQ: What is the difference between "dependencies" and "devDependencies"?
What’s the difference between saving a component like "dependencies" or "devDependencies" in the Bower, npm, commiserate among others using this structure ?…
-
1
votes1
answer172
viewsA: Problem loading font-awesome with SASS
I switched to : bower_components/font-awesome/scss/_variables.scss $fa-font-path: "../fonts" !default; for : $fa-font-path: "/bower_components/font-awesome/fonts" !default;…
-
1
votes1
answer172
viewsQ: Problem loading font-awesome with SASS
Icons when loaded are quite different. <i class="fa fa-camera-retro fa-lg"></i> CAMERA <i class="fa fa-facebook"></i> FACEBOOK <i class="fa fa-github"></i> GITHUB…
-
0
votes1
answer1311
viewsQ: npm WARN deprecated
I tried to find solution on the net about this error and the ones I found did not work. npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue…
-
3
votes1
answer143
viewsQ: Flexbox replaces the GRID?
I’ve been taking a look at the flex properties, and I realized that they do the same thing as the grid or am I wrong? If so, what difference does it make? When I should wear one or the other ?…
-
2
votes1
answer185
viewsQ: Doubt about Sessions in the IC
According to : $config['sess_expiration'] = 7200; The session will be destroyed after 7200 seconds, however I wanted to know if when I update the page or access another page of my system, that time…
-
1
votes1
answer2950
viewsQ: How to put image in the Wordpress background
I’m creating a wordpress template, only now I’m not able to put a background image in the bottom of the site : I managed to insert the color giving an id="bg" pro body, because when I tried to just…
-
0
votes2
answers23084
viewsQ: Centralize DIV
How do I center this div : .centralizar { width: 80%; background: #fff; }…
-
5
votes2
answers12195
viewsQ: Difference between Std::Cout and Cout?
In C++ because some use std::cout and others use only cout is just what the programmer thinks best?
-
5
votes2
answers11677
viewsQ: Namespaces and Use when to use and for what purpose?
What are namespaces and use and when it is recommended to use them in an application ?
-
2
votes3
answers1608
viewsQ: Auto Load of classes in PHP
I’m developing a mini-framework to use in my applications and did auto load classes in this way : function __autoload($Class) { $cDir = ['Conn', 'Helpers', 'Models']; $iDir = null; foreach ($cDir as…
-
2
votes0
answers839
viewsQ: What are the advantages and disadvantages of using Wordpress and making from scratch?
In college, some colleagues and I are thinking about developing a project that will eventually turn into something big, so it was mentioned using the Wordpress. More specifically, what’s the…
-
5
votes3
answers148
views -
2
votes2
answers2828
views -
3
votes2
answers83
viewsQ: @media screen not working properly
I’m studying css and html still, so I may be making some banal mistake, I’m not able to solve alone. The problem is the following I set on @media screen a minimum width for it to change the img…