• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 15:59
CET 21:59
KST 05:59
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
TL.net Map Contest #21: Winners2Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
Starcraft, SC2, HoTS, WC3, returning to Blizzcon!20$5,000+ WardiTV 2025 Championship5[BSL21] RO32 Group Stage3Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win9
StarCraft 2
General
TL.net Map Contest #21: Winners Starcraft, SC2, HoTS, WC3, returning to Blizzcon! RotterdaM "Serral is the GOAT, and it's not close" Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win 5.0.15 Patch Balance Hotfix (2025-10-8)
Tourneys
$5,000+ WardiTV 2025 Championship Constellation Cup - Main Event - Stellar Fest Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond) $3,500 WardiTV Korean Royale S4
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ SnOw's ASL S20 Finals Review [BSL21] RO32 Group Stage Practice Partners (Official) [ASL20] Ask the mapmakers — Drop your questions
Tourneys
[Megathread] Daily Proleagues [BSL21] RO32 Group B - Sunday 21:00 CET [BSL21] RO32 Group A - Saturday 21:00 CET BSL21 Open Qualifiers Week & CONFIRM PARTICIPATION
Strategy
Current Meta How to stay on top of macro? PvZ map balance Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Dawn of War IV ZeroSpace Megathread General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine YouTube Thread Dating: How's your luck?
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Why we need SC3
Hildegard
Career Paths and Skills for …
TrAiDoS
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1233 users

The Big Programming Thread - Page 776

Forum Index > General Forum
Post a Reply
Prev 1 774 775 776 777 778 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Prillan
Profile Joined August 2011
Sweden350 Posts
October 07 2016 22:11 GMT
#15501
On October 08 2016 06:56 Acrofales wrote:
Show nested quote +
On October 08 2016 05:07 Prillan wrote:
On October 06 2016 02:05 Acrofales wrote:
On October 06 2016 01:44 spinesheath wrote:
OOP and functional are not mutually exclusive. I think Robert C. Martin once put it like that:
Structured programming is the removal of GOTO.
Object oriented programming is the removal of function pointers.
Functional programming is the removal of assignments.

All of these can be integrated into a single language, and many functional languages already are both structured and object oriented. Support for functional programming in the OOP languages like C# is still limited (afaik we don't have much in the way of optimizations for recursion yet), but it's getting better.

The future will be FP + OOP, not either of these.

many scripting languages (python, ruby, perl, php) have functional and oop aspects. In fact, Haskell, one of the ur-languages for functional programming, is at core a scripting language, and it has its own weird idea of objects (monads).

Functional aspects are being increasingly adopted into classical OOP languages. The future is very much a mix, and probably some further innovation that I don't even know about yet.

How is Haskell a scripting language? Also, in what way are monads similar to objects?

Hugs, turtle, plenty of engines that allow for scripting in Haskell.

As for monads and objects, I got a bit enthusiastic there. While they overlap in some of their purposes, they work completely differently and have different foundations, so disregard that bit.


Of course, turtle is a nice library you can use, but I wouldn't say "is at core a scripting language". That part really confused me.
TheBB's sidekick, aligulac.com | "Reality is frequently inaccurate." - Douglas Adams
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2016-10-07 23:14:25
October 07 2016 23:04 GMT
#15502
my java program has an action listener
it has some text fields

then i hit a button and it does calculations on numbers

what would I need to do to check for input that isn't numbers? like characters or null?

throw an illegal argument exception?


If so, how do I go about checking if it isn't a number?



edit:

should I check to see if the fields are "> 0", which will throw some sort of exception if they aren't?


edit 2:

This is what I did


try {
principleF = Float.parseFloat(principle.getText());
rateF = Float.parseFloat(rate.getText());
yearF = Float.parseFloat(year.getText());
} catch (NumberFormatException e) {
System.out.println("Please enter numbers into the fields");
}
phar
Profile Joined August 2011
United States1080 Posts
October 07 2016 23:09 GMT
#15503
On October 08 2016 05:56 mantequilla wrote:
thanks for answering but it's not the problem of separate trial and full versions continuously deployed.

I want to deploy the same thing, with may be a few configs changed, numerous times. Like say today 10 people requested trials, and 5 people bought my app, I need 15 different instances with different url's (app1.com, app2.com ...), different databases, but its the same app, same code.

