workflow

Django / MacOS revised efficient development workflow

橙三吉。 提交于 2019-12-06 08:08:51
I've been now happily developing applications (Django in particular) on the Mac for a few years now. As part of this process I am always looking to gain efficiencies in my workflow and enjoy reading about other development expieriences. Now it's my turn to give back. This is a revision to my previous post with time and expierience under my belt. Tools of the trade A Mac Loaded up with XCode A good set of gnu tools ( coreutils , findutils , diffutils ...) A solid set of SCM's git , mercurial , perforce , svn (if needed..) iTerm2 - This simply is awesome. ActivePython - The free version → with

Hosting Windows Workflow Designer

孤者浪人 提交于 2019-12-06 07:16:01
Does anyone have any experience hosting the Windows Workflow designer surface? I've seen a couple of rather difficult to follow examples on MSDN, but not much else - certainly nothing that offers an explanation into the process of hosting WF that is clear or easy to read... Are there better resources out there for hosting WF (or a workflow-like design surface - I'm not necessarily tied to WF) that actually make sense ? There is a reference application from MSDN if you want to learn from code. WF Sample Workflow Designer Visual Studio 2005 Solution There was a blog maintained by the developer

What is the differences between RetrieveRequest and IOrganizationService.Retrieve in CRM?

百般思念 提交于 2019-12-06 06:33:10
I'm new in CRM workflow step development by C#. I need to know what is the main difference between RetrieveRequest and Retrieve in IOrganizationService . When must use which one? And is there any example to show how use this objects to run in a performer manner? In most cases the Retrieve method suffices. The RetrieveRequest however adds an interesting feature: it provides the option to query data associated with the retrieved object in one go. Imagine you need invoice data along with its Invoice Product records. One option would be to create a QueryExpression and join the results of the

Is it better to have one big workflow or several smaller specific ones?

梦想与她 提交于 2019-12-06 06:18:30
问题 I need to build an app that gets files from a server and moves to another server. It was suggested that I look into using Windows Workflow Foundation (WF). I started to build the workflow but it is getting messy and I'm not sure I'm doing it the best way possible. Here is the basic worklow activities: Get a list of sources Determine if source is ftp or disk drive Get a list of files from the server If source is ftp then get the file with ftp get else if source is drive then read file from

Magento Payment workflow and event order paid

为君一笑 提交于 2019-12-06 06:14:28
问题 For one of my Magento module I need to catch the event “any order is defined as paid”. So I found that the associated event is sales_order_payment_pay. Ok seems to fit perfectly with my needs. I’m a Magento dev, not a merchant and, for the moment, I’ve never put a Magento instance online and in production. So the payment workflow is quite dark to me. I used to select “Check/Money Order” as payment method during my tests. The problem is : I need to catch this event (sales_order_payment_pay)

View website live after Git push [duplicate]

馋奶兔 提交于 2019-12-06 06:08:20
This question already has answers here : Closed 7 years ago . Possible Duplicate: Git Post-Receive Hook for Website Staging I started learning Git today and I'm stuck on one thing. When I push my local production repository to my remote staging repository, I would like to immediately be able to view my newly pushed files live. When I try to look for my files in my remote repository (via an FTP client), I can't find them. Do I need to perform some advanced Git magic in order to achieve this (hooks?)? What is best practice for this situation? Again, I'm new to Git and don't fully understand the

Git: updating website when pushing to remote repository?

六眼飞鱼酱① 提交于 2019-12-06 05:12:04
问题 I have a website that I'd like to update whenever I push to a remote repository. I am coming from a svn background and still trying to figure out git. Right now, I have done the following: Setup a Git repository on my local machine containing the website. Cloned the (bare) repository to my web server. Now I'm a bit stuck. I can push the changes to my bare repository on the server but I have no idea of how to checkout a working copy of the repository in my www directory and automatically

Is there a “Workflow Engine” implementation for Delphi?

做~自己de王妃 提交于 2019-12-06 04:36:14
For (application) server development with Delphi, I would like to use a workflow engine similar to the existing implementations for other programming languages (see http://en.wikipedia.org/wiki/Workflow_engine ). Is there already an implementation or should I better write my own? There is another one: Workflow studio from Tms Software http://www.tmssoftware.com/site/workflow.asp There's a commercial product Common Knowledge which incorporates workflow and business rules. 来源: https://stackoverflow.com/questions/3492725/is-there-a-workflow-engine-implementation-for-delphi

Workflow Tools Comparison?

强颜欢笑 提交于 2019-12-06 04:22:51
问题 There is a pretty strong need for us to design some workflows around various processes. The problem is none of us actually know any workflow technology yet, and finding good data to compare the available options has been tedious and not entirely fruitful. So I figured I'd ask you guys. The main technologies we are looking at are Windows Workflow Foundation and eDocs Workflow. What other options are there? Sharepoint 2007 has workflow functionality too, right? Is that just based on WF? What

best way to versionize different git branches

风流意气都作罢 提交于 2019-12-06 04:21:53
问题 We have the following scenario: We have several base versions of our game OpenLieroX; right now 0.57, 0.58 and 0.59. For each base version, we have a seperate branch. Each such base version has several releases (like 0.57 beta1-beta8 and rc1, 0.58 beta1-beta9). When we are working on new stuff, we are working in the highest base version branch (right now that is 0.59). When we are fixing some reported bugs, we do that in the earliest version (mostly 0.58) where that occured. From time to time