Tagged Questions
The inject tag has no wiki summary.
14
votes
3answers
449 views
Ruby Print Inject Do Syntax
Why is it that the following code runs fine
p (1..1000).inject(0) { |sum, i|
sum + i
}
But, the following code gives an error
p (1..1000).inject(0) do |sum, i|
sum + i
end
warning: do not ...
4
votes
3answers
71 views
Google Guice desktop application - how to make it work?
I have used Guice in my web app without problems and I wanted to use it in desktop app. I am certainly missing one thing - some way to tell my app how to bind everything and know what is what. In web ...
4
votes
3answers
634 views
What is the difference between @Inject and @Autowired in Spring Framework? Which one to use under what condition?
I am going through some blogs on SpringSource and in one of the blog author is using @Inject and I suppose he can also use @Autowired
Here is the piece of code:
@Inject private CustomerOrderService ...
4
votes
2answers
212 views
How do i send keys using a global keyboard hook?
I'm trying to send keys to an application which does not respond to any of the API's that I have so far used (SendInput(), PostMessage(), SendMessage() and others). However, i tested Windows' ...
4
votes
1answer
693 views
Mootools: inject vs adopt
I want to dynamically add some preconfigured HTML-Elements in use of a 'click'-event with mootools.
So I can make it work with my basic knowledge, although it isn´t very nifty. I coded this so far...
...
3
votes
3answers
302 views
Can you inject code/an exe into a process with python?
I've seen a few sites talking about injecting DLL's (such as http://www.codeproject.com/KB/DLL/DLL_Injection_tutorial.aspx), but I'm struggling with how to get an EXE to work. any help/tips would be ...
3
votes
1answer
72 views
why doesn't my refactored ruby using inject work?
I tried to do some refactoring to convert an each block into an inject, but it didn't work and I don't understand why.
Here's the code that works before refactoring:
class String
# Build the word ...
3
votes
4answers
574 views
Is it possible to “inject” a .NET dll into another .NET application, by way of app.config perhaps?
I have made a .NET class library in C# that initializes some logging, sent to an external tool. The library is altogether separate from any application, but in order to initialize it, I need to make ...
3
votes
3answers
1k views
Spring configuration in GWT Project?
I am developing a GWT-Spring-Hibernate project and I want to use Spring Autowired annotation in GWT Service Servlet but my autowired annotated service is not injected. it is null. Is there a ...
3
votes
2answers
783 views
Understanding the behaviour of inject used with a lambda in Ruby
I often plug pre-configured lambdas into enumerable methods like 'map', 'select' etc.
but the behavior of 'inject' seems to be different.
e.g. with
mult4 = lambda {|item| item * 4 }
then
...
2
votes
0answers
72 views
How to call functions/set data in a game from an external program. (Skyrim)
I was wondering if there is any possible way to call functions in a running process from an external process. I'm trying to write myself a program right now to call console commands in Skyrim from an ...
2
votes
6answers
142 views
Ruby Map/Reduce Function Necessarily Efficient?
b1 = Time.now
puts (1..100000).inject(0) { |x, y| x + y }
a1 = Time.now
puts "Time for inject: #{a1 - b1}"
b2 = Time.now
sum = 0
(1..100000).each do |value|
sum += value
end
puts sum
a2 = ...
2
votes
1answer
143 views
Spring.net inject dictionary order question?
I use spring.net inject a Dictionary<string,string> in this order:
<object id="dictLang" type="System.Collections.Generic.Dictionary<string,string>">
...
2
votes
5answers
155 views
Inject sleep() into a function of an external process
I know how to inject a DLL into a running process and also how to utilize functions used internally by the process e.g.
void__stdcall remoteMethod(unsigned short id)
{
typedef void (__stdcall ...
2
votes
5answers
1k views
inject bean reference into a Quartz job in Spring?
I managed to configure and schedule a Quartz job using JobStoreTX persistent store in Spring. I do not use Spring's Quartz jobs, because I need to schedule them dynamically, at run time, and all ...
2
votes
3answers
125 views
how to “inject” built-in php functions
How can i modify returning value of built-in php function without creating new function with another name and renaming all of used functions with previous name to new one?
e.g.
function time() {
...
2
votes
4answers
242 views
Inject C# code before build
How to inject a new code in existing C# code (not MSIL) before compiling, but not change .cs file?
2
votes
1answer
146 views
Passing Services to MainViewModel - SHOULD I use a dependency injection container?
I have this code:
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
var mainVM = ...
2
votes
1answer
671 views
Injecting JS in Google Chrome's page with variables from the userscript?
I am having a script that used unsafeWindow in FireFox, since that did not work, I have searched for another option, and found it, I am only wondering: How can I use a variable from my userscript into ...
2
votes
4answers
711 views
Sorting nested hash in ruby
Provided the following ruby hash:
{
cat: {
1: 2,
2: 10,
3: 11,
4: 1
},
wings: {
1: 3,
2: 5,
3: 7,
4: 7
},
grimace: ...
2
votes
2answers
730 views
Why do I need to use .inject(0) rather than .inject to make this work?
I am creating a rails app and have used this code in one of my methods
item_numbers.inject(0) {|sum, i| sum + i.amount}
item_numbers is an array of objects from my item_numbers table. The .amount ...
2
votes
3answers
2k views
Injecting Mouse Input in WPF Applications
I've been working on injecting input into a WPF application. What makes this project hard is that I need to be able to inject the input into the application even though it's running in the background ...
1
vote
1answer
19 views
Inject Spring beans into RestEasy
Is it possible to inject Spring beans into an RestEasy @Path class? I managed to do it with Jersey, with @InjectParam annotation, but for some other reasons, I need to switch to RestEasy, and I can't ...
1
vote
3answers
48 views
Having a hard time understanding & implementing some Ruby code
myitem.inject({}) {|a,b| a[b.one] = b.two; a}
Where:
myitem is a class which holds an array or pair objects (pair objects have two fields in them one and two)
I am not sure what the above code is ...
1
vote
1answer
150 views
How to inject C# dll to another process
Anybody know how/if I can create C# DLLs then inject them into another process (not .net) and execute my code, overriding existing methods?
1
vote
0answers
37 views
How can you intercept and modify a HTTP response from a WebView (Mac)?
I would like to intercept a resource response from an HTTP request that is downloaded as an additional resource from a page that is currently being loaded. I am specifically trying to do this to a ...
1
vote
1answer
228 views
How to inject Javascript in WebBrowser control
There is a great tutorial here about windows forms
How to inject Javascript in WebBrowser control?
I tried it and it works great
But the problem is the objects used there is not recognized at wpf ...
1
vote
1answer
42 views
Call to iterating object from iterator
How can I call for iterating object from iterating block?
# "self" is an Object, and not an iterating object I need.
MyClass.some.method.chain.inject{|mean, i| (mean+=i)/self.size}
I mean I need to ...
1
vote
2answers
85 views
Javascript Iframe Inject to beginning of <body> tag
Does anyone know if there is a way to add a iframe directly under the <body> tag? I see the appendChild but that does it before </body>. Any suggestions will be helpful.
Also, I doubt ...
1
vote
1answer
355 views
spring-security writing a custom PermissionEvaluator - how to inject a DAO service?
I'm working with Spring-Security and I need to implement my own PermissionEvaluator (following the answer to my other question.
However looking at the standard implementation AclPermissionEvaluator ...
1
vote
2answers
194 views
Injecting .NET 4.0 Library into unmanaged App, Unending loop in clr.dll
I am trying to inject a .net library into a managed app, but it didn't seem to work after some debugging with ollydbg i found it to be looping infinitely. If i forcefully exit the loop it all works. I ...
1
vote
1answer
239 views
Injecting a bean with @Autowired that implements ApplicationListener does not work?
I have a service bean (annotated with @Service) which implements the ApplicationListener inteface for T type of event objects that extend the ApplicationEvent abstract Class. There is a pretty simple ...
1
vote
4answers
157 views
Injecting jQuery where Prototype exsists - noConflict()
I'm using webkit only. I need to inject jQuery into a page that already has prototype loaded. I'm using this code to load jQuery. (you can try in console)
var s = document.createElement('script');
...
1
vote
1answer
213 views
Exist stringByEvaluatingJavaScriptFromString for Android
Exist stringByEvaluatingJavaScriptFromString method in Android like Iphone?.
Not with a simple code like this javascript:wave(). But with a complex Java Script function.
Thanks
1
vote
1answer
558 views
Inject JavaScript file in a WebView on Android
I have a function JavaScript that i want to inject in a Html, with the WebView. I can inject small pieces of JavaScript code with loadUrl("javascript:..." but when i try to insert the code does not ...
1
vote
0answers
437 views
System.TypeLoadException - Method get_*** in type *** from assembly *** does not have an implementation when it does?
I am using the program Reflexil to inject a reference in the executable Foo1.exe to an outside assembly named Foo2.dll.
In Foo1.exe, there is a class called Bar.
In Foo2.dll, there is an interface ...
1
vote
1answer
199 views
Calculate running total rails 3
What's the best way - or, indeed, any way - to calculate a running total in Rails?
I have a model, Sale. It has a quantity column and a sales_value column. I need to populate a third column, ...
1
vote
1answer
1k views
JAX-RS failed to inject @EJB or @Inject
I'm trying to test a minimal JAX-RS + EJB/CDI injection mechanism and currently hitting a road-block due to GlassFish unable to inject for whatever reason.
(Using @Inject will throw NPE because ...
1
vote
1answer
448 views
how can i use a chrome extension content script to inject html into a page at startup
i want to create an extension to inject html into every page as soon as it loads up. I am familiar with teh manifest.json rules for this as well as how to run a content script. The problem I'm ...
1
vote
1answer
372 views
Use injected dll code as delphi *.dll plugin which contains TForm
maybe this is a lame question, but nevertheless...
I asked some questions about the plugins in delphi. What is the better way dll, bpl, OCX, scripting engine...
I dont feel like to distribute all ...
1
vote
5answers
334 views
Ruby longest word in array
I built this method to find the longest word in an array, but I'm wondering if there's a better way to have done it. I'm pretty new to Ruby, and just did this as an exercise for learning the inject ...
1
vote
4answers
44 views
how to safely write out user generated text in xhtml
How can some user generated text be safely written out on a webpage?
Is there some complete list of characters that needs to be escaped?
The ",+,: -character should probably be escaped, but there ...
1
vote
2answers
100 views
ruby - need help understanding this inject
I'd like to understand how the following code works:
def url
@url ||= {
"basename" => self.basename,
"output_ext" => self.output_ext,
}.inject("/:basename/") { |result, token|
...
1
vote
4answers
669 views
How to insert html in iframe
Hallo all: I need to insert a html string in a iframe as shown below:
....
var html = ...
1
vote
5answers
165 views
So maybe I'm not getting the idea in Ruby but I have a question about Enumerables inject
The |m,k| thing kind of throws me off. Does this have anything to do with order of precedence?
m standing for 0 (or 1 in some languages) and k for the last in the Array/Hash whatever?
So why do ...
0
votes
0answers
41 views
how to inject a Map object by guice?
class Person{
Map sons;
Map getSons(){
return sons;
}
}
class Test{
public void Main(){
Person p=new Person();
Map sons=new HashMap<String,Person>();
sons.add("jack",new ...
0
votes
1answer
21 views
Blackberry setting permission to inject events (esc button to jump back to app)
I am taking photo by invoking the camera, and as many have explained I get back to the app using...
EventInjector.KeyEvent inject = new ...
0
votes
0answers
28 views
Creating a window from inside a injected dll
Alright so, I created a dll to detour connect and send function from ws2_32 for a game. During the authentication I need the client to input something and so I need a dialog, a dialog that I would ...
0
votes
2answers
114 views
GetThreadContext via DuplicateHandle?
I am trying to open process duplicate handles and query information from thread handles using GetThreadContext but i get error ERROR_INVALID_HANDLE or ERROR_GEN_FAILURE. Information about this seems ...
0
votes
1answer
42 views
Mootools : inject a span into each list item of an UL
I am trying to inject a span into each list item of an UL which is the only UL in the div with the id of mydiv. The below code is only injecting into the last list item. But the consol log is writing ...