There's a resource management template concept in azure, but that only describes the architecture (tomcat+mysql). It doesn't describe what will be uploaded to where, with which config.

Imagine 10 people bought your app today, from your company's website. There should be a mechanism that deploys and configures your app for each of them.

Ok I see, you're actually trying to find a good system for deploying separate whitelabeled instances of your app?
Who after all is today speaking about the destruction of the Armenians?
RoomOfMush
Profile Joined March 2015
1296 Posts
Last Edited: 2016-10-07 23:23:55
October 07 2016 23:22 GMT
#15504
@travis:
One thing you could do is use Spinners or FormatedTextFields instead of regular TextFields. With Spinners and FormattedTextFields you can decide which inputs are possible and which arent. A Spinner with a SpinnerNumberModel for example can be configured in a way that only doubles can be entered. Anything that is not a double will not be accepted by the Spinner.

But if you really have to stick to regular old JTextField then your current approach is okay. Instead of printing the error to console however you might want to have a pop-up dialog appear with the error message. The easiest way to do this is to use the JOptionPane. Its a horrible class from a design perspective but it is quite useful to get fast acceptable results.

Example:
	try {
principleF = Float.parseFloat(principle.getText());
rateF = Float.parseFloat(rate.getText());
yearF = Float.parseFloat(year.getText());
} catch (NumberFormatException e) {
JOptionPane.showMessageDialog(principle,
"Please enter numbers into the fields",
"Error - Invalid Input",
JOptionPane.ERROR_MESSAGE);
}


Edit: I assume you use Swing. If you use JavaFX or some other GUI library (SWT, etc) then the above will obviously not work. Spinners however should be available in any GUI library.
Ropid
Profile Joined March 2009
Germany3557 Posts
October 07 2016 23:24 GMT
#15505
On October 08 2016 08:09 phar wrote:
Show nested quote +
On October 08 2016 05:56 mantequilla wrote:
thanks for answering but it's not the problem of separate trial and full versions continuously deployed.

I want to deploy the same thing, with may be a few configs changed, numerous times. Like say today 10 people requested trials, and 5 people bought my app, I need 15 different instances with different url's (app1.com, app2.com ...), different databases, but its the same app, same code.

There's a resource management template concept in azure, but that only describes the architecture (tomcat+mysql). It doesn't describe what will be uploaded to where, with which config.

Imagine 10 people bought your app today, from your company's website. There should be a mechanism that deploys and configures your app for each of them.

Ok I see, you're actually trying to find a good system for deploying separate whitelabeled instances of your app?


His problem is how to do the automation of this. His customers will be able to customize and order something from his webpage, and then a VM has to be created on Microsoft's Azure for the customer. He is searching for how to deal with Azure through a script or whatnot, from the webpage running on his Unix stuff, and Azure running on Microsoft's servers that are Windows.
"My goal is to replace my soul with coffee and become immortal."
phar
Profile Joined August 2011
United States1080 Posts
October 08 2016 01:59 GMT
#15506
Yup, gotcha. But the terminology for what he's looking for has much less to do with deployment, and much more to do with whitelabeling. Might help the search.
Who after all is today speaking about the destruction of the Armenians?
Acrofales
Profile Joined August 2010
Spain18108 Posts
October 08 2016 01:59 GMT
#15507
@travis: your current approach is OK, but remember back when you were asking about exceptions, and people told you not to rely on them for the logic of your program, because it will be slow? That still applies. Checking if a string is a number is really easy with a regular expression: s.matches("-?\\d+(\\.\\d+)?") should work to start with. There's also NumberFormat, which might be more generic.
RoomOfMush
Profile Joined March 2015
1296 Posts
Last Edited: 2016-10-08 02:45:39
October 08 2016 02:43 GMT
#15508
On October 08 2016 10:59 Acrofales wrote:
@travis: your current approach is OK, but remember back when you were asking about exceptions, and people told you not to rely on them for the logic of your program, because it will be slow? That still applies. Checking if a string is a number is really easy with a regular expression: s.matches("-?\\d+(\\.\\d+)?") should work to start with. There's also NumberFormat, which might be more generic.

But your regular expression does not do the same thing as parsing a double and checking for an exception. Here is the official JavaDoc for the valueOf(String) method from class Double: https://docs.oracle.com/javase/7/docs/api/java/lang/Double.html#valueOf(java.lang.String)

