Questions tagged [external]

This tag refers to something that is outside of a particular system. In other words, it is something that is not a part of the main system and therefore can be considered "extra".

A software system has certain components making up the system and all the rest of the world is external to that system. Often systems allow to access manipulate things outside the system with or using the system. Those things are attributed as external.

Typical examples are

  • databases accessing external data, e.g. flat files for importing the data into the database or for exporting data.

  • external storage like hard drives that are not build into a computer but added via some interface technology

  • when accessing some script not part of the current html page, that script is external

3400 questions
30
votes
2 answers

How to call execl() in C with the proper arguments?

i have vlc (program to reproduce videos) if i type in a shell: /home/vlc "/home/my movies/the movie i want to see.mkv" it opens up an reproduces the movie. however, when I run the following program: #include int main(void) { …
Matias Morant
  • 513
  • 2
  • 5
  • 12
29
votes
4 answers

How to configure additional classpath in SpringBoot?

I want to make a standalone web application. I have some problems with SpringBoot. My application is one jar file from SpringBoot. But my application was usually needed jdbc driver jar. I want to exclude the jdbc driver jar for my application and…
fightingmamoru
  • 416
  • 1
  • 6
  • 11
29
votes
3 answers

When creating an external table in hive can I point the location to specific files in a directory?

I have defined a table as such: create external table PageViews (Userid string, Page_View string) partitioned by (ds string) row format as delimited fields terminated by ',' stored as textfile location '/user/data'; I do not want all the files in…
George TeVelde
  • 1,561
  • 2
  • 12
  • 13
28
votes
4 answers

Qt Execute external program

I want to start an external program out of my QT-Programm. The only working solution was: system("start explorer.exe"); But it is only working for windows and starts a command line for a moment. Next thing I tried was: QProcess process; QString…
btzs
  • 1,048
  • 3
  • 14
  • 17
27
votes
3 answers

How to tackle redirect to an external url in NextJS?

I have in place my next.config.js file with regular redirect rules, all within the same domain and all works fine. But in a specific case, I need to redirect the request from a certain URL (mydomain.com/abc) to a different domain. i.e…
Gilson Viana
  • 723
  • 1
  • 8
  • 13
26
votes
4 answers

Javascript and WebGL, external scripts

Just curious; How do I place my webgl shaders, in an external file? Currently I'm having;