[Solved] Decode or identify this code [closed]

It looks like you have to reverse the string and then decode as Base64: This part: NjcwODI4MjEjODE2NjY4NTcxMjI4ODcxMTE2NTcxMTgxMDk3OTY1NzYxMDQ1MzEw NjExNjk5MTE5NTYxMDM1Nzc1NTI3ODQ5ODgxMTYxMDI5OTExNDc1MTE2MTAwNTA1 NzUxMTAwODg1Mzk5NzU3OTg2 Translates to: 67082821#816668571228871116571181097965761045310611699119561035775527849881161029911475116100505751100885399757986 Since it returns all digits, except for one hash, it is highly probable that this is how it should be decoded. The last part has some problems, first because it does not have … Read more

[Solved] How to join multiple tables mysql

This most likely won’t work since I have very little information to go on but you’re probably looking for a query somewhat like this: SELECT `order`.orderID, menuItem.`item-name`, menuGroup.`grp-name` FROM menuItem JOIN menuGroup ON menuGroup.menuGrpNo = menuItem.menuGroup LEFT JOIN orderItems ON orterItems.menuItemNo = menuItem.menuItemNo LEFT JOIN `order` ON `order`.orderID = orterItems.orderID AND `order`.orderDate BETWEEN ‘2012-02-01’ AND … Read more

[Solved] Does C’s strtok function support regex?

No, it does not support regex. Read the documentation before asking. On the other hand, that’s precisely how it works so again Read the documentation, i.e. You give it all the possible delimiters. Check it here #include <stdio.h> #include <string.h> int main(void) { char example[] = “exa$mple@str#ing”; char *token; char *pointer; pointer = example; token … Read more

[Solved] how to make multiple ajax calls from a same function? [closed]

var pages = [“page1.php”,”page2.php”,”folder/page3.php”] var requests = []; function multipleAjax(string) { /*where string is “?value=somevalue&bool=true” or something*/ for (i=0; i<pages.length;i++) { requests[i] = getXMLHttpRequest(); if (requests[i] != null) { requests[i].open(“Post”, “https://stackoverflow.com/” + pages[i] + string); requests[i].onreadystatechange = function () { if (requests[i].readyState == 4) { /*code to handle responseText returned*/ }; }; }; requests[i].send(); }; … Read more

[Solved] I can’t find my PHP issue [closed]

This could be a browser problem. It could be a code problem. It could be a server problem. Have you tried using something like Firebug to watch what happens when you yourself take the test? Have you also tried using Firebug Lite – Firebug plugins available for other browsers, which include some-but-not-all Firebug functionality? In … Read more

[Solved] I have a JSON file attached below and i want to print it in the console, currently i am using xcode 4.4 [closed]

Assuming you have a file in bundle (as it wasnt clear from the question), you can read the file with following code: NSString * path = [[NSBundle mainBundle] pathForResource:@”YOU_FILE_NAME” ofType:@”txt”]; NSString *jsonString = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil]; then print it to console using: NSLog(@”%@”,jsonString); 4 solved I have a JSON file attached below and i … Read more

[Solved] Does JQuery have inheritance built into it? [closed]

Before you get down-voted into oblivion, I will tell you. No it does not, since Javascript does not support a class structure, this type of paradigm does not exist in JQuery. There are plugins for it. Good luck. 1 solved Does JQuery have inheritance built into it? [closed]

[Solved] CSS, not working on IE 7 [closed]

Different browsers handle css differently or not at all. IE7 for example handles it quite poorly compared to modern browsers. There are charts you can look up to see what rules which browsers support and which don’t. Here are two links to get you started: http://www.quirksmode.org/css/contents.html http://www.webdevout.net/browser-support-css solved CSS, not working on IE 7 [closed]

[Solved] Securely send form data instead of using post [closed]

This is not really a good question, but you still might look at the following links: http://php.net/manual/en/tutorial.forms.php http://www.php.net/manual/en/features.file-upload.post-method.php http://code.google.com/a/apache-extras.org/p/phpmailer/ 0 solved Securely send form data instead of using post [closed]

[Solved] How to prevent object should not be slice [closed]

UPDATE: My initial thoughts as described below were found as not true: See: C++ slicing in Java / C# Original Answer: If I understood correctly this is a theoretical question. REDUCING slicing can be done by not defining new members in the derived class. slicing occurs when assigning an instance of a derived class to … Read more