workflow

Best workflow with Git & Github

 ̄綄美尐妖づ 提交于 2019-11-30 11:30:30
问题 I'm looking for some advice on how to properly structure the workflow for my team with Git & GitHub. We are recent svn converts and it's kind of confusing how we should best set up our day-to-day workflow. Here is a little background: I'm comfortable with command line and my team is pretty new to it but can follow use commands. We all are working on the same project with 3 environments (development, staging, and production). We are a mix of developers & designers so some use the git GUI and

Is it possible to work in Eclipse with keyboard only?

妖精的绣舞 提交于 2019-11-30 11:28:02
问题 as most of us surely do every now and then, I try to improve my workflow. As Eclipse is my main IDE, I wondered if it may be possible to use it without mouse. I browsed the available shortcuts and tried to use them instead of my mouse. I found interesting features like Ctrl+3 which opens something like the Apple spotlight. I know there are a lot of questions concerning favorite shortcuts etc. but I'd like to know if it works because at the moment it feels a bit squishy 100% without mouse. So

Can I enforce a merge-only branch in git?

为君一笑 提交于 2019-11-30 11:09:45
I'm using git, and I'm setting up the following branches to support my workflow: release, which only contains released software, testing, which contains software released to the testing group, develop, which is where development happens, some_topic_branch, where features, etc. get added. Topic branches branch from and get merged into develop. When we're ready for a testing release, testing merges in develop. When a testing release is approved for production, release merges in testing. This is all easy enough to set up, but I'm wondering about the enforcement options in git. For example, is it

Need GIT workflow suggestion

久未见 提交于 2019-11-30 10:34:59
I have been studding GIT for the last couple of weeks in an attempt to get my team's code under control. Unfortunately the code we work with is a proprietary language with some peculiarities which is keeping me from finding a practical enough workflow to be implemented. Still, I'm probably not aware of all GIT's capabilities so I ask you guys for suggestion. I will divide this post in three: 1) how are my files; 2)the workflow we've figured so far; 3)options I reckon for the future. My Files then; As I said this is a proprietary script language, in which within the code itself you will find

Why should I care about RVM's Gemset feature when I use Bundler?

丶灬走出姿态 提交于 2019-11-30 10:27:14
问题 I just don't get it. I thought, Bundler was developed to resolve version conflicts between gems. So that I just have to require "bundler/setup" and everything is fine, knowing that Bundler will load the correct versions of all my gems and their dependencies. Now, RVM is great for managing multiple Rubies, I know, but why should I care about the Gemset feature? Do I miss something here? Can it make my development even easier? Maybe, some of you can give me some hints on the perfect RVM +

Windows workflow [closed]

此生再无相见时 提交于 2019-11-30 10:24:06
Can anyone explain what is windows workflow and how can we use in the work organization. Windows Workflow Foundation is a fascinating concept. It allows you to create powerful applications (or just parts of them) using a combination of flowchart-like concepts and normal code. The deeper value of this may not be immediately obvious. Say you're building a large e-commerce site. Over time, your workflows for processes such as fulfillment will change radically. The code will eventually become a horrid cludge of ideas shoehorned over old ideas. You will be forced to work up reams of documentation

To Workflow or Not to Workflow?

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-30 10:04:36
问题 I am responsible for a team of developers who will are about to start development of a light weight insurance claims system. The system involves a lot of manual tasks and business workflows and we are looking at using Windows Workflow (.NET 4.0). An example of the business domain is as follows: A policy holder calls the contact centre to lodge a claim. This “event” fires two sub tasks which are manually actioned in parallel and may take a lengthy time to complete; Check customer for fraud – A

GitHub上最全的机器学习工具手册

十年热恋 提交于 2019-11-30 09:37:50
近日在Github上发现了一份不错的学习清单,关于Python 在数据科学方面使用库的速查表。 ( Github地址 :https://github.com/FavioVazquez/ds-cheatsheets) 这份速查表包含了 Pandas、Jupyter、SQL、Dask 等十个模块的内容。 整理这套完整的数据科学手册的作者是来自墨西哥的 Favio Vázquez。他是一名物理学家和计算工程师,热爱科学、哲学、编程,研究的是宇宙学和大数据。虽然这个项目是些基本的 API 调用,但是用来备忘和速查足以,而且也是作者花了很大的时间和精力才整理出来的 下面一起来看看这份速查表里都有哪些干货: Business Science Business Science Problem Framework (PDF) 地址: https://github.com/businessscience/cheatsheets/blob/master/Business_Science_Problem_Framework.pdf Data Science with Python Workflow (PDF) 地址: https://github.com/business-science/cheatsheets/blob/master/Data_Science_With_Python_Workflow

Proper Git workflow for combined OS and Private code?

╄→尐↘猪︶ㄣ 提交于 2019-11-30 08:25:26
问题 I have a closed source project that is built on my open source framework. I want to know how I should structure my workflow. Below is my best guess using git with submodules. I create a public framework repo on github with submodules that are separate git repos. I purchase a "micro" account on github ($7) so I can have a private repo. I create a private repo and clone the public framework repo. From here I can make changes to: My private code and push to my private repo on github The public

How to track execution time of each line / block of lines / methods in PHP?

我的未来我决定 提交于 2019-11-30 07:14:50
问题 Is there a best practice (IDE-based?), a PHP/bash script or something else to get the execution time of a line get the execution time of a block of lines (for example line 17 to 42) get the execution time of a certain function or method in PHP ? I'm currently stuck with self-built solutions that use microtime() , but that's a dirty, unhandy and slow method to do so. I'm especially interested in solutions with the major PHP IDEs like Eclipse, Netbeans, PHPStorm and VIM. A perfect solution