Tagged Questions
The current tag has no wiki summary.
32
votes
11answers
80k views
C/C++: How to obtain the full path of current directory?
Is there a platform-agnostic and filesystem-agnostic method to obtain the full path of the directory from where a program is running using C/C++? Not to be confused with the current working directory. ...
7
votes
1answer
1k views
What current tutorials exist for c/c++ for antrl 3.1?
I have written a parser in boost:spirit and now I wish to write the same stuff in antlr 3.1.1 to see if there are any performance gains or if it might be a better way to go about it as it also exports ...
6
votes
3answers
2k views
How do I get the current user in Perl in a portable way?
How does one get the current user in a portable way? This seems like an FAQ but perlport doesn't speak about it, maybe because some odd systems don't have the concept of "user" to being with? However, ...
5
votes
2answers
6k views
4
votes
4answers
193 views
Is it possible to change the current time of a thread or jvm instance in java?
I want to test some class methods that contain logic dependent on the current time it is running. I'd like to set the thread/jvm/system time to a specific future date in the JUnit setup and run my ...
3
votes
2answers
66 views
Get current time from existing javascript Date() object?
I am writing some debug code in a real-time javascript app. In the update loop, I want to:
get current time in milliseconds
compare to last frame's time and print out framerate
set last frame's time ...
3
votes
2answers
160 views
Detect current with USB and Java
To check if a 'switch' is open or closed and detecting that in Java, I have the following plan: I won't use the data pins, just the USB 5V current, and if the switch is closed there is a current, ...
3
votes
1answer
160 views
Get current line of source file in D
Is there a way to get the current line in the source file you are on, like __LINE__ does in C++?
3
votes
1answer
350 views
Navigation stay Highlight if in current page [Fixed]
well my problem is the next, I got a navigation with a animation in jQuery, a green slider that comes down when hover the < li > tag.
when is current page, the hightlight state is to stay down, ...
3
votes
1answer
236 views
Simple jQuery current selection function?
I have a few lists, and when a user clicks on an item I would like it to change the class to current, but if a users then clicks on another item in the same list to switch that to current and remove ...
3
votes
2answers
125 views
Time not updatating when using sysdate Oracle on Windows
Not sure what causes that problem, but when I run query
select to_char(sysdate, 'HH24:MM') from dual;
I constantly get the same time 15:08. I even check a different Oracle DBMS on different machine ...
2
votes
2answers
46 views
Current class is removed on page refresh
I am trying to create a user interface, but when I refresh the page, it's removing the class current from navigation link.
I am following this tutorial ...
2
votes
2answers
29 views
Referencing current node's position in xpath expression
(Note: This post has been edited to show specific use case. See bottom.)
I want to use the current node's value of position() inside an xpath expression (in which the context changes). Unfortunately, ...
2
votes
1answer
19 views
Current address Symbol in Gnu Assembly
i am curios to know is there any special GAS syntax to achieve the same like in NASM example:
SECTION .data
msg: db "Hello World",10,0 ; the 0-terminated string.
len: equ $-msg ...
2
votes
1answer
135 views
PHP current not accessing first (and only) array value
I have this data structure below, which is a print_r of $_GET:
Array (
[url] => search/
[q] => shirt
[view_all] =>
[price_float_GBP] => Array
(
...
2
votes
2answers
82 views
JavaScript add class depending on current URL
For my website navigation I need to add the class 'active' to the li element depending on if it matches the current URL.
Nav HTML:
<ul id="nav">
<div id="wrapper">
...
2
votes
1answer
65 views
check if exe is in the desktop c#
How can I check if my WinForm application is being executed from the desktop or any sub-directory of the desktop?
2
votes
3answers
102 views
Problem using current() in xsl:for-each to retrieve nodes which are out of for-each's scope
Hi I am a beginner in XSLT2.0 but as XML config is required in a recent project I would give it a try.
The XML structure will look like this:
<bookstore>
<books>
<book author="a" ...
2
votes
2answers
170 views
How to Check the iPad current version for Camera actions?
Am new to iPad application. I want to access ipad camera for my application, but ipad2 it have the camera, so i want to check out the current version of ipad to access camera option. How to check it. ...
2
votes
3answers
844 views
how to insert the current timestamp into mysql db using a php insert query
In my database (mysql), i have a table with structure -
username - varchar
insert_time - timestamp
this table was created in mysql using the phpmyadmin tool, and for the insert_time column, i have ...
2
votes
3answers
3k views
Silverlight 4 Get Current User
I have seen this question posed regarding silverlight 2 but I have not seen any questions about silverlight 4.
Is there a way to get the current user running an application in silverlight 4.0? I ...
2
votes
2answers
293 views
.htaccess redirect from directory it's in to specific subdirectory without filename
I have a server. (Apache).
On this server there is a subdirectory (subdir1). In this subdirectory, I have an .htaccess file. How can I set up this .htaccess file to redirect me from the directory it ...
2
votes
2answers
6k views
Selenium: Get current value from drop-down menu
I'm trying to find a simple Selenium call to grab the current option from a select drop-down list. I'm aware there are calls which grab all the values in a list but I wish to know which option is ...
2
votes
4answers
2k views
Wrong Time with System.currentTimeMillis () (Java)
I made a little program to test the System.currentTimeMillis (). And I have a strange result. This is my logs :
1 26-12-09 20:48:21 - [Log] lTime = 1261860501009
2 26-12-09 20:48:21 - [Log] ...
2
votes
2answers
121 views
Does XAML has a version?
WPF 4.0 is a buzzword these days which is the latest version of WPF, I want to know what is the current version of XAML? And, what was the previous version of XAML as well as WPF?
2
votes
1answer
153 views
Transforming selected text with a hotkey
I have this code:
myVariable
which I want to change into
trace("myVariable: " + myVariable);
using a direct hotkey like "alt-f12" to do it. I.e not using "ctrl-space" and arrow buttons.
is it ...
1
vote
1answer
34 views
how to find current loaded viewcontroller?
I have an tabBarController app with 2 tabBarItems.
each viewControllers contains tableView.
On didSelectRowAtIndexPath i am loading the detailview with this lines of code:
detailViewController = ...
1
vote
3answers
37 views
How do I make an 'ftp-style' link in bash to the most recent subdirectory or file in a directory?
I am currently working on a programming project where I have my revisions of a Python module stored in dated directories, that is, I keep every day's revision separate, like a git repository on my ...
1
vote
3answers
195 views
Need to get current timestamp in Java but with format of MM/DD/YYYY h:mm:ss AM/PM
I need to get the current timestamp in Java, with the format of MM/DD/YYYY h:mm:ss AM/PM, i.e. 06/01/2000 10:01:50 AM.
I looked at other similar questions that discuss SimpleDateFormat, but it is not ...
1
vote
0answers
81 views
Qt QTabWidget current changing
I'm using a QTabWidget and I need a way to handle the change of the current tab before it actually happens, and possibly cancel it if certain conditions are met. The QTabWidget::currentChanged signal ...
1
vote
1answer
55 views
Cufon current menu item doens't work in IE7
I've tried to define the hover and .current class state within cufon.
Now I'm trying to get cufon to work in IE7 but the code I've created seems to give a error.
IE8 & IE9 seem to get it but IE7 ...
1
vote
1answer
42 views
Mysql current doesn't work (sql stock price)
Here is the original question:
There is a table stockprices, which contains information about trades of one company's stock. It has two columns: timestamp and price. They represent the time when a ...
1
vote
4answers
81 views
PHP problems with current url
I use the "Current url" function to get the current link when user changing page language
$uri = explode('&', $_SERVER['REQUEST_URI']);
$uri = $uri[0];
$url = (!empty($_SERVER['HTTPS'])) ? ...
1
vote
1answer
76 views
How can I have “Current Users” portlet back?
I have closed "Current Users" portlet from the demo installation and now can't open it back -- there is no such a portlet in a list.
How one can have it back on page?
Thanks.
1
vote
3answers
138 views
How to delete the current node in a singly linked list?
I am trying to finish a program and I'm caught at a spot. My deleteCurrentNode method only partially works. For some reason when I try to traverse the linked list to find the currentNode it never ...
1
vote
0answers
83 views
Multi-level expanding jquery menu to expand/show a submenu if the current page is within that submenu item?
I'm wanting this menu: http://jsfiddle.net/tz37m/1/ to work a little better across the site so that if someone is on a page within a submenu, that submenu is open when they are on that page. I also ...
1
vote
2answers
109 views
How to show Device date and time in iphone app?
Always i'm struggling with NSDate in iphone apps. I have developed one iphone app for US based client. The app should show the todays date. I have used the following code in my app. The date is ...
1
vote
4answers
106 views
jQuery current page highlight
How can I use jQuery to highlight the current page? In other words, add a "current" class to the a element of the current page.
Here's my code:
<div id="nav">
<ul>
...
1
vote
3answers
61 views
Get script name in OCaml?
Does OCaml have a way to get the current file/module/script name? Something like:
C/C++'s argv[0]
Python's sys.argv[0]
Perl/Ruby's $0
Erlang's ?FILE
C#'s ProgramName.Environment.CommandLine
Factor's ...
1
vote
0answers
76 views
User Helper Method for Current Navigation in Rails 3
I have the following navigation HTML:
<nav class="col9">
<ul>
<li class="current"><a href="/">Home</a></li>
<li><a ...
1
vote
2answers
126 views
How to retrieve the current page value in a controller?
I am using Ruby on Rails v3.0.9 and I would to use a method that works as-like the current_page?(options) method (included in the RoR ActionView::Helpers::UrlHelper Class), but in my controllers. That ...
1
vote
2answers
114 views
“current directory” notation not working
I was taught that it's good practice to specify the directory of a file you're linking to, even when the file is in the current directory. So, for example, use "./constants.inc.php" as opposed to ...
1
vote
1answer
74 views
Is there any way of changing current user in PHP (Ubuntu)?
Recently I've been looking for a PHP/Linux shell script that would change current working user from "www-data" to the other one.
Since I tried running this service: ...
1
vote
2answers
66 views
How to refer to the current value in XPath (XSLT)?
I am trying to run this XPath expression (that is, trying to count how many element content strings in my XML file end with letter-one-f ('a') or letter-two-f ('A'):
<xsl:value-of select="count( ...
1
vote
1answer
189 views
I want to open my current location in google map
i want to open or focus to my current location in google map in android. I want my app to get coordinates and then give the name of my location from these coordinates and also in the end focus the ...
1
vote
1answer
31 views
best “current” MS data access technology for loose coupled constantly changing code?
I do a lot of untyped dataset work in my projects and have done so for a while but when working with in-place editing of datagridview I found its a lot easier for validation and stuff if you use a ...
1
vote
4answers
246 views
How to Get the currently logged on user name
I am building a small intranet app in which I need to display the user name of the person who opens the webpage.
I tries with:
WindowsIdentity.GetCurrent().Name.ToString();
But this always ...
1
vote
2answers
393 views
How to set default value of MySQL DateTime ( not TIMESTAMP ) to NOW() or Current_DateTIme?
I have a table with column CreatedDate of data type datetime and i want to be able to set its default value to current DateTime how do i do it?
I tried Now() and CurrentTimestamp but no luck so ...
1
vote
2answers
166 views
Rails session — current_user changes
I have a current_user variable set to the logged in user, this should be static for the duration of the session, but when I show one of the other users, I seem to "become" that user, with all of its ...
1
vote
1answer
251 views
User Current Location Prompt
i am deleting and re-installing the application, it still not prompt the user "Use Current Location Prompt" when they select the "Use current Location" .button