The doc contains an example of how to construct a correct regex:
  final String Digits     = "(\\p{Digit}+)";
final String HexDigits = "(\\p{XDigit}+)";
// an exponent is 'e' or 'E' followed by an optionally
// signed decimal integer.
final String Exp = "[eE][+-]?"+Digits;
final String fpRegex =
("[\x00-\\x20]*"+ // Optional leading "whitespace"
"[+-]?(" + // Optional sign character
"NaN|" + // "NaN" string
"Infinity|" + // "Infinity" string

// A decimal floating-point string representing a finite positive
// number without a leading sign has at most five basic pieces:
// Digits . Digits ExponentPart FloatTypeSuffix
//
// Since this method allows integer-only strings as input
// in addition to strings of floating-point literals, the
// two sub-patterns below are simplifications of the grammar
// productions from section 3.10.2 of
// The Java™ Language Specification.

// Digits ._opt Digits_opt ExponentPart_opt FloatTypeSuffix_opt
"((("+Digits+"(\\.)?("+Digits+"?)("+Exp+")?)|"+

// . Digits ExponentPart_opt FloatTypeSuffix_opt
"(\\.("+Digits+")("+Exp+")?)|"+

// Hexadecimal strings
"((" +
// 0[xX] HexDigits ._opt BinaryExponent FloatTypeSuffix_opt
"(0[xX]" + HexDigits + "(\\.)?)|" +

// 0[xX] HexDigits_opt . HexDigits BinaryExponent FloatTypeSuffix_opt
"(0[xX]" + HexDigits + "?(\\.)" + HexDigits + ")" +

")[pP][+-]?" + Digits + "))" +
"[fFdD]?))" +
"[\x00-\\x20]*");// Optional trailing "whitespace"

if (Pattern.matches(fpRegex, myString))
Double.valueOf(myString); // Will not throw NumberFormatException
else {
// Perform suitable alternative action
}

The code above is perhaps not the fastest, I believe they valued readability over performance. I think the solution using parseString could very well be the best way of doing this even though it is a bad practice. It is unfortunate that some of the java core classes work this way.
teamamerica
Profile Blog Joined July 2010
United States958 Posts
October 08 2016 04:43 GMT
#15509
On October 08 2016 10:59 Acrofales wrote:
@travis: your current approach is OK, but remember back when you were asking about exceptions, and people told you not to rely on them for the logic of your program, because it will be slow? That still applies. Checking if a string is a number is really easy with a regular expression: s.matches("-?\\d+(\\.\\d+)?") should work to start with. There's also NumberFormat, which might be more generic.


The thing about using a regex is that using an exception isn't that slow if the exceptional path isn't taken often (that is to say, using an exception doesn't slow down the happy path). Now in no way am I saying use exceptions in the general case, but based on what the Java standard library provides I *highly* recommend using parseXXX and catching Exception, it is more idiomatic based on Java standard library and faster than a simple regex. Plus you probably will fuck up regex unless you copy super long one (for example that regex rejects "100." or other locale formatting where "," is decimal seperator). See this answer http://stackoverflow.com/a/28075127 (I avoided top since I gave up trusting Java benchmarks without JMH from people I don't know tbh).

