Tagged Questions
The gibberish tag has no wiki summary.
3
votes
3answers
358 views
Receiving some nonsensical spam - what is its purpose? [closed]
Technically this might not be classed as a programming question, since I have already implemented a solution. But it's an interesting issue in the tech field nonetheless.
Anyway... I set up a basic ...
2
votes
4answers
84 views
PHP adding gibberish to strings passed into mysql_query
in PHP, I'm using mysql_query($querystring) to insert some information into a table.
However, when I look at the MySQL Query Logs, it shows that gibberish is getting added:
MySQL Log:
INSERT INTO ...
2
votes
1answer
89 views
firefox addon development and Unicode
So I started developing my firefox addon.
Most of the work is performed by a referenced javascript file.
Problem is that when I edit some of the html elements on the page and say, set their text it's ...
2
votes
4answers
337 views
Can you explain Microsoft .NET RIA services to me?
Ive read about it and to be honest it all seems like a bunch of gibberish to me.
I don't want to read all about how it enhances your experience and you can use it to built this and that.
Can you ...
1
vote
1answer
130 views
Powershell Get-ItemProperty is returning 1 extra character to registry values
Contents of test.ps1:
Set-Location HKLM:
$RegistryKeys = (Get-ChildItem HKLM:\SYSTEM\CurrentControlSet\services\VMSMP\Parameters\NicList)
foreach ($Key in $RegistryKeys){
if ((Get-ItemProperty ...
1
vote
2answers
1k views
PHP UTF8 mail gets garbled on iPhone mail app
I am using php internal mail function to send mail, I wrapped it up in a function which UTF8 the process, I found it online.
it works, I sent the email in the code to my GMAIL and to my EXCHANGE ...
1
vote
2answers
118 views
Trying to read from a URL(in Java) produces gibberish on certain occaisions
I'm trying to read from a URL, and then print the result.
BufferedReader in = new BufferedReader(
new InputStreamReader(new URL("http://somesite.com/").openStream(), "UTF-8"));
String s = "";
...
1
vote
1answer
712 views
Displaying hebrew characters with SQL collation SQL_Latin1_General_CP850_BIN2
We have a remote database that is out of our control.
The database contains Hebrew characters. It's collation is: SQL_Latin1_General_CP850_BIN2
When we open the SQL management studio - we see ...
0
votes
0answers
721 views
Publishing non English text via “http://www.facebook.com/dialog/feed” gives gibberish letters in IE8 only
Publishing non English text via "http://www.facebook.com/dialog/feed" gives gibberish letters In IE8. Works great in Firefox, Chrome,Safari...can anyone confirm ?
0
votes
1answer
418 views
Getting as3crypto to work with ruby (Gibberish/EzCrypto)
I'm trying to get as3crypto to play nice with either Gibberish or EzCrypto in AES-128 mode.
No matter what combination of settings I use I simply cannot get one to decrypt the other, and usually get a ...
0
votes
1answer
162 views
dotConnect for Oracle Hebrew problem - gibberish - getting ¿¿¿¿
I'm trying to create EF through Devart dotConnect with an Oracle database that includes Hebrew chars.
In regedit:
NLS_LANG = HEBREW_ISRAEL.IW8ISO8859P8
In web.config:
<system.web>
...
0
votes
6answers
176 views
C++: Printing/assigning simple array prints gibberish
My code basically is to list ASCII codepoints of a string that is input, my following code is simple, here:
#include <iostream>
#include <string.h>
using namespace std;
int main() {
...
0
votes
2answers
328 views
Encoding issue with form and HTML Purifier / MySQL
Driving me nuts...
Page with form is encoded as Unicode (UTF-8) via:
<meta http-equiv="content-type" content="text/html; charset=utf-8">
entry column in database is text utf8_unicode_ci
...