Tagged Questions
The modify tag has no wiki summary.
19
votes
5answers
13k views
add_column for references (Rails)
I have the following Rails migration which works perfectly (irrelevant pieces removed):
create_table :comments do |t|
t.text :body
t.references :post
end
Now I'd like to add an author column to ...
9
votes
10answers
24k views
Modify a .txt file in Java
I have a text file that I want to edit using Java. It has many thousands of lines. I basically want to iterate through the lines and change/edit/delete some text. This will need to happen quite ...
7
votes
6answers
372 views
Javascript Calculate brighter colour
I have a colour value in JS as a string
#ff0000
How would i go about calculating a brighter/lighter version of this colour; for example #ff4848 but programatically and be able to calculate the ...
6
votes
3answers
192 views
How do you replace a method of a Moose object at runtime?
Is it possible to replace a method of a Moose object at runtime ?
By looking at the source code of Class::MOP::Method (which Moose::Meta::Method inherits from) I concluded that by doing
...
5
votes
8answers
458 views
How noticeable is the difference of performance among TList, TObjectList, and plain array, if it could be estimated?
*Summarization:
Please check the knowledgeable comments from the Delphi experts. Specifically for me, I would try to use old TList/TObjectList as David suggested, and use hard-cast and ...
5
votes
5answers
400 views
How can I multiply each item in an array easily with PHP?
I have an array called $times. It is a list of small numbers (15,14,11,9,3,2). These will be user submitted and are supposed to be minutes. As PHP time works on seconds, I would like to multiply each ...
5
votes
4answers
8k views
Adding files to java classpath at runtime
Is it possible to add a file (not necessarily a jar file) to java classpath at runtime.
Specifically, the file already is present in the classpath, what I want is whether I can add a modified copy of ...
4
votes
1answer
82 views
Create a Addon to modify JavaScript Data before executed on Firefox
i want to create an addon for firefox, that should check every JavaScript on a loading page. And if there is a Code, which is not allowed it should be blocked or modiefied (it is a part of XSS ...
4
votes
2answers
398 views
how to modify xml node value?
i am new developer in java application.i would like to modify an xml file node valuse.i have used an xml file for modify as follows
<staff id="2">
...
4
votes
3answers
343 views
Modify the content of a dataframe in R
I would like to transform/modify the content of dataframe. Basically I have a dataframe like below:
bins pval
1 2L:1:150 0.9224217
2 2L:151:300 0.9478824
3 2L:301:450 0.9671139
4 ...
4
votes
5answers
203 views
Better to extend a class or modify it directly?
So I'm working on creating a visualization for a data structure in Java. I already have the implementation of the data structure (Binary Search Tree) to start with, but I need to add some additional ...
4
votes
2answers
1k views
WiX Permissions, how do I express 'Modify' in terms of DACL flags
I'm attempting to apply custom rights to a folder as part of a WiX 3.0.4318.0 installer.
In terms of the Security properties UI in explorer, I want to add Modify to the rights for BUILTIN\Users. ...
4
votes
3answers
2k views
Passing pointer from java to native
Im making an inerface to a DLL library, so i can use it with Java.
I need my native function to modify the value of a jlong parameter. Like the parameter was passed by reference.
My Java method must ...
3
votes
1answer
69 views
I can't modify the app.config file
What's wrong with the following code:
private static void UpdateAppSettings(string settingName, string settingValue)
{
if (settingName == null) throw new ArgumentNullException("settingName");
...
3
votes
1answer
459 views
WPF datagrid with MVVM
I'm trying to bind a datagrid in WPF to my ViewModel so that it will update any cell changes to the database as well as allow the user to delete rows and add new rows. I've got part of it working but ...
3
votes
3answers
188 views
Ada 95: Modifying output of dictionary program
I've found this dictionary by William Whitaker on the Internet and I like its parsing capabilities. But the output doesn't fit for me.
The issue (challenge for me):
Given an input form such as ...
3
votes
1answer
48 views
Modify animate function with JQuery
I have the below function that works a treat, but instead of clicking the #featured li.block div to make the div spin; how would one make a link with a class button a.button? clickable to make the ...
3
votes
1answer
379 views
Change browser proxy settings from Python?
I have written a program that relies on a proxy to function. I now need a script that will check to see if the browser is set to use the right proxy, and if not, change it to use it. I need this ...
3
votes
1answer
78 views
How to Keep to GPL Licence When Modifying a Script
In answering my own question, I came across this GreaseMonkey script that automatically converts currency values on a webpage. I would like to modify the script for my specific case, and I want to ...
3
votes
2answers
163 views
Changing .bin file's data in C
I have a lot of data stored in bin format as a sequence of structs. I want to be able to read randomly any of the structs and modify it in C. I am trying with the following code but it doesn't work. ...
3
votes
2answers
456 views
Exclusively open/modify an XML file?
I need to open an XML file exclusively, make a modification, and save it.
I can open it and make the modification pretty easily like so:
DataSet ds = new DataSet();
ds.ReadXml(filename);
DataTable ...
3
votes
3answers
599 views
Modify Page Head in User Control
How can I modify the head portion of a page from within an embeded user control? I know I can have the control run in the head portion of the .aspx page but I have a existing site with numerous pages ...
3
votes
1answer
1k views
jQuery - modify the prompt/alert functions
I need an advice, if it's worth it to downlaod a jQuery plugin (such as Impromptu), or if it's easier to make my own code just to modify the "prompt" efect. All I need is something like the first ...
2
votes
3answers
44 views
C++, return const and non const reference to std::set item
There is the class A containing two overloaded methods getItems();
typedef std::vector <int> TItems;
template <typename T>
class A
{
private:
T a;
TItems items;
public:
...
2
votes
1answer
52 views
Modify arraylist through textfields
I currently have a class Room and a class Hostel which holds rooms = new ArrayList < Room >();. I then have a BookRoomGUI class.
When a room is added to the arraylist it uses the following ...
2
votes
2answers
57 views
creating a link with PHP in a Joomla template
i'm trying to modify a Joomla template to create a link out of a defined 'div' on the index.php page and am not having any luck. in the original source, there was an an object, 'bglogo' which is a ...
2
votes
2answers
72 views
modify/replace in LISP
I have an implementation of a function called modify list shown below but it only works for top level lists.
(defun modify-list (old new a-list)
(cond
((null a-list) nil)
((eql (car a-list) ...
2
votes
3answers
117 views
How to modify javascript code at run time?
Is there a way to modify javascript code while debugging? Visual Studio has "Edit and Continue", and similar hot swapping of code can be done through java and other languages. Can this be done with ...
2
votes
3answers
187 views
How to get rid of NULL values in SQL Server 2008 table
I have a table like:
1 0.22 0.14 0.05
23 11 0.32 0.16
4 NULL 1 0.39
NULL NULL .8 1
NULL .5 .7 NULL
I want to modify the table to become
1 0.22 0.14 ...
2
votes
0answers
78 views
How to use android custom component dynamic attr
i'm in a problem
now i made a custom component, piechart and in the GraphicalView.class, i set this in this class
Value=attrs.getAttributeIntValue(null, "GO", 80);
so now, i can add a component by ...
2
votes
2answers
141 views
How to add bullets to LaTeX description lists?
Well yeah, I would like to add a bullet in front of every \item[] item, i.e.
Hello,
\begin{description}
\item[bla] blubb
\end{description}
becomes
Hello,
- **bla** blubb
I quickly found how to ...
2
votes
2answers
93 views
Bazaar: Automatic file modification on commit with the modification committed
I would like bazaar to write revision number on commit to a file in the committed branch so that this modification is included in the commit.
I looked at hooks but the pre_commit hook is only run ...
2
votes
2answers
186 views
Modify per-pixel alpha data for TPngImage
Can I directly modify per-pixel alpha data for TPngImage between loading it from somewhere and drawing it somewhere? If so, how? Thanks.
2
votes
1answer
188 views
How to Modify ZedGraphControl GraphPane Line?
How can I modify an existing line/curve in a ZedGraphControl's GraphPane?
I use the following to get the data for that line:
CurveList lineData = zgcControl.GraphPane.CurveList[i];
But I am ...
2
votes
3answers
71 views
Modifying a parameter pass to a script (Bash)
I have been looking on Google for quite a while now and can't find anything that is matching what I need/want to do.
My objective is to write a script that takes two arguments. It will search through ...
2
votes
1answer
479 views
How do I add arrows to jQuery UI datepicker
I'm VERY new to using javascript and jQuery. I've built a form and want to use UI Datepicker to help people select a date. Datepicker works just fine, but contains no [visible] clue for how to move ...
2
votes
2answers
308 views
How to represent my Matlab matrix values in the following lattice-tree form?
I have my values of the lattice in the matrix as shown in fig 1:
Fig 1: Format of values as currently displayed in Matlab for my code
Now I would like to represent these values in form of lattice ...
2
votes
2answers
336 views
Direct access of AS3 ByteArray memory in Alchemy, without AS3_ByteArray_readBytes?
I have an existing ByteArray in AS3 which I want to process (read and write) in Alchemy. All the examples I've seen of how to do this involve either using stream functions (fread, fwrite, etc), or ...
2
votes
2answers
504 views
Modify URL before loading page in firefox
I want to prefix URLs which match my patterns. When I open a new tab in Firefox and enter a matching URL the page should not be loaded normally, the URL should first be modified and then loading the ...
2
votes
1answer
1k views
Drag/Move Multiple Selected Features - OpenLayers
I know that I can easily allow a user to select multiple Features/Geometries in OpenLayers but I then want enable the user to easily drag/move all of the selected features at the same time.
With the ...
2
votes
2answers
140 views
How can we modify data that is in a shelve?
I have opened a shelve using the following code:
#!/usr/bin/python
import shelve #Module:Shelve is imported to achieve persistence
Accounts = 0
Victor = {'Name':'Victor ...
2
votes
3answers
68 views
jQuery visible targeting issue
I've made this script that lets you navigate through multiple divs with jQuery, but I want to make a css change to the parent if the 6th div is shown and using .is(":visible") hasn't given me any ...
2
votes
6answers
475 views
Modify/Read/Write existing Excel/PDF document with .NET libraries
The issue consists of two parts:
What are the best .NET libraries to modify (read/write) existing excel document (should be work with Excel 2003)?
What are the best .NET libraries to modify ...
2
votes
3answers
591 views
PHP unlink OR rewrite own/current file by itself
Task: Cut or erase a file after first walk-through.
i have an install file called "index.php" which creates another php file.
<?
/* here some code*/
$fh = fopen($myFile, 'w') or die("can't open ...
2
votes
1answer
340 views
How do I modify a record in erlang?
I need replace the same value for variables {place} and {other_place} in the record op.
#op{
action = [walk, from, {place}, to, {other_place}],
preconds = [[at, {place}, me], [on, floor, ...
2
votes
3answers
165 views
Changing a Container while using Visitor
I implemented the Visitor pattern in C++ using a STL-like iterator for storing the Visitor's current position in the container. Now I would like to change the container while I iterate over it, and ...
2
votes
2answers
207 views
customize Java dialog Color, Appearance, Theme
I want to make Java JDialog appear like it is presented in the image (link below) using JDK 6 Swing. Is it possible? if so kindly guide me.
Image Link:
Image
2
votes
1answer
497 views
How to change matched element text with XQuery?
I'm trying to piece together all the examples I've seen for finding elements and modifying them, but I haven't come up with something that works yet. I created an example below of what I have so far, ...
2
votes
3answers
304 views
How to modify an immutable object?
Sorry I couldn't think of a good title for this question...
At application start I load objects from a database via a DB access library, lets call their class CDbObject.
class CDbObject
{
//...
...
2
votes
4answers
4k views
Using an event receiver to update an item's 'Title' field
I have written an event receiver that is activated on the 'ItemAdded' event of a 'Pages' list. The code runs fine, but my issue is this - during the call to my Sub ItemAdded, I want to change the ...