Obviously there are cases to sit down and think how do I avoid exception (in which case bringing in regex probably isn't the answer anyway...see the actual parseDouble http://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/8u40-b25/sun/misc/FloatingDecimal.java#FloatingDecimal.readJavaFormatString(java.lang.String)).

For example see this benchmark comparing incorrect regex, try/catch, and some SO answer https://gist.github.com/anonymous/8ed6df7b5297151b7ff545ef25011798. Also this doesn't even have other methods feed you an integer at end of it.
RIP GOMTV. RIP PROLEAGUE.
mantequilla
Profile Blog Joined June 2012
Turkey779 Posts
October 08 2016 07:22 GMT
#15510
On October 08 2016 08:24 Ropid wrote:
Show nested quote +
On October 08 2016 08:09 phar wrote:
On October 08 2016 05:56 mantequilla wrote:
thanks for answering but it's not the problem of separate trial and full versions continuously deployed.

I want to deploy the same thing, with may be a few configs changed, numerous times. Like say today 10 people requested trials, and 5 people bought my app, I need 15 different instances with different url's (app1.com, app2.com ...), different databases, but its the same app, same code.

There's a resource management template concept in azure, but that only describes the architecture (tomcat+mysql). It doesn't describe what will be uploaded to where, with which config.

Imagine 10 people bought your app today, from your company's website. There should be a mechanism that deploys and configures your app for each of them.

Ok I see, you're actually trying to find a good system for deploying separate whitelabeled instances of your app?


His problem is how to do the automation of this. His customers will be able to customize and order something from his webpage, and then a VM has to be created on Microsoft's Azure for the customer. He is searching for how to deal with Azure through a script or whatnot, from the webpage running on his Unix stuff, and Azure running on Microsoft's servers that are Windows.


yes this. The problem is not about azure being windows (azure has linux vm's too) and my site running on unix. Problem is finding a way to automate through a script or whatnot.

There's an api inside azure sdk about creating vm's but there's another problem. If you build a vm from scratch you have to take care of everything installed on it, meaning IaaS (you are just renting hardware). There are things called "app services" on azure, which are preconfigured PaaS solutions, like a preconfigured MySQL server, which publishers take care of it. I don't know if a VM created by you and a MySQL app service is equivalent.
Age of Mythology forever!
JWD[9]
Profile Blog Joined November 2015
364 Posts
Last Edited: 2016-10-08 09:48:26
October 08 2016 09:31 GMT
#15511
c++ std::string::operator+=

string test("Aha");
char exclamation='!';


test += ", it was you"+exclamation;


test += ", it was you";
test += exclamation;


Any Ideas why putting it on one line throws an exception for me?
edit:
Found the answer in the primer:
When we mix strings and string or character literals, at least one operand to each + operator must be of string type

in case anyone, wonders.
graNite
Profile Blog Joined December 2010
Germany4434 Posts
October 08 2016 09:45 GMT
#15512
hey guys, i need some general advice for how to go on with my table tennis exercise project:

i want to code a site where you can
1) draw arrows on tables and add a bit of text to make it look similiar to this: [image loading]
2) then the user can save this on the server to restore it and work on it later
3) the user can print a black and white version of the exercise that is not just the same thing you see in the browser, but with different styles applied (other colors for the table and arrows,maybe more things)

i implemented 1) already with canvas and javascript. how can i add 2) and 3) now? what do i need to do this?

what i thought was to somehow save the mouse interactions and then redraw them when the exercise gets restored.
for 3) i have no idea...

also, is it better to use existing user frameworks or can i code a simple user registration and interface better by myself to get what i want?
"Oink oink, bitches" - Tasteless on Pigbaby winning a map against Flash
mantequilla
Profile Blog Joined June 2012
Turkey779 Posts
Last Edited: 2016-10-08 12:51:06
October 08 2016 12:50 GMT
#15513
I am not very familiar with canvas, so correct me if I'm wrong, but from what I read, canvas doesn't have semantic information about a rectangle, arrow, circle etc, after they are drawn. Like when you draw a rectangle it becomes a bunch of pixels, canvas doesn't know if there's a rectangle on it.

That means you only have to save it as an image and restore it the same way. You would upload it as a file to server, and download it later for editing.

I'd look at those popular canvas libraries, because the vanilla js api doesn't appear to be very capable.

What are you using on the server side?
Age of Mythology forever!
berated-
Profile Blog Joined February 2007
United States1134 Posts
October 08 2016 12:50 GMT
#15514
On October 08 2016 16:22 mantequilla wrote:
Show nested quote +
On October 08 2016 08:24 Ropid wrote:
On October 08 2016 08:09 phar wrote:
On October 08 2016 05:56 mantequilla wrote:
thanks for answering but it's not the problem of separate trial and full versions continuously deployed.

I want to deploy the same thing, with may be a few configs changed, numerous times. Like say today 10 people requested trials, and 5 people bought my app, I need 15 different instances with different url's (app1.com, app2.com ...), different databases, but its the same app, same code.

There's a resource management template concept in azure, but that only describes the architecture (tomcat+mysql). It doesn't describe what will be uploaded to where, with which config.

Imagine 10 people bought your app today, from your company's website. There should be a mechanism that deploys and configures your app for each of them.

Ok I see, you're actually trying to find a good system for deploying separate whitelabeled instances of your app?


