Hello,
I want to search a text_word from raw text using jQuery.
$("#s:regex('text_word')").each(function() {
$(this).appendTo('#s1');
});
raw text here
Thanks
Jean
Hello. Since my pc's fan is very loud, I'd like to make myself a program to "shut it up" when it's not required to be running at full speed. I want to make it with python, so is there any module that can detect the temperature and/or set the fan speed?
Hello!
I have a local phpMyAdmin (installed via apt-get) adn I'm tired of entering login and password every time I try to open it. Database contains no sensitive info, just test tables, and is visible only from 127.0.0.1
I want phpMyAdmin already be logged in as root user with password 1234 (for example) when I open it. How do I do that?
P.S. Saving password in a browser is not what I want.
How can you read data, i.e. convert simple text strings to voice (speech) in Android?
Is there an API where I can do something like this:
TextToVoice speaker = new TextToVoice();
speaker.Speak("Hello World");
Hello, I want to compare a column value to the current date, using HQL.
I tried
IQuery someQuery = session.CreateQuery(String.Format(
@"Select s.Id
From InventoryProductStateItem s
where s.ValidFrom < current_date()"));
This throws the exception "Incorrect syntax near keyword current_date()"
Can someone help me?
Hello, I want to follow ZK javascript code to obtain XML results. In the website when a country selected, another selectbox for states is populated by using ZK and i tried to find the actual address such as http://cc.com/getState?countryID=46 but I've lost within the ZK. Is there a way to reach the actual URL? Thanks.
Hello,
Anyone have idea about how to bind Boolean in sqlite with objective - c.
i know how to bind int and string but i don't know about boolean value.
sqlite3_bind_int(addStmt, 1, id);
sqlite3_bind_text(addStmt,3 ,[message UTF8String], -1, SQLITE_TRANSIENT);
but how can i bind boolean value.
Please help me.
Thanks you
Hello,
I'm looking to create a hash with sha256 using openssl and C++. I know there's a similar post about this here:
http://stackoverflow.com/questions/918676/generate-sha-hash-in-openssl, but I'm looking to specifically create sha256.
UPDATE:
Seems to be a problem witht he include paths. It can't find any openssl functions even though I included
#include "openssl/sha.h"
and I included the paths in my build
-I/opt/ssl/include/ -L/opt/ssl/lib/ -lcrypto
Hello
We are using sqllite056 jar in our code. While inserting into database in batch we are getting exception on line when we going to commit.
Lines of Code
<object of Connection> .commit();
<object of Connection>.setAutoCommit(true);
Exception
java.sql.SQLException: database locked
Hello,
I'm running into a scenario where at random times I am getting "Access Denied" when executing javascript. It is not repeatable and occurs in random places of my application. There is not indication of what is causing it in the logs and I'm really at a loss on this. It seems to be UI problem only. However, there is no reason it should appear as I do not have any such permission checking to could be getting triggered.
Thanks in advance
Hello. There are a lot of ways to store site preferences in database. But what if I need to manage datatypes. So some preferences will be boolean, others strings, others integers.
How can I organize such store?
Hello,
Maybe someone know how to write your own framework, best practices, maybe any books or samples. I think that writing own framework gives one better understanding of how it all works, thanks for help
Hello there, I would appreciate it if anyone can answer my question.
Identify the implicit cast and explicit cast?
int a = 2, b = 3;
float f = 2.5;
double d = -1.2;
int int_result;
float real_result;
Hello All...
I have gone through with the tutorial documents for blackberry development.
At every place they have showed the features with eclipse plugins.
So, I would like to know that which are the tools I need to download If I want to start development using NetBeans 6.8 (or 6.5) ? And what is the procedure to do so ?
Thanks in advance...
Hello All,
I have been building index on a 200 million row table for almost 14 hours. Due to resource over-consumption on the machine (because of a separate incident), the machine cashed. Clearly, I want to avoid another 14 hours to re-construct the index. Is there a way that I can resume the construction of index from the point (or slightly back) where the machine crashed? I can see the temporary files created.
Thanks
Hello, here's my question:
My company is always having problems with software not working because "run-times" or missing. I hear people say this a lot (you need the 32-bit run times, Microsoft run-times, etc etc).
What exactly is being referred to? DLL files? Something different? Can anyone please clarify?
Thanks!
RKL
Hello!
How to get FontMetrics without use Graphics ? I want to get FontMetrics in constructor, now I do this way:
BufferedImage bi = new BufferedImage(5, 5, BufferedImage.TYPE_INT_RGB);
FontMetrics fm = bi.getGraphics().getFontMetrics(font);
int width = fm.stringWidth(pattern);
int height = fm.getHeight();
Hello.
I need to create a prototype of ui.
I'm googling, and find "Axure RP", but it very expensive for us company.
Other way for creating UI prototype is tools like Qt Designer, but it doesn't provide some cool functions and sometimes demand bit programming skills.
Do you know freeware tool for my task for man without any programming skills?
Thanks.
Ps. excuse my english ;)
Hello
in a form with a textarea with id "ckeditor_input"
$("#ckeditor_input").ckeditor();
$("#ckeditor_input").html(); // can get the value
("#ckeditor_input").click/blur/keydown/keypressed(
function(){
alert("OK");
}
); //doesn't work!
the problem is ckeditor! If I don't start an instance of ckeditor on the textarea all events work fine! What is the right way to get events on a ckeditor instance?
Thank you
Hello,
I want to be sure that user uploaded files are real videos or pictures, but not just a piece of text renamed to textfile.jpg. What are the ways to ensure?
I see the only way: detect type of file by it's extension and then, depending on file type, try to get information about it (by Imagemagick or ffmpeg).
Is there any other ways?
Thank you.
hello,I'm a newbie on iphone develop,I get the example of GLIImageProcessing,and I want to do same image processing ,and now I want to know how to transform GLIImageProcessing example result like brightness to a UIImage,thank you.
Hello everyone,
Please help me with this insanity:
http://imageoneads.com/zenliver/
My menu bar worked fine & I accidently deleted or moved one of class or ID. Now it disappeared. All browsers Wont display the menu, except Firefox for Mac. This drives me nut....Cant believe I have to start over if I can't figure it out....Please help....Thanks ahead
tran006
Hello, I am confused about the two terms. What is the difference in browser-side javascript programming? I use dojo as framework. And there is only the concept of domNode. But browser debugger always told me something as htmlelement. Are they just the same thing with different names, or with some subtle differences?
Thanks.
hello folks,
i am looking to develop a new plugin for tinyMCE rich text Editor in umbraco.. i refered this link..
click here .. but the plugin is not showing up in richtext editor as expected..Am i missing any other settings?