source

How can you access the base filename of a file you are sourcing in Bash

I am sourcing a file in a bash terminal that needs to export some environment varibles. Example: source linux_x86.env the env file looks kinda like this: export ARCH=/home/user/project/linux_x86 I have a bunch of different architectures to compile for and I want be able to do something like this: export ARCH=/home/user/project/...

WPF ComboBox update source question

I have a ComboBox with country codes and phone numbers (+43.., ..) The ItemsSource is a list of Country objects with many properties (Code is one of them.) The DataContext in which the ComboBox is located is an object with the PhoneNumber property. When user selects a country in the list, I want to update the source PhoneNumber Property...

How to check and access javadoc/source for Maven Artifacts

I am writing a Maven plugin which needs to check if a certain project dependency has javadocs and sources available... and if so, would like to download them and archive them on a server. I cannot find out how to check if the javadocs and source are available or how to access them if they are. Any help would be appreciated. ...

Source shell script into environment within a ruby script

If I'm writing a shell script and I want to "source" some external (c-)shell scripts to set up my environment, I can just make calls like this: source /file/I/want/to/source.csh I want to replace a shell script that does this with a ruby script. Can I do a similar thing in the ruby script? Update: Just tried it with test_script.csh: ...

Compile C++ over FTP

Hello! I would like to know if I can use g++ to compile C++ source files stored on an FTP server? Can this be done? Thanks NOTE: The FTP server is within the local network ...

WPF image control source

im trying to recreate a very simple example of a C# project i WPF, its a simple image viewer.. from the sam's teach yourself C#, ive managed to get the open file dialog to open, but how do i set the image path to the image.source control in WPF? private void SearchBtn_Click(object sender, RoutedEventArgs e) { Microsoft.Win32.OpenFi...

How to execute the output of a command within the current shell?

Hi, I'm well aware of the source (aka .) utility, which will take the contents from a file and execute them within the current shell. Now, I'm transforming some text into shell commands, and then running them, as follows: $ ls | sed ... | sh ls is just a random example, the original text can be anything. sed too, just an example for...

Why is Microsoft source code so complex?

I have been looking at the source code for Microsoft .NET Libraries such as System.Web...... Whenever I look inside the code, I see flags, events, a whole ecosystem of rather complicated code which seems like overkill to do a pretty simple thing. It's filled with absolutely everything. I'm not sure I saw a simple piece of code inside ...

how to find a dnd.source

Some design specs require for the avatar to be under the mouse cursor when the item is dropped. to get around this i can easily check the drop position to see if the item was dropped within a source andprogramatically insert the node(s). My problem is trying to get a reference of type dnd.Source for the source that was dropped into. H...

J2EE deploy ear with source code

What are the (dis)advantages of deploying ear with source file? Is that the right way to deliver/deploy code ? Apart from making the ear bulky does this have any advantage? ...

Running SH script with sudo for PHPdoc

How can you run the following script in generating docs by PHPdoc? #1 sudo -code sudo source makedoc.sh I get no command source #2 without sudo The problem is that sudo does not have the command source. I tried to fix the problem unsuccessfully by changing the persmissions of ~/phpdoc/phpdoc to 777 and then running source makedo...

Which open source licenses allow distribution of binary executable/library without a copyright notice?

Let's say write a C library, and I want all versions of the source to carry my copyright/license, but I want users of the library distributing executable code, static or dynamically linked library to be a able to do so without restriction (including making reference to my particular license). Does such an open source license exist? Tha...

how do wild character % work in makefile rules

I have a makefile. I need to build a set of targets under C:/bin/ from the source files under src1 and src2. let them be required in the order say ${DEST_DIR}/a.o ${DEST_DIR}/b.o ${DEST_DIR}/c.o ${DEST_DIR}/d.o in some part of makefile DEST_DIR = C:/bin SRC_DIR1 = C:/src1 SRC_DIR2 = C:/src2 and i've the rules for them as follow...

How to source file.R without output

Is it possible to source a file without printing all the charts etc (already tried with echo=F)? In my case I call the png("filename%03d.png") device early in the script. It is not to big a hassle to comment this out - but all the charts do take a lot of time to render. (the specific file I am working with now uses base-graphics - but ...

Including source files in C

So I get the point of headers vs source files. What I don't get is how the compiler knows to compile all the source files. Example: example.h #ifndef EXAMPLE_H #define EXAMPLE_H int example(int argument); // prototype #endif example.c #include "example.h" int example(int argument) { return argument + 1; // implementation ...

Visual Source Safe adding my local directory structure when project is checked in

Hello, I have a VB.net 2005 application in My Documents/Visual Studio.net 2005/Projects folder. When I Add the project to source safe it is adding it in a wierd folder structure like C:\documents and settings\users\xxxxx\Mydocuments...... How do I get it checked in with just projectname.root/project/...... ...

Is my source/development file hierarchy a good one?

I'm looking to organise my source code file hierarchy. I'm a C# (.NET) developer and come from an only Windows background (no Linux/Mac). I plan on using Subversion for source control. This is what I've come up with: (from subversion view) Root of Subversion Repository CompanyName /ProjectCodeName 1---/Branches 1---/Ta...

Cant find any asp.net open source project for creating HRMS web application.

Is there any easy to understand open source asp.net project related to HRMS ? ...

view the html source of an xml document transformed by xsl

Hi guys, This is a fairly simple case. I have an xml document, linked to an xsl stylesheet, that can be viewed in a web browser. Now that the output is not really what I expected, so I want to look at the (output) html code to see what happened. However, when I say "view source", the browsers just throw the original xml file at me. Pleas...

Do any sites using MVC frameworks ( php, python ) post their full source through a VC browser?

I recall Django had its source online awhile ago, I'm just looking to study how a fully functional site operates - I don't mind looking at any type of Python/PHP based MVC framework such as Pylons, Django, Zend, or Kohana. ...