Re: Cannot run exe from asp.net Programming Web Development by lennyli …} has been established!") while True: command = conn.recv(1024).decode('utf-8') if command.lower() == 'exit': break elif command.startswith… Decode Plz Files please Decode Programming Web Development by reis02 Decode Please REMOVED Decode Programming Software Development by deepthought … the unit into python however i think i need to decode this data. Below is what i have sent and get…\x00\x00' ('192.168.60.3', 9008) How can i decode this I tried adding the code below mut just got… garbage out print(data.decode("utf_8")) My result should be the same as… Decode Programming Software Development by shers Hi, I have a file from the client which is a text file. I have to decode the file to a graphical representation. Is there any way I can do it? Thanks Re: Decode Programming Software Development by debasisdas What the file contains and why you need to decode and using what ? Re: Decode Plz Files please Decode Programming Web Development by reis02 Please Decode Files Please I need urgent Codes Decode files decode contents of file. Programming Web Development by Tko_1 …dechex($ordStr + $ordKey),16,36)); } return $hash; } function decode($string,$key) { $key = sha1($key); $strLen = strlen($string…quot;); ?> Result: p3e4e4241674d2r4m4i5o464a4f2p3k5c2 Decode: <?php echo decode("p3e4e4241674d2r4m4i5o464a4f2p3k5c2","This is… Re: decode contents of file. Programming Web Development by cereal …($array); $convert = array_map(function($value) use($key){ return decode($value, $key); }, $array); $result .= implode(' ',…($array); array_pop($array); $keys[] = $key; $convert = array_map('decode', $array, $keys); $result .= implode(' ', $convert) . … Re: decode contents of file. Programming Web Development by Tko_1 …array); $convert = array_map(function($value) use($key){ return decode($value, $key); }, $array); $result .= implode('…array); $keys[] = $key; $convert = array_map('decode', $array, $keys); $result .= implode(' ', $convert) . PHP_EOL; … Re: decode contents of file. Programming Web Development by cereal …'s my live test: * http://runnable.com/VXTePxPdiT8x6mmi/simple-encode-decode-for-php I'm encoding and saving the input to… Re: decode contents of file. Programming Web Development by cereal … just to send some random input and show how to decode adjacent strings, not as encode solution, that part is very… Decode of Suming of value Programming Databases by yogesh_vaidya12 … and last 4 row showing netamout 4200. [code=sql]SELECT DECODE( SIGN(SUM(NETAMOUNT)),0,0) FROM ALMONTHLYBILLS WHERE NETAMOUNT NOT… IN (SELECT DECODE( SIGN(SUM(NETAMOUNT)),1,0) FROM MONTHLYBILLS ))[/code] In my… Decode CTCSS via soundcard Help needed Programming Software Development by kimmi_dk Hi All, Do anyone of you know how to decode CTCSS signal (67 Hz - 300 Hz) from input of soundcard I need to make some kind of filter so all sound under 60 Hz ond over 300 Hz is gone then decode the tone's there are 38 tones i need to be able to reg. Any Idea ? or maby some code to start on ? VB6 ! Best Regards Kim Dk decode using operators? Programming Databases by amishraa Is there a workaround to this as decode does not seem to allow the use of greater than equal sign I am trying to show the comment for any days beyond 4 days, not just 4 days. [CODE] decode(shipdate-orderdate,'4','This is unsatisfactory!') comments from orders [/CODE] Thanks in advance! :) decode string Programming Software Development by Zeinab_1 … in python s = b'B1=A\xF1adir+al+carrito\n'.decode('latin-1') print(s) with open ('lat.txt','wb') as… lines in open('mytxt1.txt','rb'): print(lines) s = lines.decode('latin-1') print(s) with open ('lat1.txt','wb') as… Decode Websocket Packet (Wireshark) Hardware and Software Networking by Chris.T … encoded & I can't figure out any way to decode them, I have no idea what they are even encoded… please help me with what is being used to encode/decode this so I can understand the data the host is… Re: decode string Programming Software Development by woooee …. import codecs s = b'B1=A\xF1adir+al+carrito\n'.decode('latin-1') with codecs.open('lat.txt', mode="wb… Re: decode string Programming Software Development by woooee Also, strings in Python 3 are unicode so enocde and decode are not necessary. Re: decode string Programming Software Development by snippsat …;Also, strings in Python 3 are unicode so enocde and decode are not necessary. That's only true if text is… Re: Decode Websocket Packet (Wireshark) Hardware and Software Networking by rubberman … is also how your browser knows what to do to decode it into a real web page. When your browser makes… Decode IP Header Programming Software Development by R3Slick … something like the beej's guide....So i need to decode the header from the following example. 0000000 141724 120662 000002… Re: Case & Decode Programming Databases by hfx642 Decode MUST be in a Select statement and will not work using directly as PL/SQL. A Case statement can be used directly in PL/SQL. Note: Case is an old statement that was dropped, BUT was brought back, so check your versions of DB. Re: Decode Programming Software Development by TrustyTony The response seems not alphanumeric, you must find out how the response should be interpreted and use struct module, for example. Re: Decode Programming Software Development by deepthought > FF FF FF FF 00 00 32 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Hi thanks for the answer but the type comes in, as an ascii string according to the manufacturer and should appear as above where 32 31 are it should replace with 41 41 or 4E 41 i have used a udptesttool from the internet and if i place the string in … Re: Decode Programming Software Development by deepthought Hi All, After trying various ideas i realised that when i looked at the message recieved it has a backslash "\" and "x" in the recieve so I transmitted the message with the same instead of spaces ie "FF FF FF FF" became "\xFF\xFF\xFF\xFF" and so on for all the bytes. This returned a correctly formatted … Re: Decode Programming Software Development by shers The file contains numbers and characters. There is a file with Fields denoting what these numbers and characters means. And all these files are text files. Thanks Re: Decode Programming Software Development by debasisdas If the file is in purely text format then fields does not make any sense. How to differentiate between data from one field to another ? If it is in delimited format, it will be easy to load it into DB and then use the data to create graphs. Re: Decode Programming Software Development by shers The field file looks like this: Reverse 1 21: MerchXSqueeze Boolean, Obsolete 22: MerchYMin Integer, min=0, max=9999, default=0 23: MerchYMax Integer, min=0, max=9999, default=0 24: MerchYUprights Integer, min=0, max=9999, default=0 25: MerchYCaps… Re: Decode Programming Software Development by shers Please find attached. Thanks Re: Decode Programming Software Development by debasisdas You need to crate tables in the DB as per the fields file and to load the data in the text file it needs to be properly formatted. First look at your data shows it is not properly formatted.