cell

Where is GDB documentation specific to the Cell Linux environment?

Where can documentation be found for the features of GDB, and the debugging process, specific to debugging of Cell Linux programs mixing PPU and SPU code? ...

Accessing Excel Spreadsheet with C# occasionally returns blank value for some cells

Hi, I need to access an excel spreadsheet and insert the data from the spreadsheet into a SQL Database. However the Primary Keys are mixed, most are numeric and some are alpha-numeric. The problem I have is that when the numeric and alpha-numeric Keys are in the same spreadsheet the alpha-numeric cells return blank values, whereas all ...

Custom Phone Firmware

Hi, I am looking to develop a custom phone (consumer item) which people can purchase in the market. I am wondering whats the best way to go about it? Basically am looking for a cheap phone on which I can customize the firmware as per my requirements. Something like Android but the price should be cheaper like 100$. I dont mind using a c...

Using XPath: find link in cell 3 rows up

Hi Guys! I have multiple rows in a table, in one of which is a link I'd like to automatically click. For my starting point I have the last instance that a row contains the text "Test Question?": ID: 1416 Edit/Approve Ignore Email Name: Submitter Name Open N/A Location: Submitter Location ...

CSS column header with img - how to dock img/div to the right?

Howdy! I have an HTML table that I use as column headers to a grid view. Clicking on a column header triggers javascript that makes the grid view sort, and an icon showing that the column is sorted shows up next to the column text, similar to below: |---------------------------------------------------------------------------------| | ...

Cell Format Strings for Reporting Services/Dundas Charts

Reporting services use format strings to auto format cell data. For example "c2" formats a cell to be displayed as currency with a decimal precision of 2. Does anyone know where I'd find a comprehensive list off all the different formats available? ...

Find and Remove some text in Excel Worksheet with c#

Hi , i wanna find some text for example "Joe" and remove it from where it is in Excel Worksheet with C# ? ...

Yellow Dog Linux 6.1 and PS3 GameOS Versions?

I'm working on installing linux on a PS3 to do some development work and I've run across a bit of a snag. The current version of the firmware on my PS3 is 2.50. The Yellow Dog website specifically mentions that there are problems with this release. The official Yellow Dog install guide (PDF!) also mentions that I should update my PS3 to ...

pushing content to cell phones

I am working on a photo site and one of more active users (the jon skeet of the site ;) asked about pushing content to cell phones. The site is built on django, and I was wondering if anyone knows a good way of allowing users to download and store content (images) on their cell phones? As a side question... is it possible to accept paym...

libspe vs. libspe2? What's the difference?

I've been doing some experiments with the Cell processor in a PS3 that I have sitting around and I've run across an issue. It appears that there are two versions of the main SPE management library, libspe and libspe2. What is the difference between them? From what I can tell the main difference is that in libspe they rolled their own thr...

What does this error mean: "error: expected specifier-qualifier-list before 'type_name'"?

I'm a bit new to working with c/c++, so sorry if this is a dumb question. I've been working on the Cell processor and I'm trying to create a struct that will hold an spe_context_ptr_t, which will be used within the thread to launch an spe context and will also hold a pointer to something else that will be passed to the spu context from w...

Undefined reference to 'sqrt' from math.h on PS3 with YDL 6.1 and Cell SDK 3.1?

I have a PS3 that I've installed YDL 6.1 and SDK 3.1 on and everything seems to be working fine, as I can compile and run the examples. However, I've run into some problems with writing programs of my own. I've created a small test case that seems to pinpoint the cause of the failure. I have the following code: // mathtest.c #include <s...

ASP: How to import data from a merged cell in Excel?

I need to import data from an excel file, but some field is a merged cell. How can I determine if a field is merged or not, and how many cells are merged together in that field? My code is like this: Dim Conn, DBPath ,Rs Set Conn = Server.CreateObject("ADODB.Connection") DBPath = "Driver={Microsoft Excel Driver (*.xls)}; DBQ=" & Ser...

find total of grid view

hi how to find a total in grid view cell value. consider in grid view there are 3 rows are there named as row1 , row2 , and row3. here i want to find a total of row1 contains 7 colomns named as m1,m2,m3,m4,m5,m6,m7 find the total of these colomns and display in to textbox thanks. ...

Is IBM's Cell multi-core?

Is it correct to say that IBM's cell is a multi-core architecture? I have to give a presentation on "Multi-core architectures" and was wondering if I could focus on the Cell processor. ...

CSS Cell Margin

In my HTML document, I have a table with two columns and multiple rows. How can I increase the space in between the first and second column with css? I've tried applying "margin-right: 10px;" to each of the cells on the left hand side, but to no effect. ...

Know of any cool projects done with Parallel Programming and/or the Cell processor?

I've been doing some messing around with the cell processor on the playstation 3 and, having made a few small programs (finding distances between every point in two lists of points ,mandelbrot set generator) I'm looking for something a little bigger to expand my knowledge of the platform. I figured I'd look at what contests for the cell ...

How to Cross Compile for Cell Linux on the PS3 from Windows?

How can a cross compilation setup be achieved to allow compiling Cell Linux programs on a Windows PC using the cygwin toolchain? The cygwin tools provide a GNU compiler to use in building the cross compiler, and associated tools for the build process e.g. rpm, cpio, make, flex, bison and so on. I am moderately confident this is possible...

How to insert line break within OPENXML spreadsheet cell ?

Hi, im currently using something like this to insert inline string in a cell : new Cell() { CellReference = "E2", StyleIndex = (UInt32Value)4U, DataType = CellValues.InlineString, InlineString = new InlineString(new Text( "some text")) } But \n doesn't work to insert line break, how can i do this ? Thanks Th...

'comparison is always true due to limited range of data type' warning in C?

I have the following code //Point.h #define WIDTH 8 #define HEIGHT 8 typedef struct Point { char x; char y; } Point; //Board.c #include <stdbool.h> // Some other functions that we don't care about... bool inBounds(Point * p) { return p->x >= 0 && p->x <= WIDTH && p->y >= 0 && p->y <= HEIGHT; } When I compile th...