All Questions

2
answers

Placing control to advance and return in Slide Show

I would like to know how I can change the Slide Show script below so that it works with two action controls named Next and Previous and I need the Slide to only change the text if the user clicks one of the buttons to make the change of the Slid...
asked on 01.09.2015 / 16:30
2
answers

C ++ - Stopping condition in repetition structure

How to place this code in a repeat structure so that after the calculation the "Type S to exit or C to continue" option is shown? #include <iostream> #include <string.h> #include <locale.h> #include <stdio.h> #include &...
asked on 11.09.2015 / 10:05
2
answers

How to make a LINQ / lambda and consume it in the view?

I have an object called Radio : public class Radio { public int RadioId { get; set; } public string StreamUrl { get; set; } public bool Ativo { get; set; } public bool Mp3 { get; set; } } I'm doing a select in control...
asked on 09.08.2015 / 14:45
2
answers

In what order is the init () method invoked in the GO Language?

I have read some posts on the Internet about the implicit call of the init() method, but I did not understand in what order it is invoked in a program written in GO Language, mainly because there could be several init methods in th...
asked on 12.09.2015 / 18:44
1
answer

Apply the CSS property "content" without resorting to the style sheet

I have a web-site that is available in several languages, and to not have to redo the entire structure of an image slider, there is a small text that is currently being applied through the :before (English) making use of conten...
asked on 28.01.2014 / 23:32
2
answers

Creating string in PHP

Is it possible to create in PHP a variable of type string that contains so many bytes , that is, defined by the programmer? Example in C: char string[20]; In this case, string will always have 20 bytes, regardless of what is stor...
asked on 29.07.2015 / 14:34
1
answer

How to read txt file with datasets composed of multiple dimensions?

I have a file with datasets composed of multiple dimensions in a single txt. For example, 2 3 #dimensao do primeiro dataset 1 2 3 4 5 6 4 4 #dimensao do segundo dataset 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 How to read this data and form...
asked on 03.11.2018 / 15:13
2
answers

Force text download in MSWord-supported format with PHP?

I would like to know how to force the download of a file, with some extension supported by Microsoft Word p> I've searched a few times, tested the MIME types I found, like the ones in this Microsoft's list , but I did not succeed. This...
asked on 11.09.2015 / 07:13
1
answer

IDE / Text editors for Node.js [closed]

What are the best IDE options or Text Editors for NodeJS development? My need is to develop large projects with JavaScript / Node.js , here are some of the options below. If possible cite the advantages of using the indicated software. Nod...
asked on 24.08.2015 / 01:10
2
answers

Get URL with regular expression links

I'm trying to extract only the URL if an expression is validated with the [monitory] tag. The expression I use is this: (?=<a.*\[monitory\].*href=["|'][http:|https:]?[\/\/]).*?["|']> And for example on a link like this: &l...
asked on 16.11.2018 / 00:32