0
votes
2answers
36 views
NoReverseMatch in django
Hi. After debugging for a while I found what the error was, but I don't know how to fix it.
I have an urlConf whit the name 'ver_caja' who receives as argument the id of a caja o …
0
votes
4answers
360 views
How can I get the reverse url for a Django Flatpages template
How can I get the reverse url for a Django Flatpages template
4
votes
7answers
380 views
How to reverse a string in Go?
How can we reverse a simple string in Go? A Perl-like 'reverse' function does not seem to exist there.
0
votes
1answer
78 views
Is it possible to redefine reverse in a Django project?
I have some custom logic that needs to be executed every single time a URL is reversed, even for third-party apps. My project is a multitenant web app, and the tenant is identified …
0
votes
3answers
103 views
reversing an array of characters without creating a new array
write a program that enters an array of characters from the user and reverses the sequence without creating a new array
0
votes
3answers
78 views
Need a program to reverse the words in a string
I asked this question in a few interviews. I want to know from the Stackoverflow readers as to what should be the answer to this question.
Such a seemingly simple question, but ha …
1
vote
3answers
201 views
Reversing CRC32
I'm looking for a way to reverse a CRC32 checksum. There are solutions around, but they are either badly written, extremely technical and/or in Assembly. Assembly is (currently) be …
1
vote
1answer
123 views
Using Cups Reverse Orientation on a Postscript file
When using the lp -o orientation-requested=6 in CUPS to print a postscript file, the first page is reversed 180 degrees and then the next page is back to 0 orientation. Third pag …
2
votes
3answers
240 views
C++ to UML ( Reverse engineer / Round-trip engineering )
I am looking for a tool that can reverse engineer C++ to UML (and vice-versa). However, the crucial requirement is that it can correctly parse method (member function) bodies so th …
4
votes
8answers
225 views
Why does *(str+i) = *(str +j) not work here?
void reverse(char *str){
int i,j;
char temp;
for(i=0,j=strlen(str)-1; i<j; i++, j--){
temp = *(str + i);
*(str + i) = *(str + j);
*(str + j) = temp; …
2
votes
3answers
169 views
Python Reverse Generator
Hi,
I'm looking for a way to reverse a generator object. I know how to reverse sequences:
foo = imap(seq.__getitem__, xrange(len(seq)-1, -1, -1))
But is something similar possi …
1
vote
2answers
89 views
Volume DNS Lookup API Provider which finds all domains for a given IP Address
We're currently looking for a reliable Reverse DNS lookup service (Input IP Address -> output domain name) which is accessible by API. Volumes are not not huge but we need a reliab …
-10
votes
3answers
183 views
How to reverse a string with PHP?
$s = '1000';
after process,should be '0001'
0
votes
3answers
109 views
Invert function: base 38 conversion
Hello!
Can you tell me how the invert function for the following PHP function is?
<?php
function id2secure($old_number) {
$alphabet_en = '1357902468acegikmoqsuwybdfhjlnprtvxz …
5
votes
4answers
200 views
Reverse engineering a statistics data file from my insulin pump controller
This may or may not be a grey area subject, though my intentions are certainly not, so my intention is not to stir up an ethical debate on the topic of reverse engineering.
I'm …