His problem is how to do the automation of this. His customers will be able to customize and order something from his webpage, and then a VM has to be created on Microsoft's Azure for the customer. He is searching for how to deal with Azure through a script or whatnot, from the webpage running on his Unix stuff, and Azure running on Microsoft's servers that are Windows.


yes this. The problem is not about azure being windows (azure has linux vm's too) and my site running on unix. Problem is finding a way to automate through a script or whatnot.

There's an api inside azure sdk about creating vm's but there's another problem. If you build a vm from scratch you have to take care of everything installed on it, meaning IaaS (you are just renting hardware). There are things called "app services" on azure, which are preconfigured PaaS solutions, like a preconfigured MySQL server, which publishers take care of it. I don't know if a VM created by you and a MySQL app service is equivalent.


You're not asking for a generic problem that is already solved, you're asking for your specific problem with your specific configurations and your specific deployment needs. No one is going to do that job for you, or else they would be getting paid and not you. Your talking about projects that takes months or years to complete and you think someone on the internet is just going to give you a step by step instruction on how to do it? People that know how to do the stuff your talking about get paid six figures plus to figure that stuff out.

I'm not sure why you think that should be "easy".

mantequilla
Profile Blog Joined June 2012
Turkey779 Posts
Last Edited: 2016-10-08 13:01:58
October 08 2016 13:01 GMT
#15515
what's too "specific" about automating a web app's deployment? you mean thousands of companies in the world are deploying their web apps to cloud by hand or through homemade solutions they wrote and paying 6 figures to do it? And I am not asking for step by step solutions, just asking what kind of a tool or api or whatever they are using.
Age of Mythology forever!
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2016-10-08 13:18:46
October 08 2016 13:15 GMT
#15516
On October 08 2016 22:01 mantequilla wrote:
what's too "specific" about automating a web app's deployment? you mean thousands of companies in the world are deploying their web apps to cloud by hand or through homemade solutions they wrote and paying 6 figures to do it? And I am not asking for step by step solutions, just asking what kind of a tool or api or whatever they are using.


Yes, I think thousands of companies are using pieced together home grown solutions, or they are paying big money to help them through consultants. You aren't just talking about deploying as phar already pointed out. Once you want different configurations and automated rollouts, the orchestration of all of that _is your business value_.

I don't know anything about Azure, as I work with java deployments to linux systems.. but our deployment system has taken years to build and tune to get it to work, and it's not anywhere near as fancy as some of the stuff you are talking about. We're in the process of moving to AWS and in order to get to where we want to go we're getting ready to take about a 1-3 year project to do so because everything is moving towards containers so our old deployment system isn't going to work anymore.

That being said, your ability to parse through and read between the lines of what people are doing could make you a powerful asset to your company. Trust me, I went through a similar path you did, which is why I know it's not easy. Everyone talks about how great it is, but when you look for specifics as to how things were implemented or trying to figure out how all the dots are connected -- no one is talking.
graNite
Profile Blog Joined December 2010
Germany4434 Posts
October 08 2016 13:34 GMT
#15517
On October 08 2016 21:50 mantequilla wrote:
I am not very familiar with canvas, so correct me if I'm wrong, but from what I read, canvas doesn't have semantic information about a rectangle, arrow, circle etc, after they are drawn. Like when you draw a rectangle it becomes a bunch of pixels, canvas doesn't know if there's a rectangle on it.

That means you only have to save it as an image and restore it the same way. You would upload it as a file to server, and download it later for editing.

I'd look at those popular canvas libraries, because the vanilla js api doesn't appear to be very capable.

What are you using on the server side?


Is it possible to record what the canvas draws or what I input via mouse so I just play the same input when I restore the images?

I have not started with the server side, thats why I ask. I only know the most basic php.
"Oink oink, bitches" - Tasteless on Pigbaby winning a map against Flash
Hhanh00
Profile Joined May 2016
34 Posts
October 08 2016 15:41 GMT
#15518
On October 08 2016 22:01 mantequilla wrote:
what's too "specific" about automating a web app's deployment? you mean thousands of companies in the world are deploying their web apps to cloud by hand or through homemade solutions they wrote and paying 6 figures to do it? And I am not asking for step by step solutions, just asking what kind of a tool or api or whatever they are using.


It may sound obvious but have you looked at Chef/Puppet/Ansible?
mantequilla
Profile Blog Joined June 2012
Turkey779 Posts
October 08 2016 15:55 GMT
#15519
On October 09 2016 00:41 Hhanh00 wrote:
Show nested quote +
On October 08 2016 22:01 mantequilla wrote:
what's too "specific" about automating a web app's deployment? you mean thousands of companies in the world are deploying their web apps to cloud by hand or through homemade solutions they wrote and paying 6 figures to do it? And I am not asking for step by step solutions, just asking what kind of a tool or api or whatever they are using.


It may sound obvious but have you looked at Chef/Puppet/Ansible?


Not at all, I will check them out, thanks
Age of Mythology forever!
phar
Profile Joined August 2011
United States1080 Posts
October 08 2016 17:56 GMT
#15520
On October 08 2016 22:01 mantequilla wrote:
what's too "specific" about automating a web app's deployment? you mean thousands of companies in the world are deploying their web apps to cloud by hand or through homemade solutions they wrote and paying 6 figures to do it? And I am not asking for step by step solutions, just asking what kind of a tool or api or whatever they are using.

Again, it's not a deployment problem. Automating deployment for a webpage is not hard, and azure makes it even easier by providing hooks for e.g. continuous deployment with whatever you're already using (GitHub, or what have you).

The issue is that someone's asking for a whitelabeling solution, and trying to phrase it as a deployment problem .

They're asking the wrong questions, that's why they're not getting great answers.
Who after all is today speaking about the destruction of the Armenians?
Prev 1 774 775 776 777 778 1032 Next
Please log in or register to reply.
Live Events Refresh
LAN Event
18:00
Day 3: Ursa 2v2, FFA
SteadfastSC393
IndyStarCraft 177
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 499
SteadfastSC 393
White-Ra 211
IndyStarCraft 177
UpATreeSC 142
ProTech125
Railgan 67
ROOTCatZ 43
StarCraft: Brood War
Shuttle 460
Bonyth 69
ivOry 14
Dota 2
Dendi985
Counter-Strike
pashabiceps1182
Foxcn163
Super Smash Bros
Liquid`Ken9
Heroes of the Storm
Liquid`Hasu516
Other Games
Beastyqt728
fl0m665
Mlord452
FrodaN427
shahzam403
KnowMe185
Pyrionflax168
C9.Mang0125
ArmadaUGS115
ToD77
Mew2King74
Trikslyr53
OptimusSC21
Organizations
Counter-Strike
PGL192
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 20 non-featured ]
StarCraft 2
• Adnapsc2 11
• Reevou 9
• Dystopia_ 0
• Kozan
• sooper7s
• AfreecaTV YouTube
• Migwel
• LaughNgamezSOOP
• intothetv
• IndyKCrew
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 3055
• Ler92
League of Legends
• TFBlade886
Other Games
• imaqtpie1303
• WagamamaTV341
• Scarra290
• Shiphtur221
Upcoming Events
OSC
1h 1m
Replay Cast
2h 1m
OSC
15h 1m
LAN Event
18h 1m
Korean StarCraft League
1d 6h
CranKy Ducklings
1d 13h
LAN Event
1d 18h
IPSL
1d 21h
dxtr13 vs OldBoy
Napoleon vs Doodle
BSL 21
1d 23h
Gosudark vs Kyrie
Gypsy vs Sterling
UltrA vs Radley
Dandy vs Ptak
Replay Cast
2 days
[ Show More ]
Sparkling Tuna Cup
2 days
WardiTV Korean Royale
2 days
LAN Event
2 days
IPSL
2 days
JDConan vs WIZARD
WolFix vs Cross
BSL 21
2 days
spx vs rasowy
HBO vs KameZerg
Cross vs Razz
dxtr13 vs ZZZero
Replay Cast
3 days
Wardi Open
3 days
WardiTV Korean Royale
4 days
Replay Cast
5 days
Kung Fu Cup
5 days
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
6 days
The PondCast
6 days
RSL Revival
6 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
6 days
WardiTV Korean Royale
6 days
Liquipedia Results

Completed

BSL 21 Points
SC4ALL: StarCraft II
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025

Upcoming

BSL Season 21
SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
Stellar Fest
META Madness #9
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.