import

when importing multiple javascript files the javascript seems to break

I am trying to incorperate several different js files into one page. For some reason though whichever ones are first, seem to break. Here is the code I am using: <link href="inc/css/style.css" rel="stylesheet" type="text/css" /> <link rel="stylesheet" href="inc/css/lightbox.css" type="text/css" media="screen" /> <script type="text/javas...

Can't import Numpy in Python

I'm trying to write some code that uses Numpy. However, I can't import it: Python 2.6.2 (r262, May 15 2009, 10:22:27) [GCC 3.4.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import numpy Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named numpy ...

How can I pull in my BlogSpot page into a page on my web site

I have a blog on BlogSpot.com, and I have a domain based on my own name. I want to have a URL on my site (like http://www.mydomain.com/blog) that will then pull in the content from my blog page, but I want the URL in the address bar to stay on http://www.mydomain.com/blog, so that it does not look like you left my site. (I have a Window...

Can I remove any implicitly imported Java library?

Can I remove any implicitly imported Java library? It may not seem useful. But I think it may reduce some execution time! ...

problem in importing java class in jsp

i have created a java package in source packages in netbeans i have a jsp file in a web folder now i want to import this java package in jsp file but i am not getting my package name in import command ...

migrate postgreSQL data to mysql

I'm looking to grab a few bits of data from musicbrainz db to use in a mysql based app. I don't need the entire database, and have been looking at 'migrating' postgreSQL to mysql, which it seems lots of people have difficulty with. Wouldn't it be simplest to just dump the postgreSQL data into a comma-delimited text file, and then imp...

Is it possible to import an MKS Integrity repository into git?

The title says it all... Edit: Well, maybe it doesn't say it all. I need only the source tree and its history. I don't care for the requirements/issues stuff for now. I played a bit witth the command line to figure out if I could get a list of change packages for the trunk and some of the dev paths. I thought it should be possible to e...

pylint not recognizing some of the standard library

I'm using pylint + pydev, with python 2.6. I have a module with just this line of code from email import Message Now when I try to run this module it runs fine. But pylint reports an error: ID: E0611 No name 'Message' in module 'email' Although it exists... Any idea why? ...

Sending html email having JQuery scripts

Hello , I'm using PHP to send html emails. I've tried to import css files inside the email, and it works fine. <link href="http://www.mywebsite.com/css/mail_styles.css" type="text/css" rel="stylesheet" /> But i want the email to look stylish with some JQuery tricks, so i tried to import the JQuery library inside the email to a...

Easiest way to import CSV into SQl Server 2005

I have several files about 5k each of CSV data I need to import into SQL Server 2005. This used to be simple with DTS. I tried to use SSIS previously and it seemed to be about 10x as much effort and I eventually gave up. What would be the simplest way to import the csv data into sql server? Ideally, the tool or method would create th...

Import table data into database that expoted before

I am working on a feather that export some tables(~50) to a disk file and import the file back to database. Export is quite easy, serialize dataset to a file stream. But when importing: table structure need to be determined dynamically.What I am doing now : foreach table in dataset (compare table schemas that in db and imported datas...

GSP taglib import

I'm trying to use GSP outside grails and ran to my first problem. I cannot seem to do a taglib import in my GSPs. Given <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> When I run my app, I am getting a javax.servlet.ServletException: Creation of template failed: groovy.lang.GroovyRuntimeException: Failed to p...

Prevent python imports compiling

I have have a python file that imports a few frequently changed python files. I have had trouble with the imported files not recompiling when I change them. How do I stop them compiling? ...

How to get Excel to ignore apostrophe in beginning of cell

I'm writing a tool that syncs a simple database with Excel sheets. Each item in a table in the database corresponds to one row in the worksheet. I read the Excel into the tool using C# and the Excel interop com interface, and compare the items' values (i.e. one of the columns in the excel sheet) after the sync just to make sure that they...

How to import data from excel file to Teradata table using BTEQ scripts?

Hi gurus, I was able to do fill tables with data from Excel file or text files using GUI utility Teradata Sql assistant. But now I have a requirement to import data into teradata tables from excel file using a bteq script. I have been trying to do that using .IMPORT REPORT .IMPORT DATA .IMPORT VARTEXT and I have tried other things also,...

Java import confusion

What is the difference between: java.awt.*; and: java.awt.event.*; I find both in many programs. ...

Import DotNetNuke users using transactions with DNN classes

I'm developing a module in DNN 4.9 to import users. My problem is that I need transaction support but have to use DNN classes to import/create users. Out of the box the classes don't seem to support transactions. Anybody got experience with this or knows how to do that? I'm using the following object to create users: UserController.C...

Problem with python and __import__

Sorry for the generic title, will change it once I understand the source of my problem I have the following structure: foo/ foo/__init__.py foo/bar/ foo/bar/__init__.py foo/bar/some_module.py When I try to import some_module by doing so: from foo.bar import some_module it works like a charm. But this is no good for me, since I only...

Import emails ID from Gmail, Yahoo, Hotmail, etc. for "Tell a Friend" like feature in PHP

In a project I have to implement a way by which a user can import all contact information from the following: Gmail Yahoo Mail Hotmail Tweeter Rediff Mail Sify Mail Are there any freeware scripts in PHP for this? Are there any servers that may be providing such services? ...

SQL Server 2008 automated database drop, create and fill

For the database in my project I have a drop/create script for the database, a script for creating tables and SPs and an Access 2003 .mdb file with some exported values. To set up the database from scratch I can use my SQL management studio to first run one script, then the other and lastly manually run the sort of tedious import task. ...