We've created the following Twitter handles for those of you who like your Oracle Linux and virtualization news in micro chunks
ORCL_Linux
ORCL_virtualize
If you have been following Java news, you are already aware of the fact that there has been a lot of investment in Java for ARM-based devices and servers over the last couple of years (news, more news, even more, and lots more). We have released Java ME Embedded binaries for ARM Cortex-M micro controllers, Java SE Embedded for ARM application…
CodePlex Daily Summary for Wednesday, February 23, 2011Popular ReleasesSQL Server CLR Function for Address Correction and Geocoding: Release 2.1: Adds support for the User Key argument in Process function calls.ClosedXML - The easy way to OpenXML: ClosedXML 0.45.2: New on this release: 1) Added data validation. See Data Validation 2)…
I've got a a8706 mp3 player. When I plug it in, it charges but doesn't mount. In XP mounting works perfectly fine. I'm using 11.10.
What should I do?
Thanks
lsusb:
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux…
CodePlex Daily Summary for Friday, February 25, 2011Popular ReleasesMono.Addins: Mono.Addins 0.6: The 0.6 release of Mono.Addins includes many improvements, bug fixes and new features: Add-in engine Add-in name and description can now be localized. There are new custom attributes for defining them, and can also be specified as xml…
CodePlex Daily Summary for Sunday, February 27, 2011Popular ReleasesVidCoder: 0.8.2: Updated auto-naming to handle seconds and frames ranges as well. Deprecated the {chapters} token for auto-naming in favor of {range}. Allowing file drag to preview window and enabling main window shortcut keys to work no matter what window is…
CodePlex Daily Summary for Saturday, February 26, 2011Popular ReleasesDirectQ: Release 1.8.7 Beta 2: Beta 2 release to fix some early reported problems with the original 1.8.7 Beta.Chiave File Encryption: Chiave 0.9.2: Release Notes Application for file encryption and decryption using 512 Bit rijndael encyrption algorithm with…
I'm a student, fresh into programming and loving it, from Java to C++ and down to C. I moved backwards to the barebones and thought to go further down to Assembly.
But, to my surprise, a lot of people said it's not as fast as C and there is no use. They suggested learning either how to program a kernel or writing a C…
So far everything including the BCM4321 card is working, however, the OEM ATI Radeon X300SE (RV370) is not recognized. When I go into system details the card comes up as unknown.
When I run lspci the card shows up as:
01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RV370 5B60 [Radeon X300…
As we draw closer to the first day of Oracle OpenWorld, starting in less than a week, we
continue to showcase some of our premier partners exhibiting in the Oracle
Linux Partner Pavilion ( Booth #1033). We have Independent
Hardware Vendors, Independent Software Vendors and Systems Integrators
that show the…
I have a Java class which uses Apache POI to generate reports in Excel.
When I run the Java class from my IDE or command prompt, I only see warning messages from LOG4J as below:
log4j:WARN No appenders could be found for logger (org.apache.commons.beanutils.converters.BooleanConverter).
log4j:WARN Please…
How can I write the regexp to match multiple words in random order?
For example, let's assume the following lines:
Dave Imma Car Pom Dive
Dive Dome Dare
Imma Car Ryan
Pyro Dave Imma Dive
Lunar Happy Dave
I want to search the string for the one matching "Dave" "Imma" and "Dive", expecting the 1st and…
I have a basic type system type mismatch problem:
I have a class with a method
def Create(nodeItem : NodeItem) = {p_nodeStart.addEndNode(nodeItem)}
where p_nodeStart is NodeCache
class NodeCache[END_T<:BaseNode] private(node: Node) extends BaseNode {
def addEndNode(endNode : END_T) =…
Hi all,
I have a table that contains sales transaction (~20 mil rows). Previously I used MSSQL and export it to an Excel pivot. Data refresh took 10-15 minutes but still do-able. However, after I migrated to MySQL (using XamppLite & ODBC), it took forever to refresh the data in the…
Hm... I'm trying to convert single line break into double line break, as in
This is a sentence.
This is another sentence.
into
This is a sentence.
This is another sentence.
Apparently this doesn't work ThisContent = ThisContent.replace(/(\n)/gm, "\n\n"); since it…
I am trying to return a php associative array to javascript array through ajaxRequest.responseText
Here's what I do.
First in php, I do this:
$encoded = json_encode($thisarray);
echo $encoded;
If I echo $encoded, I get {"a":"apple,arrow","b":"boy,bank","c":"cat,camp"}
Then…
I tried this
SELECT convert(datetime, '23/07/2009', 111)
but got this error
The conversion of a varchar data type to a datetime data type resulted in an out-of-range value.
However
SELECT convert(datetime, '07/23/2009', 111)
is OK though
How to fix the 1st one ?
I need a javascript to replace i into I. This should apply to cases such as
i'm good.
So am i.
He though i love him.
The standard ThisContent = ThisContent.replace("i", "I"); doesn't work because it replaces every i. I also thought of ThisContent = ThisContent.replace(" i ",…
If you put the aif code presented in onlisp in a package and try to use it in another you run in the problem that packagename:it is not external.
(in-package :packagename)
(defmacro aif (test-form then-form &optional else-form)
‘(let ((it ,test-form))
(if it…
The Devise authentication framework uses flash notices everywhere. This makes it easy to integrate with apps but it leads to poor user experience sometimes.
I am wondering what's an easy way to selectively turn off some of the Devise flash notices in my Rails 3 app.…
I have a SurfaceView and I want the Bitmap Logo inside it in the canvas to be movable
What I'm doing wrong ?
static float x, y;
Bitmap logo;
SurfaceView ss = (SurfaceView) findViewById(R.id.svSS);
logo = BitmapFactory.decodeResource(getResources(),…