General :: Get Some Ebooks On Vector Graphics?
Jun 2, 2011From where can I get some Ebooks on Vector graphics. Also an Ebook on Operating systems
View 1 RepliesFrom where can I get some Ebooks on Vector graphics. Also an Ebook on Operating systems
View 1 RepliesI just found in kernel-2.6.35.3, in file arch/x86/kernel/irq.c:
unsigned int __irq_entry do_IRQ(struct pt_regs *regs)
{
struct pt_regs *old_regs = set_irq_regs(regs);
/* high bit used in ret_from_ code */
unsigned vector = ~regs->orig_ax;
[Code]...
Does any body know the relationship between the vector number and irq number?
so I have been messing around with the new Vector 7.0 alpha and wanted to install the nvidia driver and see if it would work. my video card and cpu are as follows
Code:
root:# lshw
PCI (sysfs)
vector.linux.net
description: Desktop Computer
width: 32 bits
[Code].....
I am trying to create a script that creates a vector and displays it. I used the command inivec but it didn't work.
[code]...
How do I make it so the terminal executes mi script to create a vector. I know MV is the name and the output should be aa aa aa, but nothing?
I am trying to install NS-2.1b9a in Fedora 8.0. I have already installed gcc-3.3 and made new link to the newly installed gcc. I used patch made for NS-2.1b9a (found in [URL]...-8-ubuntu.html) to install in Fedora 8.0. Now, when I run ./install I get follwoing error.
[Code]..
My uncle is a spiritual person and has a lot of ebooks, documents, web pages saved and put into a lot of folders. The collection has grown very huge and it has become impossible and cumbersome to keep track of the collection and manage the files and folders. ?
View 2 Replies View RelatedI'm trying to use kchmviewer to look at a few eBooks but its rendering the pages incorrectly. Black text on black background. I heard that kchmviewer is the only chmviewer with a decent GUI. Does anyone have any alternatives?
View 3 Replies View RelatedI have a Gigabyte GA-MA74GM-S2 motherboard with integrated graphics that shows up on lspci as an ATI Radeon 2100. I also bought a PCI-Express Nvidia graphics card so I could use the VDPAU feature on Linux (plays H.264 in hardware). The BIOS has three settings about which display to initialize first:
Integrated graphics
PCI graphics
PCI-Express graphics (PEG)
I set the BIOS on PEG, but
I cannot get anything, not even a splash screen or POST messages, to emerge from the PCI-Express graphics card. (I'm using a DVI connector; the card also has an HDMI output.)I cannot get the kernel lspci to see the graphics card; the only VGA controller it acknowledges is the integrated one.Running dmidecode acknowledges the existence of an x16 PCI Express slot, and it says
Current usage: Unknown
There is an additional BIOS setting called "Internal Graphics Mode" which is normally set to "Auto" which means it is supposed to prefer a PCI Express VGA card. I set it to "Disabled" which now means I'm getting no output at all. I will soon be learning how to do a BIOS reset!
Other information: The PCI-E card is a MSI N210-MD512H GeForce 210. This is a fanless card. Although there are no fans to see turning, the heat sink on the PCI-E card is definitely getting hot, so the card is getting some sort of power.It gets all its power from the PCI-E slot; there is no external power connector.The BIOS is an AMI Award BIOS.how can I make the PCI Express graphics card visible to Ubuntu?
upon adding the installed VL on the existing LILO.. (btw i have not installed its LILO on the installation setup) since i know that i will just add it to the "existing" LILO the error above arises upon doing the lilo run command.$adding Vector6.0 etc.FATAL : Boot sector of /dev/hdc13 doesn't have a boot signature.i have tagged the /dev/hdc13 bootable via CFDISK. but same problem arises..
View 8 Replies View RelatedI am trying to compile the gtk+/gnome project called "Gnome-Vector-Network-Analyzer" which i got it from link : [URL]
In order to install it when i compile it using ./configure , i am unable to "make" it as it throws an error that it can not find the makefile.
the output i get from my terminal is :
student@student-desktop:~/Downloads/Analyzer-0.1.2$ ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... no
checking for mawk... mawk
[Code].....
Total noob here and I am trying to figure out a way to "Check out" eBooks from the online Marmot library.
- Laptop with Ubuntu solely.
- Calibre installed
This post [URl].. by No Bugs! is what has me hoping. Can I install Android: [URL].. Then install the Android version of Overdrive: [URL]..
To get books from: [URL].. with my library card. And install those books on to an eReader (probably Sony505) via Calibre? Not trying to steal the books or illegal download I just want the same "check out" capabilities as the rest of the computing public.
I'm not really a C++ noob at all, but I am a little rusty at the moment. Still, I CANNOT figure out what is wrong with the following code. I'm using Visual Studio 2010.
Code: #include <iostream>
#include <fstream>
#include <vector>
#include <string>
[Code]....
I THINK I got all of the pertinent code. Anyway, it fails at the *** line. I CANNOT figure out why. If I modify it to be linein.size()-30, it STILL gives me an error. That makes zero sense.
i need to implement a Set class(like in stl) using a vector.Here is my code that doesnt work corectly:
Code:
#include <iostream>
#include <vector>
template<class T>
class Set
{
[Code]....
is there any problem that might rise by by having a vector as a member of struct in c++ as follows.ex.
struct A
{
int a;
[code]...
I am trying to simulate a shell. So what I do is checking of having the parameters from standard input, suc as "/bin/ls -l /home/france/Documents", and then passing them to function execute, which at some point calls execvp(argv[0],argv)The problem is that I don't succeed in using these arguments, while if I call execvp(paramList[0],paramList) it works!!!! Where paramList is exactly what I would put on standard input, but defined statically.
Code:
#include<unistd.h>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
[code].....
How would I convert from a bitmap file to vector graphics?
I found this inkscape tutorial, but it only converts it into b&w vector graphics. Is it possible to do it preserving at least some of the original colours?
I have a vector of octets that needs to be converted to a std string. I'm currently doing it this way:
Code:
stringstream ss;
for (unsigned int i=0; i < data.size(); i++
{
ss << data[i];
}
string s_data = ss.str();
This works, but is there any better way to do it?
Is it not possible to declare a vector inside a C++ class ? Have a look at the following code:
Code:
#include <stdio.h>
#include <iostream>
#include <malloc.h> // malloc
#include <strings.h> // bzero
[code]....
I have two functions:
Quote:
void func1(std::string &s)
{
s.clear();
}
[code]....
Is there a way to create one template function for both vector and string that would clear them?
I was fiddling with some svg icons and I needed a slack svg logo: looking on the propaganda page, I spotted this jpg that looked like a nice and clean candidate. So I fired up inkscape and tried to manually trace a (manageable) svg version out of it. Then I thought that maybe an editable vector version of it can be useful to someone else and, as asked by Pat, I release it here under the GPL. [URL]. (gotta say I haven't looked around if any other logo svg has been posted before, but, clicking on the "Click Here to Find Similar Threads" found this funny one )
View 12 Replies View RelatedI am trying to make a simple vector test program, but i can't compile it. Here is the code:
Code:
import java.util.*;
class Vec {
public static void main(String args [ ]) {
[Code]....
I am in the process of reviving a legacy laptop using Vector Linux 6.0. Once past the x window issues associated with these old machines (and the SIS 630 chipset in general) the setup worked very well.
However, I have been unable to get the wired network working. Vector linux suggests eth0 is connected but I have no internet access in browsers or for slapt-get etc. The following is the process I have gone through so far (I am a convert to linux as of last month and networking isnt my forte so go easy!).
lspci output:
Code:
root:# lspci
00:00.0 Host bridge: Silicon Integrated Systems [SiS] 630 Host (rev 31)
00:00.1 IDE interface: Silicon Integrated Systems [SiS] 5513 [IDE] (rev d0)
00:01.0 ISA bridge: Silicon Integrated Systems [SiS] SiS85C503/5513 (LPC Bridge)
[Code]...
I have recently installed Octave on my desktop and I am very busy with RTFM ATM.However, this manual is huge and I could not find an answer to my problem. What I basically want to do is initialize a vector like
Code:
a=[]
for i 1:100
a = [ a i ]
endfor
Now my problem is that this will call the pager and I have to hit 'q' to get my prompt back. I know I can turn it off but the screen will still get cluttered with tons of output.Is there a way to initialize 'a' quietly without any screen output?
I'm making a multimedia library to speedup vector and matrix computation. But I'm getting a strange error, in this code
[Code]....
I'm trying to write some code that involves creating a function to return a vector iterator.I'm not sure what is wrong.
Code:
template <typename T> class VectorTemplate
{
[code]....
I have just installed Ubuntu (9.10) and noted that in order to successfully run the trial off the CD I had to test in "safe graphics" mode. I have an NVIDIA GEforce 6600 GT card - which was discovered by Ubuntu in the first few minutes of the trial and so I activated the recommended driver and continued to test. After a successful trial I installed Ubuntu (dual partition Ubuntu / Windows XP), however, it seems the install didn't activate the required driver (as part of the process) and so I'm unable to get into my newly-installed Ubuntu at all. All I get is a flashing tty screen asking for my username and password - however it's erratic and won't recognise what I type. So - I'm stuck in a catch-22 as there doesn't seems to be a safe graphics mode option via the start (GRUB?) menu list.
View 4 Replies View RelatedI have been trying to enable compiz on my fedora 14, but when i enable the desktop effects the graphics just crashes and fedora freezes. When i type lspci -nnk | grep VGA for the graphics card i get:
I made alot of research on how to get Intel graphics work on Fedora, but couldnt find any solution
Same problem I had with Fedora Core 12 and 13.
I'm running out of ideas (and of forum threads to try), so here is my problem: I want to create a web page using perl to configure a router. The router is going to be used to limit bandwidth to some IPs and also to block some IPs. I'm using Centos 5.3 which comes with httpd and suexec pre-installed. The command I want to use are "route add -host ..." and "tc filter ...", these commands can only be run as root.
[Code]...
I have a Packard Bell Imedia desktop with on-board ATI graphics. I also have a spare Nvidia PCI card. Is there a way I could use the Nvidia to run a second screen, if so how as the Nvidia and fglrx drivers seem to collide in a show stopping way!!I am running Kubuntu Intrepid, but have resorted to Gnome as KDE4 went spectacularly wrong on me.
View 5 Replies View RelatedDo Intel HD 3000 Graphics run out of the box on Linux? Or do I have to do some manual work to get it working? Does Intel develop open source drivers?
Are they faster than on Windows?
This would apply for any Linux distribution.