Refers generally to the process of moving data from an external source into one's platform, program, or data set.
889
votes
24answers
395k views
How to include a JavaScript file in another JavaScript file?
Is there something similar to @import in CSS in JavaScript that allows you to include a JavaScript file inside another JavaScript file?
177
votes
7answers
45k views
What is the difference between #import and #include in Objective-C?
What are the differences between #import and #include in Objective-C and are there times where you should use one over the other? Is one deprecated?
I was reading the following tutorial: ...
112
votes
6answers
18k views
Quickly reading very large tables as dataframes in R
I have very large tables that I would like to load as a dataframes in R. read.table() has a lot of convenient features, but it seems like there is a lot of logic in the implementation that would slow ...
70
votes
8answers
11k views
Why is using a wild card with a Java import statement bad?
It is much more convenient and cleaner to use a single statement like
import java.awt.*;
than to import a bunch of individual classes
import java.awt.Panel;
import java.awt.Graphics;
import ...
57
votes
13answers
32k views
CSV File Imports in .Net [closed]
I realize this is a newbie question, but I'm looking for a simple solution - it seems like there should be one.
What's the best way to import a CSV file into a strongly-typed data structure? Again ...
54
votes
19answers
26k views
Dynamically load a JavaScript file (think of #include in C)
How can you reliably and dynamically load a JavaScript file? This will can be used to implement a module or component that when 'initialized' the component will dynamically load all needed JavaScript ...
51
votes
13answers
50k views
Stop Excel from automatically converting certain text values to dates
Does anyone happen to know if there is a token I can add to my csv for a certain field so Excel doesn't try to convert it to a date?
I'm trying to write a .csv file from my application and one of the ...
48
votes
1answer
61k views
Import / Export database with SQL Server Server Management Studio
I thought this would be trivial, but it isn't... I'm sure there is a simple way to do it but I can't manage to find it. Shame on me.
I want to import/export the database itself, the tables, the ...
47
votes
8answers
10k views
Any reason to clean up unused imports in Java, other than reducing clutter?
Is there any good reason to avoid unused import statements in Java? As I understand it, they are there for the compiler, so lots of unused imports won't have any impacts on the compiled code. Is it ...
47
votes
5answers
14k views
remove unused import from eclipse
Is there any way to automatic remove all unused import (signaled with a warning) of a project with Eclipse IDE?
41
votes
7answers
24k views
In Node.js, how do I “include” functions from my other files?
Let's say I have a file called app.js. Pretty simple:
var express = require('express');
var app = express.createServer();
app.set('views', __dirname + '/views');
app.set('view engine', 'ejs');
...
41
votes
7answers
8k views
Difference between @import and link in CSS
I'm learning some CSS to tweak my project template. I come to this problem and didn't find a clear answer on the web. Is there a difference between using @import or link in CSS?
Use of @import
...
40
votes
10answers
59k views
How do I export (and then import) a Subversion repo?
I'm just about wrapped up on a project where I was using a commercial SVN provider to store the source code. The web host the customer ultimately picked includes a repository as part of the hosting ...
36
votes
7answers
19k views
How do you run a 300mb+ MS SQL .sql file?
I use RedGate SQL data compare and generate a .sql file so i can run it on my local machine but the problem is the file is over 300mb and i can't do copy and paste because the clipboard won't able to ...
34
votes
2answers
9k views
Change Name of Import in Java, or import two classes with the same name
In Python you can do a:
from a import b as c
How would you do this in Java, as I have two imports that are clashing.