All Questions

2
answers

When I use ObjectOutputStream are the attributes of the parent class also written?

When I use ObjectOutpuStream to write to file, will the parent class attributes also be written?     
asked on 10.02.2014 / 12:53
1
answer

How to get the publishing version of a console application

I'm having a problem trying to get the publish version of my application, I searched and found the following answer in SOEN how to show publish version in a textbox? I followed exactly the concept of the right answer, but an exception is th...
asked on 28.05.2014 / 19:01
2
answers

Loop to perform calculation in C Pagerank

Based on starting notes 0.15 for everyone and then add note as explained in link If we consider pages 1, 2 and 3 to be: 1: link1 2: link2 3: link3 The paginas.txt file for this example would be: 1 link1 2 link2 3 link3 While the...
asked on 30.01.2014 / 13:13
3
answers

Send e-mail on behalf of the customer

I have a system that serves multiple clients and sends emails to their users (clients of my clients). Today I use my own email account (from my domain), and in the composition of the email I inform the name and email of the client. With th...
asked on 12.02.2014 / 12:57
5
answers

How to select the records that have relation with all the values of a list?

I have the following sql: SELECT DISTINCT cp_pessoa.id, cp_pessoa.nome FROM cp_pessoa LEFT JOIN cp_habilidade_freelancer ON (cp_habilidade_freelancer.id_freelancer = cp_pessoa.id) LEFT JOIN cp_habilidade ON (cp_habilidade.id = cp_habilidade...
asked on 10.02.2014 / 10:02
2
answers

Testing asynchronous requests

How can I make asynchronous requests in iOS TestCases? Example: -(void)test { UserModel* user = [UserModel sharedInstance]; [user requestUserInformationWithCompletion:^(NSError* error, NSDictionary* info){ if(error) {...
asked on 11.02.2014 / 16:55
2
answers

Code First with Complex Types, when doing Scaffolding Complex Types properties are not found in the views

I'm following the presentation of Sergey Barskiy in link , where he demonstrates the approach of Entity FrameWork with Code First. I loved it, but I had a problem. In the presentation, it demonstrates that I can use Complex Types for the...
asked on 04.02.2014 / 15:30
2
answers

Navigation Drawer customized and colored

Hello, what I wanted to do was to be able to put colorful icons in the navigation, how can I do that? The images I have in my project are colored but in navigation they are only grayish like that. Thanks for the help.     
asked on 12.07.2018 / 20:47
2
answers

How to make a request by sending cookie data?

I want to make a GET request for a given URL, but I want to send cookie data as a web browser does. For example, in the code below: from urllib import request req = request.Request('http://servidor/pagina.html') response = request....
asked on 05.02.2014 / 16:01
1
answer

Make the code wait for a user input to run an action, and then prompt the input again

Hello, I came across a problem trying to develop an algorithm for a small text-based rpg (based on the SoloLearn Python course) in Javascript, and I've been trying to figure out a way to get past it without breaking the logic, which would be " th...
asked on 27.07.2018 / 18:34