Tagged Questions
The manager tag has no wiki summary.
18
votes
9answers
555 views
How can avoid people using my code for evil?
I'm not sure if this is quite the right place, but it seems like a decent place to ask.
My current job involves manual analysis of large data sets (at several levels, each more refined and done by ...
18
votes
10answers
23k views
What is the best web-based File Explorer? [closed]
I would like to know what you think is the best web-based File Explorer to manage files in a remote server through HTTP / Web.
It would be preferable to have PHP or Flash technology, but any good ...
9
votes
3answers
2k views
how to interpret windows task manager?
I run Windows 7 RC1, which uses the same WTM from Vista. When i look at the processes, there some columns I'm not sure what the differences are:
Memory - working set
Memory - private working set
...
6
votes
3answers
193 views
What is the purpose of Managers / Transactions?
I'm building a spring application for the first time. I'm running into lots of problems with concurrency, and I suspect that there is something wrong with the way I'm managing the backend. The only ...
5
votes
1answer
257 views
Override UserManager in django
How can I use a custom manager for the auth_user class in django?
In my django project, I'm using auth_user and I have a basic profile class. In every page of my site, I use some user and profile ...
5
votes
4answers
1k views
SharedPreferences will not save/load in PreferenceActivity
I have a preferenceActivity in which I have many checkBoxPreferences.
The checkBoxPreference is suppose to save the the default shared preferences file, and then be called again when I open the app in ...
5
votes
1answer
270 views
Distributed Lock Manager (DLM) for .NET?
I've been examining several DLM's but most of them are written in JAVA or C++. Can't seem to find any service specifically implemented for .NET. Any idea or recommendations for distributed ...
5
votes
4answers
157 views
Why “Install New Software…” menu entry is located under Help in eclipse [closed]
well, the title sais it all, but i was recurently wondering about that.
Its just like in some older versions of windows, you had to hit the "Start" button to "Shutdown" the system
5
votes
3answers
891 views
XNA Xbox 360 Content Manager Thread freezing Draw Thread
I currently have a game that takes in large images, easily bigger than 1MB, to serve as backgrounds. I know exactly when this transition is supposed to take place, so I made a loader class to handle ...
5
votes
3answers
790 views
Multiple Databases in Django 1.0.2 with custom manager
I asked this in the users group with no response so i thought I would try here.
I am trying to setup a custom manager to connect to another database
on the same server as my default mysql connection. ...
5
votes
5answers
1k views
Programmer to Manager [closed]
What a Programmer should learn to become a manager without losing his programming skills?
4
votes
2answers
3k views
Can't find android sdk 2.3.4 in SDK manager
I'm having problems finding the 2.3.4 sdk in the Android SDK Manager download list. I updated the SDK tools to r11 and my platform-tools to r5 but 2.3.4 won't show up. Is there something I'm missing?
...
3
votes
1answer
581 views
OSX Tiling Window Managers
I've found a few SO threads about this, but all the answers are things like Divvy that rely mostly on manual screen division and keyboard shortcuts. I'm a big bug.n [ http://www.autohotkey.net/~joten/ ...
3
votes
3answers
160 views
'private' models, default query sets and chaining methods
I have a private boolean flag on my model, and a custom manager that overwrites the get_query_set method, with a filter, removing private=True:
class myManager(models.Manager):
def ...
3
votes
2answers
118 views
A type with “Manager” in the name - candidate for refactoring?
I found a thesis on forums:
If you have a type with "Manager" in
the name, it's a candidate for
refactoring.
One answer:
I know it's considered a code "smell"
So... Why? Is this thesis ...
3
votes
5answers
157 views
Data Management - Readonly data
I'm working on a some project in C#, and I came across the following problem:
I have some data-type classes, for example a Person class, which keeps information about a person.
In addition, I have a ...
3
votes
5answers
7k views
Android: AVD manager won't detect my HTC Hero phone as Virtual Device
I need to use my phone as emulator/target/virtual device when I run my application.
I have installed HTC Sync and the USB driver is in order.
I have enabled the USB Debugging in Settings.
What more ...
3
votes
2answers
501 views
Django: writing a manager to filter query set results
I have the following code:
class GroupDepartmentManager(models.Manager):
def get_query_set(self):
return super(GroupDepartmentManager, self).get_query_set().filter(group='1')
class ...
3
votes
1answer
2k views
How do I list device types using WMI?
I'm using WMI Code Creator to generate code to help list the types of devices shown in Device Manager. I'm trying to detect the presence of a debugger that shows up in Device manager as its own type ...
3
votes
7answers
155 views
Convince the need of maintenance, updates and recoding
One of my favorite topics to discuss with my boss is the need for maintenance work, doing code updates and refining existing code with new techniques. Especially things like: a new Telerik controls ...
3
votes
3answers
10k views
SSIS - AcquireConnection method call to the connection manager <Excel Connection Manager> failed with error code 0xC0202009
I have an SSIS package which reads an Excel File (Data Flow Source) and transfer the data to SQL Server using OLEDB Destination Data Flow Item. The OLEDB Connection Manager used for the destination is ...
2
votes
2answers
87 views
android telephone number
I want to display my telephone number when I open the application, but I get a exception saying "The application Telephone has ()stopped unexpectedly. Please try again."
I have already added ...
2
votes
0answers
166 views
Get intent filter for receivers
I am trying to get a list of receivers that handle android.intent.action.BOOT_COMPLETED for other applications.
I can get only the apps with that action with this:
final PackageManager pm = ...
2
votes
1answer
386 views
Watin 2 and IE 9 Download Manager
Has anybody got their Automation using Watin 2 (latest release) work with IE 9 Download Manager?
Some of the issues I am facing are:
1. Cannot grab the control ids of the button on the Download ...
2
votes
1answer
731 views
Twitter Authentication through Android's AccountManager classes
I am developing an android application and want to integrate Twitter.
What I understand is if on user's device, official android Twitter app is installed then we can authenticate using account ...
2
votes
2answers
39 views
How to managing subscriptions to swappable classes
I'm trying to get a better feeling for how to maintain subscription to a class which may swap (Change Strategies). I'll try to keep this directed even if the examples are contrived.
Assume there is ...
2
votes
1answer
352 views
Multiple notifications to the same activity
I have an activity that is being opened from the notification bar, but when I do NotificationManager.notify(...), I'm giving to the intent a different bundle, so that each notification opens the same ...
2
votes
2answers
144 views
Django model manager live-object issues
I am using Django. I am having a few issues with caching of QuerySets for news/category models:
class Category(models.Model):
title = models.CharField(max_length=60)
slug = ...
2
votes
2answers
130 views
Need some guidance with interpreter creation
I am a high school student and I am trying to create an interpreter.
My thoughts are to parse the code, transform it into opcodes (very similar to
bytecode, msil etc) and for now to create an ...
2
votes
2answers
82 views
Alternative descriptions for 'refactoring' that make a manager happy?
My boss does not ever want to hear the word refactoring again, because whenever he asks a person what he is working, they reply "I'm refactoring!"
I need to find alternative descriptions for ...
2
votes
1answer
433 views
Where can I find DownloadManager's ContentProvider implementation
I've searched through android's open source code as much as I could and I haven't been able to find the implementation to the actual downloading via the DownloadManager in the 2.3 SDK. I have found ...
2
votes
3answers
428 views
IBM DB2 Content Manager vs IBM Filenet
IBM acquired FileNet to add BPM with document management, but also actively sells DB2 Content Manager (CM). Please suggest which product suite to choose for which scenario.
Both seems to provide ...
2
votes
1answer
111 views
tomcat manager: How to preserve xml configuration when redeploying using update?
I'm using tomcat manager to deploy my war files. To update a war I use the following url:
http://localhost:8080/manager/deploy?path=/example&war=file:/path/example.war&update=true
The problem ...
2
votes
3answers
468 views
What happened to TextureMgr?
In cocos2d, there used to be a TextureMgr method (Async) that let you load images for later use. Now when I use TextureMgr, it says it's undeclared. Is it deprecated? I'm on .99.5. If it's no longer ...
2
votes
2answers
1k views
Tomcat manager remote deploy script
I'm writing a shell script to auto deploy/undeploy using the tomcat manager.
Following the instructions on ...
2
votes
2answers
1k views
Android notification manager doesn't work with the screen is off
I have a count down timer that when it goes off (to zero) it checks to see if the app has focus. If not it launches a notification in the notification bar. When you click on the notification is ...
2
votes
3answers
1k views
magento connect manager blank page
I just installed Magento 1.4.1.1 on my Ubuntu Apache server and everything is working just fine aside from one thing:
The Magento Connect Manager simply brings up a blank page. In Firebug it is ...
2
votes
2answers
94 views
suggestion of Project manager [closed]
I need suggestion of project manager (with task manager, etc)
2
votes
1answer
725 views
How to get applications from Windows Task manager (Applications Tab) + their locations on HDD from Delphi
I would like to get list of programs running and visible in windows task manager's Applications Tab (not processes tab) and get their locations on HDD ? I need it to be done in Delphi. Anybody can ...
2
votes
1answer
918 views
WiX uninstall - close application before Restart Manager
I have an installer done with WiX. When it's done installing, it starts an application that injects some code in the Explorer process.
Currently when I uninstall, the Restart Manager kicks in and ...
2
votes
1answer
328 views
How to implement a single instance app manager in java (CVM PhoneME)?
I'm working on a application manager for embeded platform based on the CVM PhoneME VM. The VM is started by a C++ app which configures the CVM and then triggers the VM itself. This C++ app is called ...
2
votes
5answers
1k views
Anyone know any good backend user online file manager?
I'm looking for a backend system where your clients can login and upload files to your server, download files from the server and you can delete the users, create users, etc. I do not know the proper ...
2
votes
2answers
501 views
Cannot run Android application on emulator/device - activity doesn't exist?
When trying to run my application on the emulator I get an error from the activitymanager:
ActivityManager: Error type 3
My activity exists, is listed in the manifest (in fact, its the MAIN launcher ...
2
votes
1answer
658 views
Task Manager: CPU usage history
I bougth recently a server with 2 x X5550, they are quad (4 cores each) total 8 cores
If I check the task manager it shows in the CPU usage history 16 diagrams,
Should't it be 8 cause I have 2 ...
2
votes
1answer
484 views
Python: how to switch between workspaces using Xlib?
how do I switch between my window manager's workspaces using Python with Xlib module?
I've been searching Google the last couple of hours, and this is my most promising attempt:
#!/usr/bin/python
...
2
votes
5answers
432 views
Window handling manager
I have a Windows box that is running three applications. When the applications are started each application creates a borderless window which is positioned such that they overlap in a particular way.
...
2
votes
12answers
523 views
Should people only having management background be heading software engineering projects / departments [closed]
Do you guys think that people with no technical background or people who have been in technical organizations but have not passed through technical ranks should be promoted and made heads of a ...
2
votes
1answer
1k views
Does anyone know whether the Android addProximityAlert on the LocationManager is battery intensive
I just basically want to add about 20 and sometimes 80 Proximity Alerts with no time expiration with a radius of around 500 meters.
Just wondering whether by doing this will suck up the battery real ...
2
votes
4answers
770 views
How do I overlap widgets with the pack geometry manager in Python/Tkinter?
I want to put a canvas with an image in my window, but then I want to pack() widgets over top of it so the canvas acts as a background. Is it possible to have two states for the pack() manager, one ...
1
vote
1answer
38 views
How to access model attributes in custom manager?
I have a Django model for an object with a DateField. I also have two managers that filter these objects for a specific date range.
class SchoolYearManager(models.Manager):
def ...