2mNaira's Posts
Nairaland Forum › 2mNaira's Profile › 2mNaira's Posts
1 2 3 4 5 6 7 8 9 10 11 12 13 (of 22 pages)
Deleted for lack of interest. |
ok. |
I pray you.get help here. |
100 thousand I think or something there about. I am not too sure. I am not imposition to verify now. But I will update it as soon as i verify. |
Interesting |
larisoft:Does java have the tuple dats type. |
Sleekbabz:This is most likely it. |
@SeunThomas,I hope you have not abandoned this thread. |
In my own opinion,this thread should have been titled , The most popular programmer on Nairaland.Whether that title is adopted or not, it is the most popular programmer it will end up discovering. I know that the owner of the thread advised people who have issues with the thread to create their own thread instead of complaining. Well, I do not have issues with the thread or its objective. Of course every one knows it will not discover the best programmer but only the most popular. Everyone is participating just for the fun.As stated by the creator, the primary objective of the thread is to create fun and if you ask me, then I'll tell you that it is succeeding at its aim. I really do believe that, this thread would have generated no controversy if it has used a more suitable title. Funny enough, I almost heeded the creator's advice by creating another thread with the same title that seeks to find the best programmer via programming prowess,but refrained from so doing so it wont appear that I did it out of spite. While I am all out for creating threads for the purpose of fun, I think suitability of title should not be sacrificed for fun. |
doveda:Must everybody be like u or reason like you? If I have to be candid you are wrong and owe him an apilogy. Your approach was definitey improper. Ever heard of the phrase 'maner of approach'? |
doveda:Pls let this fellow be.There is no crime if he finds it funny. That was unxalled for. |
zaboy:That would be fairer comparison. Anyway, I am more of an observer here. I just needed to pointvout thatbfaulty analysis |
ochuciano:Even if the infornation ge gave were factual it still cannot help in proving his point. N51 T today is probably equal to N1 M in the sixties in purchasing power. |
zaboy:This you analysis is a faulty one. N51trillion naira today is probably equal in purchasing power to N1 trillion naira many years back. I used to go to school with say 10 kobo or so when I was in primary school.That money was more than enough for my transportation to and from school and for my feeding. That amount is large today does not make it large comparatively many years ago. You have to consider a lot of parameters like the prevailing exchange rate and infkation during th e two periods in order to get the eqivalent or true value of an amont of money in naira in one period of time to that in another period of time. |
taiiremide:Some people don't show 'emotiona love ' because they were not brougt up that way or sonething happened in there growing up years and they stoppd showing emotional care. Its more of a backgroud, growing up environment thing. It does'n mean they don't love you. Complaining is also an intrinsic part of some people's character. My guese is that your wife is very beautiful which is the most important thing that attracted you to her in the first place and so you did not pay attention to her character. She most likely have always been like this even before you married her. On her own part it is most likely that the most important reason she was attracted to you was you financial buoyancy. She most likely is of humble background and saw you as an escape from hardship which she seem to be now experiencing or she grew up in comfort and has become used to it and now she is not getting it again..Or because of your financial buoyancy she already has great dreams that seem to have been dashed and she is now feeling frustrated. It is likely that she doesn't mean it when she said she is not interested in the marriage again but only said that out of immaturity to manipulate you.She probably has told some stories about you to her parent and was hoping when she tells you she is not interested in the marriage again you would come down from your high horse and come to her parents place to beg.She just wants her parents to talk some senses into you becsuse she believes you are more likely to listen to them than to her. In my own opinion, you do not yet understand how your wife is and you do not know how to manage her. Also, reading in between the line.I sense that you and your wife often disagree and she often have her way but recently she doesn't always have her way often again and she needs to get you more in line now, hence the manipulation. I believe your wife stil loves you.She is just somehow immature. She feels your love for her has waned and is trying to whip it up through manipulation. You need to find a way to manage your wife well without.enstranging her , without making her feel feel less loved and without allowing her to succeed at manupulating you. What you need to do is find a way to resolve the impasse by meeting her half-way. You shoud continue to be nice, loving,caring and kind to her thus tactically maintainig cordial relationship with her but let her continue to take care of the children alone. When the burden gets too much for her she will find her way back.After all, you did not send her packing. |
ODVanguard:That is if they allow your vote to count. I am concerned that there may be rigging which make rubbish of people's vote. Going by threads on nairaland , I was convinced that APC stood no chance ib Edo State. I have been using analysis online as bases for forming opinion on how election result is likely to be in state's in which I don't reside, but after the Edo's election results were released, I stopped reckonning with online anwlyses. I am now more interested in how rig-free the election will be. |
FagsamPHP:That is if they allow your vote to count. To the best if my knowledge it did not count in Edo state |
Quite revealing. |
DanielTheGeek:OK. Sorry about that. |
lekropasky:Of course all codes can be reversed engineered. Its just that codes that are compile directly to machine language like c/c++ are more difficult to reverse engineer than those the compile to intemediate language like Java and C#. |
DanielTheGeek:To the best of my knowledge, session id are never sent via url by default unless you specifically request that it be sent via url. If my memory serves me right, cookies get sent by url only when you do not allow creation of cookies on your computer. Disabling javascript to prevent session hijacking by turning javacsript off is not a good idea because most applications need javascript and so it is not really a pragmatic solution. Besides, there are many other ways of preventing XSS without turning javascrpt off. |
From what I have gathered here this is my opinion on how to prevent session hijack. Ensure login is done per device. This means each time a person logs in you must save sufficient information about the device from which the logged in into your database. Create a Table probably named UserSession. Along with other device identity identifying fields that you create in your UserSession Table you must also create a field probably named sessionid. Insert, along with other device identity identifying information, a randomly generated session id into the UserSession Table.(You might want use the table's primary key instead). From the server create a cookie using this your application generated session id. Before you create any page for a logged in user on the server, get the current user's session id from the session id cookie you created and any get all necessary information about the current user's device. Using the session id gotten from the cookie read/load the corresponding device identity row from database. Compare the user identity values from database with those of the current user.If they do not match then suspect a fowl play and flag or mark all rows that have that session id in your database. On suspecting a foul play request the current user to re-log in. If the re-login succeeds delete that all rows that have that session id from your UserSession table ( since eached saved session id is per user per devuce) Insert a new device identity identifucatuon row which should include a new generated session id( unless you are using primary key). Create the user requested page you were about to create before you suspected foul play. If re-authentication after foul play fails a number if times say,three times, then you can require the user to answer security question or any other higher levek authentication you desire. Please note that the session id your application creates does not replace the one that the web server creates to identify clients. The web server still carries out its own session and client identification activities wuthout being disturbed. Do add addition improvement suggestion that you deem necessary. |
DanielTheGeek:Reading through your post a second time, I think I now understand your point. You are saying that, rather than ending the session because a foul play is suspected facebook requires the user to re-login. Hmn, that sounds better truely because it saves user experience like you pointed out. This means that facebook will flag the session id on which it suspects foul play and will refuse to grant the request of any client request from any device that attempt to use that session id unless the person behind it re-logs in. Thats actually sounds like a better approach than snap chat's approach to me. The hacker will not be able to use that session id again unless he uses the device that is being used by the authentic user. |
teamsynergy:I guess you are right. |
DanielTheGeek:Even though SeunThomas's snapchat approach may not be the most pertinent, It appears to me considering this your post that he understands how session works.better than you do. Http access is stateless. Server have no memory.Once a client connects to a server the server checks to see if it sends a session id with its request.If a session Id is not found, the server creates a new session id for that client and hands the new session id to the client. The clients saves the session id as as a cookie on the client's computer. Once this is done, the client sends the session id with every request to the server.The server identifies each client app by comparing the cookie they send with the request with the one saved with a client identity on the server computer. Session , hijacks occurs when an hacker successfully snifs out a client's session id while its being sent with request to the server. There after,the hacker impersonates the client by sending his own request along with the clients original session id to the server. The server ends up comparing that session id with the one saved with a client identity and it assumes thr request came from the client. By so doing the hacker can carry out adminitative task on the app if the user whose session is hijacked is an admin. Because the session id is saved as a cookie on the client cimputer,the client can end the session any time it wants by destroying or deleting the cookie. Having said all these , I now suddenly see why snapchat approach is quite relevant and appropriate because it is unlikely that the hacker will be operating from the same device as the user, so even if the session id from the hscker and the authentic user are thesame it is unlikely that their ip address and any other device related information will be the same. Pls note that when I said client above meant web browser and when I said server above I meant't web server as opposed to the client computer and server computer themselves. Thanks @SeunThomas , I see now that the snap chat approach is the way to go. It may not be 100% reliable , but considering its format, it would most probably be 90% reliable. The hacker woule have to get, in addition to the session id, other information about the client in other to hijack a session. His greatest huddle would be determining the pool of addional information about the cient thar the web app keeps for completey identifying a client. |
Acidosis:I conpletely disagree with these. Ever heard of the matenal instinct. I am sure you know an instinct can be said to be that wish make you do something without thinking. Besides studies of the brain has shown that emotion often prevail over logic in women. |
DanielTheGeek:OK. Thanks.I'll look into it. |
dominique:This my sister is the truth. Women generally love their children more than their husbands and men love their children more than their wives. This ought not to be so. But a single mum that is married to another man should be smart in her demonstration and profession of such love so as not to get in the way of harmony with her husband and and not to get people to regard her husband as being foolish. |
teamsynergy:Do you know what the problem is? People out there are never rational. You may be, the single mum may be, the man may be, but are his parents and siblings rational? Are his friends rational?Are his neigbours rational? Is the society at large rational? I know what arose from my own parents and siblings when I spoke of wanting to marry a single mum. For your information, I personally have no issues with marrying a single mum but I am very much aware a lot of people have issues with it. One more thing , I am speaking from experience. Talking about people's irrationality, are people rational about men or women who are more than ripe for marriage in Nigeria? The answer is an emphatic NO. People see them as people who have a great problem.If you have been on Nairaland for sometime you would have heard of what people often say about Linda Ikeji, Rita Dominc and all such people. Believe me, it takes a lot of courage to marry a single mum if you are not a single dad, and not a widower. |
seunthomas:OK.Thanks a lot. |
seunthomas:I used to think people hijack sessions of people who have already logged in. If that indeed is the case then what snap chat does will be completely irrelevant. I have been searching for a good solution to this but is yet to find one. |

