Tagged Questions
The use tag has no wiki summary.
12
votes
6answers
5k views
How do I 'use' a Perl module in a directory not in @INC?
I have a module in the parent directory of my script and I would like to 'use' it.
If I do
use '../Foo.pm';
I get syntax errors.
I tried to do:
push @INC, '..';
use EPMS;
and .. apparently ...
9
votes
4answers
2k views
try to use Module in Perl and print message if module not available
I wanted to be able to do this in Perl (the code below is Python lol)
try:
import Module
except:
print "You need module Module to run this program."
Does anyone have any idea how to?
7
votes
3answers
89 views
Use database inside a stored procedure
I need to make a stored procedure which creates a user in more than one table. Something like this:
USE [database1]
CREATE USER [userLogin] FOR LOGIN [userLogin]
USE [database2]
CREATE USER ...
6
votes
5answers
182 views
Should I change my utilities.pl to a utilities.pm module?
In our product we have a big utilities file that we require (with do) at the beginning of a lot of our files. Is there a reason not to turn this into a module? For example, instead of doing this:
...
5
votes
3answers
97 views
Program wasn't in use for 2 minutes
I wan't to popup a specific form when the user didn't use the program for 2 minutes,
let's say.
Means: When the application run, and the user didn't press any key / any button / didn't move the ...
5
votes
5answers
2k views
What's the purpose in hashing information?
After being taught how to create a hash table in class, I don't understand when hashing data would be useful. It seems to me that all hashing does is storing information in semi-random positions in ...
4
votes
7answers
2k views
Use Case Diagrams - Are arrows absolutely necessary?
Is it absolutely necessary to use "arrows" to show association between an actor and a use case in a use case diagram?
I recently had to draw one for my Software Engineering assignment. But after ...
3
votes
5answers
279 views
What happens in these Perl use lines?
I don't understand what happens here :
use PAR { file => 'foo.par', fallback => 1 };
I think that's an anonymous hash. How is a module using it from the use line? Can you shed some light?
...
3
votes
6answers
4k views
How do I inherit subroutines in Perl with 'use base'?
How do I apply 'use base' in Perl to inherit subs from some base module?
I'm used to C++ inheritance mechanics, and all the sites I googled for this caused more confusion then help. I want to do ...
2
votes
2answers
60 views
Function like USE to point to a SQL database on a different server?
In SQL Server, you can apply the use function to point a query to another database. For example:
USE databasename
GO;
Is there a function that allows you to point to a different database server and ...
2
votes
3answers
268 views
How to reference external svg file in svg correctly?
Hello I am working on an svg/js map, which consists of many little svg graphics (City districts). I put every graphic into an own file so that my main svg file will still be maintainable and not ...
2
votes
1answer
82 views
PHP how to import all classes from another namespace
I'm implementing namespaces in my existing project. I found that you can use the keyword 'use' to import classes into your namespace. My question is, can I also import all the classes from 1 namespace ...
2
votes
2answers
100 views
php 5.2 new and use keyword path problem
Im on a host company that uses php 5.2 , some of the libraries i use are written in 5.3 and there are certain incompatibilities between the code.
First of all what is the alternative to :
use ...
2
votes
3answers
95 views
How to access a function defined in a previous YUI.use() call
[I'm a YUI newbie]
I'm writing a Chrome extension that needs to change the contents of a web page created using the YUI3 framework.
I've identified that the extension, which injects javascript that ...
2
votes
2answers
184 views
WPF: How can I use a picture while I'm showing it?
I'm trying to do so but the program throws this exception:
An unhandled exception of type 'System.IO.IOException' occurred in mscorlib.dll
Additional information: The process cannot access the file ...
2
votes
2answers
137 views
When should I use `use`?
As long as I can remember, whenever I use a module I include a use line at the beginning of my code.
Recently I was writing two Moose object modules that use each other. Look at this over-simplistic ...
2
votes
2answers
147 views
What's a good way to handle development/production libs paths with Perl?
With Perl, what is an easy way to handle different development versus production libs paths? I want to use my local box path for testing, but when I launch I want it to automatically point to the ...
1
vote
1answer
36 views
How can I add a <use> to an inline SVG using jQuery (or plain JavaScript if needed)?
I have an inline SVG with in an HTML5 document, and would like to add with jQuery (or plain JavaScript if needed).
I know how to add a rect, circle or other form, but I'm not able yet to reuse an ...
1
vote
3answers
74 views
HTML: What exactly is <span>'s purpose?
I've read many explanations of what the actual purpose of the < span > tag is, and I've tried to incorperate those explanations into real applications but have failed every time.
One person told ...
1
vote
1answer
119 views
How can i import ImageMagic libraries in Android?
i am using image magic in my project, i get it from this https://github.com/lilac/Android-ImageMagick , after editing some code from this. when i compile this i am getting this error
12-06 ...
1
vote
1answer
116 views
How i can use a function in sikuli which is defined in an another sikuliscript?
i try to use Sikuli. I will have 2 Files. One of them will be the "main" file and one of then is for functions.
The main-file i have called "test" and the file for die Function i have called ...
1
vote
3answers
53 views
create database and use statements in one script
Consider the following script:
DECLARE @path varchar(MAX)
DECLARE @script varchar(MAX)
SET @path = (SELECT physical_name FROM sys.master_files where name = 'master');
SET @path = REPLACE(@path, ...
1
vote
0answers
28 views
Hide paragraph <p> on checked 'Use Billing Address'
In my Spree application, if I check "Use Billing Address" checkbox, the Shipping address gets hidden by the checkout.js. I want to display more text inside but I could not make it toggle hide with the ...
1
vote
1answer
54 views
Javascript: besides “use strict”, which other “use” directives are there?
besides "use strict", which other "use" directives are there?
apparently my short question doesn't meet stackoverflow's quality standards so I have to add this sentence and more to allow me to post ...
1
vote
2answers
61 views
Why LWP::UserAgent is imported by require LWP::UserAgent instead of use LWP::UserAgent?
I'm pretty new to this language but I've been using use to import a specific module before,
why LWP::UserAgent uses require to do the job as from perldoc LWP::UserAgent:
require LWP::UserAgent;
1
vote
3answers
111 views
scope of 'use' keyword using F#
Assume the following code:
let fn () =
use a = new System.IO.StreamWriter ("d:\\test.txt")
a
let b = fn ()
b.Write "t"
It gives following error: ObjectDisposedException: Cannot write to a ...
1
vote
3answers
103 views
! meaning in c++ (following context)
I know what != is when if(x!=value){...}, but what does it mean in the following context:
if (! ReadConsoleInput(
hStdin, // input buffer handle
irInBuf, // ...
1
vote
0answers
59 views
Tree performance and use comparison
While studying for a test I was wondering if I could collect all the information into one place. One the test we will need to be able to describe the performance of specific trees (AVL, Red-Black, AA, ...
1
vote
0answers
262 views
How to force write/delete of a file remotely opened by another user?
I'm writing a process that produces some reports in a file share, which other users can open for reading (csv files, for example). If one has a report opened (in excel) when i'm appending contents to ...
1
vote
1answer
35 views
Checking for references
I have an external .js script. I want it to do one thing if the html file using it is referencing jQuery, and do another if it doesn't. is this possible? Can I reference jQuery from my script to ...
1
vote
1answer
481 views
illegal use of this type as expression (error) C++
The most recent file I've added to my VC++ 2010 project is suddenly giving me errors about the data types.
After doing a bit of searching, this error seems to be common in C code but I'm using C++ ...
1
vote
1answer
325 views
Configure GWT compiler to use less memory?
I am trying to build a large Maven-GWT project on a virtual host, which has a limit amount of RAM and cannot use swap space.
The GWT compile stage (where it computes permutations) uses a massive ...
1
vote
2answers
53 views
Change sql server query so you don't have to specify all levels to the database
What i want to do is instead of writing Select something From [Parent].[dbo].[Tabel], i want to declare the first 2 before i write the query, so when i have to use several selects, i don't have to ...
1
vote
2answers
957 views
How to get rid of 'Name … used only once: possible typo at …'?
use YAML::XS;
local $YAML::XS::DumpCode=1;
...
Name "YAML::XS::DumpCode" used only once: possible typo at ..
Well, I know I can suppress this specific warning, but it's kind'a ugly. Am I doing ...
0
votes
0answers
16 views
Trying to show link “Use as featured image” from Attachment window from t31os script
I found this great script from t31os who give me the chance to hide fields and buttons when we have to add images on a post in wordpress.
function myAttachmentFields($form_fields, $post) {
// Can now ...
0
votes
0answers
20 views
JavaDB integration to a project
I would like to use JavaDB in my project so I will use a tutorial and learn how to make it work. However I have a few question before using it.
When the user will setup my application, how and where ...
0
votes
3answers
56 views
C# lock. Locking AppendAllText vs TextWriter
Regarding the preventing of "already in use" errors i want to ask if the first code snippet could potentialy be dangerous if called multiple times from multiple clients?
Or are both code blocks equaly ...
0
votes
9answers
52 views
Error in c# compiling: Error 1 Use of unassigned local variable
I'm getting two errors, I see where they are, I just don't know how to change the code to fit my needs.
Here's the code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
...
0
votes
1answer
79 views
Loading Clojure.core.match
I'm new to Clojure and I'm wanting to use Clojure core.match:
https://github.com/clojure/core.match
I've setup my project with TextMate using the following bundle: ...
0
votes
1answer
20 views
How to use exploded data in new query?
I need to run a query on each part of the array coming out of explode.
Right now I just echo each word out from the explode, but I need to run a query like this for each word in the explode:
(select ...
0
votes
0answers
134 views
Real world Uses of Pascal's triangle in programming
What are the real world Uses of Pascal's Triangle in programming.
Google's search and wikipedia is also not much helpful.
I think it is better to ask in community so, thats it.
Thanks.
0
votes
1answer
51 views
How to use function pointers in polymorphism?
I want to be able to sort an array out using function pointers in polymorphism. Not to mention, am only doing this to see how things work and so forth.
0
votes
2answers
62 views
import/require/use for perl modules
I have 2 files perl files which have dependency on one another.
The 1st file, A is a .pl file which multiple package/modules declared inside.
The 2nd file, B will try to access one of the many ...
0
votes
0answers
57 views
how to use UUID in solr schema
I know this:
id
Yes,it works , But I can update the same pdf , so it's duplicated.
I want use version3(md5) of uuid to crypte pdf files.
How can I do??
thanks in advance
0
votes
1answer
47 views
What graphic formats doesn't require a patent license?
I am working on my project that reads and display sequences of images of different formats,
for example: bmp, png, tga, tiff, jpg ...
I read that PNG and BMP are free from patent licences.
But I ...
0
votes
0answers
15 views
How useful is loopback interface statistics retrieved from SNMP
Is loopback statistics retrieved using SNMP really useful to a customer?
0
votes
0answers
69 views
Prevent other <use>s from mouseover effect of a <defs> path
I'm trying to make a crosshair which can be used for resizing. I would like to add interactivity to it by making the currently hovered arrow of the four highlight itself.
I currently have this code:
...
0
votes
3answers
97 views
PHP/MYSQL - Possible to use php variable inside of mysql field value?
I am trying to get a variable to display, when used as part of a value inside of a mysql table.
To explain my problem, i am going to use a simple example
my script would contain something like this:
...
0
votes
1answer
38 views
I'm developing an iPad app in English version [closed]
I'm a programmer and developing an iPad app in English version.
But I'm not native speaker, so it's hard for me to use English words.
I want check if the following words are used the right way.
...
0
votes
2answers
42 views
Licensing - What's “Commercial Use” and “Redistribution”? [closed]
I am new in licensing. I want to know what "commercial use" and "distribution". There are some cases that I want you to help me. Thanks!
Case 1
I own a personal business (which means I am the only ...