Come in my phoneđđ Do this with your friends! #appyourself #Facecast #creativevideo https://www.instagram.com/p/BuVfNDAAPmP/?utm_source=ig_tumblr_share&igshid=ew7hbirbldib
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
â Live Streamingâ Interactive Chatâ Private Showsâ HD Qualityâ Free Actions
Free to watch âą No registration required âą HD streaming
What if you could be in your own app?đFollow this little girl (ID 5303) and let fun begin now. #FacecastApp #AppYourself #comedy https://www.instagram.com/p/BuNwECjBYCu/?utm_source=ig_tumblr_share&igshid=13kaab2k14tso
AppYourself bietet gĂŒnstiges Baukastensystem fĂŒr Android AppsKnapp 30 Millionen Nutzer sind es inzwischen deutschlandweit, die per Smartphone oder Tablet im Internet surfen, und die Tendenz ist steigend. Apps werden dadurch immer stĂ€rker zu einem wichtigen Marketinginstrument, um Kunden dort...
Schnell und einfach die eigene App erstellen â mit AppYourself
Schnell und einfach die eigene App erstellen â mit AppYourselfGeht heute ĂŒberhaupt noch etwas ohne App? Wenn man sich einmal anschaut, wie viele Menschen bereits ganz unterschiedliche Apps nutzen, kommt man schnell zu dem Schluss, dass ohne Apps nichts mehr geht. Egal ob auf dem...
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
â Live Streamingâ Interactive Chatâ Private Showsâ HD Qualityâ Free Actions
Free to watch âą No registration required âą HD streaming
Welche Farben kommen bei Ihren App Benutzern gut an? Die neue Farbpalette im App Baukasten hilft Ihnen die richtige zu finden.
Die Farbpalette
Die neue Farbpalette bietet sofort attraktive FarbvorschlĂ€ge fĂŒr Ihre App, die auch gut miteinander harmonieren. Nachdem Sie eine Farbe aus dem Hexagon ausgewĂ€hlt haben, können Sie auf der rechten Seite der Palette die Farbe schrittweise in Richtung weiĂ oder schwarz bewegen.
Die neue Farbpalette im App Baukasten
Individuelle Farben bestimmen
Ist Ihre Farbe nicht dabei? Oder möchten Sie konkrete App Farben treffen, die genau Ihrer Corporate Identity entsprechen? SelbstverstĂ€ndlich haben Sie auch weiterhin die Möglichkeit die Farbe ĂŒber den Farbcode zu bestimmen.
Nachdem wir in den vergangenen drei Monaten auf der Suche nach einem passenden Investor waren, können wir heute bekannt geben, dass sich die Heise Medien Gruppe Hannover mit einem mittleren 6-stelligen Betrag an AppYourself beteiligt hat.
Die Beteiligung basiert dabei auf dem gemeinsamen Ziel, das Thema Mobile Marketing in Deutschland nach vorne zu bringen. Neben den finanziellen Mitteln, mit denen wir die Wachstumsphase finanzieren werden, liefert uns Heise auch wichtiges Kunden Feedback. Denn Heise wird unsere Produkte auch aktiv in ihren Vertrieb aufnehmen. Als einer der gröĂten Telefonbuchverlage in Deutschland bietet Heise heute bereits eine breite Produktpalette fĂŒr kleine und mittelstĂ€ndische Unternehmen an, die nun um Apps und Mobile Marketing erweitert wird.Â
Daher sind wir sehr zufrieden, mit Heise nicht nur einen finanzstarken Investor sondern den idealen strategischen Partner gefunden zu haben.Â
For some time lately we have been considering how to increase the frequency of new features' updates in one of our projects. It led us to a small investigation, in which we came across the Continuous Deployment. The outcome of our research is very interesting and inspired us to write this article.
What is Continuous Deployment?
In developersâ community, continuous deployment is perceived as very controversial. Developer who faces this topic for the first time thinks:
âthatâs encouragement for low quality code writing and uncoordinated development process!â
You cannot be more wrong. Continuous deployment isnât just an abstract theory. Itâs the next step in common releasing (common means released each week or month). Naturally, adopting continuous deployment is not an 1-minute action, it requires investment in reorganization & automation of development process. Fortunately in the end it gives the desired effects and teams can cheaply and safely use innovative features at any stage of the project evolution, mitigating the risk that the solutions won't work, by exposing them to only small group of users.
Eric Ries describes the entire process of transition in a very straightforward way:
Â
Following these five steps will not give you continuous deployment overnight. In its initial stages, most of your root cause analysis will come back to the same problem: "we havenât invested in preventing that yet." But with patience and hard work, anyone can use these techniques to inexorably drive waste out of their development process.
Continuous integration server.
This is the backbone of continuous deployment. We need a centralized place where all automated tests (unit tests, functional tests, integration tests, everything) can be run and monitored upon every commit. Whatever tool you use, itâs important that it be able to run all the tests your organization writes, in all languages and frameworks.
If you only have a few tests (or even none at all), donât despair. Simply set up the CI server and agree to one simple rule: weâll add a new automated test every time we fix a bug. Following that rule will start to immediately get testing where itâs needed most: in the parts of your code that have the most bugs and, therefore, drive the most waste for your developers. Even better, these tests will start to pay immediate dividends by propping up that most-unstable code and freeing up a lot of time that used to be devoted to finding and fixing regressions (aka "firefighting").
If you already have a lot of tests, make sure that the total time the CI server spends on a full run is a small amount of time, 10-30 minutes at the maximum. If thatâs not possible, simply partition the tests across multiple machines until you get the time down to something reasonable.
Â
Source control commit check.
The next piece of infrastructure we need is a source control server with a commit-check script. Iâve seen this implemented with CVS, subversion or Perforce and have no reason to believe it isnât possible in any source control system. The most important thing is that you have the opportunity to run custom code at the moment a new commit is submitted but before it is accepted by the server. Your script should have the power to reject a change and report a message back to the person attempting to check in. This is a very handy place to enforce coding standards, especially those of the mechanical variety.
But its role in continuous deployment is much more important. This is the place you can control what I like to call âthe production lineâ to borrow a metaphor from manufacturing. When something is going wrong with our systems at any place along the line, this script should halt new commits. So if the CI server runs a build and even one test breaks, the commit script should prohibit new code from being added to the repository. In subsequent steps, we'll add additional rules that also "stop the line," and therefore halt new commits.
This sets up the first important feedback loop that you need for continuous deployment. Our goal as a team is to work as fast as we can reliably produce high-quality code - and no faster. Going any âfasterâ is actually just creating delayed waste that will slow us down later.
Simple deployment script.
Start simple. Itâs not even important that you have an automated process, although as you practice you will get more automated over time. Rather, itâs important that you do every deployment the same way and have a clear and published process for how to do it that you can evolve over time.
For most websites, I recommend starting with a simple script that just rsyncâs code to a version-specific directory on each target machine. If you are facile with unix symlinks, you can pretty easily set this up so that advancing to a new version (and, hence, rolling back) is as easy as switching a single symlink on each server. But even if thatâs not appropriate for your setup, have a single script that does a deployment directly from source control.
When you want to push new code to production, require that everyone use this one mechanism. Keep it manual, but simple, so that everyone knows how to use it. And, most importantly, have it obey the same âproduction lineâ halting rules as the commit script. That is, make it impossible to do a deployment for a given revision if the CI server hasnât yet run and had all tests pass for that revision.
Real-time alerting.
No matter how good your deployment process, bugs can still get through. The most annoying variety are bugs that donât manifest until hours or days after the code that caused them is deployed. To catch those nasty bugs, you need a monitoring platform that can let you know when things have gone awry, and get a human being involved in debugging them.
To start, I recommend a system like the open source nagios. Out of the box, it can monitor basic system stats like load average and disk utilization. For continuous deployment purposes, we want to be able to have it monitor business metrics like simultaneous users or revenue per unit time. At the beginning, simply pick one or two of these metrics to use. Anything is fine to start, and itâs important not to choose too many. The goal should be to wire the nagios alerts up to a pager, cell phone, or high-priority email list that will wake someone up in the middle of the night if one of these metrics goes out of bounds. If the pager goes off too often, it wonât get the attention it deserves, so start simple.
Follow this simple rule: every time the pager goes off, halt the production line (which will prevent checkings and deployments). Fix the urgent problem, and donât resume the production line until youâve had a chance to schedule a five whys meeting for root cause analysis, which weâll discuss next.
Root cause analysis (five whys).
So far, weâve talked about making modest investments in tools and infrastructure and adding a couple of simple rules to our development process. Most teams should be able to do everything weâve talked about in a week or two, at the most, since most of the work is installing and configuring off-the-shelf software. Five whys is not something you can get in a box. Itâs a powerful practice that is the motive force that will drive major improvements in development process incrementally, one step at a time.
The idea is to always get to the root cause of any unexpected failure in the system. A test failing, a nagios alert firing, or a customer seeing a new bug are all sufficient triggers for root cause analysis. Thatâs why we always shut down the production line for problems of this kind - it signals the need for root cause analysis and also creates the time and space for it to happen (since it deliberately slows the whole team down).
Five whys gets its name from the process of asking âwhyâ recursively to uncover the true source of a given problem. The way five whys works to enable continuous deployment is when you add this rule: every time you do a root cause analysis, make a proportional investment in prevention at each of the five levels you uncover. Proportional means that the solution shouldnât be more expensive than the problem youâre analyzing; a minor inconvenience for only a few customers should merit a much smaller investment than a multi-hour outage.
But no matter how small the problem, always make some investments, and always make them at each level. Since our focus in this post is deployment that means always asking the question âwhy was this problem not caught earlier in our deployment pipeline?â So if a customer experienced a bug, why didnât nagios alert us? Why didnât our deployment process catch it? Why didnât our continuous integration server catch it? For each question, make a small improvement.
What is interesting, there is another term called âContinuous Deliveryâ that sounds similar to âContinuous Deploymentâ, but has slightly different meaning. It is related to speeding up software development, but is also more focused on having prepared package to deploy (after every check-in to source control), than on the final action of deploying it to the production.
We can look on Continuous Delivery as a subset of Continuous Deployment. To introduce Continuous Delivery we need to make similar changes as in the Continuous Deployment, but at the end we decide when to deploy delivered software to the production instead of automatic publication few times per day. If you begin your journey with Continuous Deployment I would recommend you to start from Continuous Delivery.
Once you have mastered the first step, the next one will be piece of cake!
For whom Continuous Deployment/Delivery is intended?
Continuous Deployment is dedicated for agile teams that want to deliver high quality software (which is the first of the Twelve Principles standing behind the Agile Manifesto) to the production much more frequently, provide a richer and faster feedback cycle from usersâ feedback.
It is also intended for teams that want to reduce stress connected with releases & âchecking twiceâ behaviour before deployment (because small changes reduce the risk during deployment).
What tools are out there?Â
What is needed to start Continuous Deployment/Delivery?
As I mentioned above - there are no special tools to implement the Continuous Deployment/Delivery approach. The main change is more HOW we use this existing tools.
It means that we can still use well known tools like:
Subversion or Github for source code versioning
Liquibase for database changes management liquibase.org
Puppet puppetlabs.com or Chef opscode.com for infrastructure management
Nagios nagios.org for infrastructure monitoring
Maven for building automation and dependency management
Jenkins or Hudson for Continuous Integration
JUnit, DBUnit, Mockito or Selenium for testing
Fitness fitnesse.org, Concordion concordion.org , Easyb easyb.org or JBehave jbehave.org for acceptance tests
JMeter for load testing
IMO Eric's advices, quoted above, very accurately navigate beginners into required package of changes in order to adopt Continues Deployment/Delivery â and as he wrote in one of his articles:
Â
⊠learn from our mistakes.
If you read these pieces, you'll get a visceral sense for just how painful it was.
But it worked. We made it. So can you.
Are we going to use it in AppYourself?
Yeah, naturally we should start with Continuous Delivery as AppYourself is a startup & we expect quick userâs feedback and results. Of course first question is what is needed, Continuous Delivery or Continuous Deployment? Beginning of its usage is not an one-time event, so we will take some time to design and introduce new processes in order to deliver software that fits our requirements, project and the whole organization continuously. When we will finish working with Continuous Delivery approach then we should try to introduce Continuous Deployment to introduce software to the production more frequently.
Now that we are used to the Continuous Integration approach with Jenkins, which provides us with ready-to-use test environment and ready-to-deploy application package.
What needs to be improved in order to acquire Continuous Delivery in AppYourself is:
Shortening of the delivery time of ready-to-deploy software.Â
Currently we have such software every 1-2 weeks. The main goal is to have prepared package after developing or solving every single issue (few minutes to max. few hours). And this requires a different testing strategy, source control management and development model.
If we need next step in delivering our software - Continuous Deployment - many technical problems will have to be solved, f.eg. hot deployments on tomcat or changing database structure with each release.
It requires fully automated tests and high test coverage on different levels: like unit tests, integration tests, functional/acceptance tests, performance/load tests, penetration tests for security and explanatory tests. This will enable us to automatically prove that software still works properly and is deployable.
Introduce artefacts repository (like Nexus http://www.sonatype.org/nexus/) in order to store and manage many more versions of our software and their modules which are being used for delivery and deployment to the production.
Detach features deployments from the sprints or iterations.
Introduce Feature Toggle pattern martinfowler.com for detachment of unfinished features from deployment requirements.
Agile approach for releasing software seems to be as natural as agile approach for developing it. That is why we should improve our whole development lifecycle with testing, versioning and deploying at the head.
From now on, we can assure you that this topic will be in constant motion in terms of AppYourself. We plan to devote ourselves fully to these ideas and give you first-hand reports from our progress. Stay tuned for more!
by K.Kornijenko, M.Muras, M.Kaiser
edited P.Chaberski
  Resources
We strongly recommend you this great book which describes Continuous Delivery approach in details Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation
And for those of you who will be even more curious in this area we have this set of lectures concerning Continuous Delivery/Deployment. Of course we are always eager to answer any of your question so donât be shy and write to us as well in case of doubts and questions.
Five Whys
Continuous Deployment in 5 easy steps
Analysis for Continuous Delivery: Five Core Practices