• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 01:39
CET 07:39
KST 15:39
  • 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: Winners9Intel 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!33$5,000+ WardiTV 2025 Championship6[BSL21] RO32 Group Stage4Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win10
StarCraft 2
General
Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win TL.net Map Contest #21: Winners RotterdaM "Serral is the GOAT, and it's not close" 5.0.15 Patch Balance Hotfix (2025-10-8) StarCraft, SC2, HotS, WC3, Returning to Blizzcon!
Tourneys
Constellation Cup - Main Event - Stellar Fest $5,000+ WardiTV 2025 Championship Sparkling Tuna Cup - Weekly Open Tournament Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond)
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
[ASL20] Ask the mapmakers — Drop your questions BW General Discussion [BSL21] RO32 Group Stage BGH Auto Balance -> http://bghmmr.eu/ SnOw's ASL S20 Finals Review
Tourneys
[Megathread] Daily Proleagues [ASL20] Grand Finals [BSL21] RO32 Group B - Sunday 21:00 CET [BSL21] RO32 Group A - Saturday 21:00 CET
Strategy
Current Meta PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Nintendo Switch Thread Path of Exile Stormgate/Frost Giant Megathread Should offensive tower rushing be viable in RTS games? Dawn of War IV
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
[Manga] One Piece Anime Discussion Thread Movie Discussion! 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
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Why we need SC3
Hildegard
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1538 users

The Big Programming Thread - Page 839

Forum Index > General Forum
Post a Reply
Prev 1 837 838 839 840 841 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.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2017-02-08 23:18:05
February 08 2017 23:12 GMT
#16761
On February 09 2017 08:07 Artesimo wrote:
Show nested quote +
On February 09 2017 07:45 Manit0u wrote:
Just compare the code. In your example plenty of things could go wrong. You could go out of transaction scope unexpectedly, you make two commits for a single change operation, etc.

Bonus question: What would happen to the original code if no object was fetched from the db?

I'm not entirely sure why they're assigning you such questions. I would personally use a hatchet on anyone trying to push code like that.


Yeah, which is why I was asking in here... I am not really sure what exactly the point of the question is. I am pretty sure they are looking for one/two very specific answers but I am just not sure...

About the bonus question: I assume since there hasn't been fetched an actual object from the DB, the entity is empty and you would get some kind of error since you are calling a non static function (setName) in a static enviroment?


The point of the question was ensuring if you knew why the databases are transactional and what are the errors that occur if they're used non-transactionally. Sometimes it's the too-obvious answer.

For the bonus I don't believe static has to do with anything here.
There is no one like you in the universe.
Artesimo
Profile Joined February 2015
Germany563 Posts
Last Edited: 2017-02-08 23:25:37
February 08 2017 23:24 GMT
#16762
On February 09 2017 08:12 Blisse wrote:
Show nested quote +
On February 09 2017 08:07 Artesimo wrote:
On February 09 2017 07:45 Manit0u wrote:
Just compare the code. In your example plenty of things could go wrong. You could go out of transaction scope unexpectedly, you make two commits for a single change operation, etc.

Bonus question: What would happen to the original code if no object was fetched from the db?

I'm not entirely sure why they're assigning you such questions. I would personally use a hatchet on anyone trying to push code like that.


Yeah, which is why I was asking in here... I am not really sure what exactly the point of the question is. I am pretty sure they are looking for one/two very specific answers but I am just not sure...

About the bonus question: I assume since there hasn't been fetched an actual object from the DB, the entity is empty and you would get some kind of error since you are calling a non static function (setName) in a static enviroment?


The point of the question was ensuring if you knew why the databases are transactional and what are the errors that occur if they're used non-transactionally. Sometimes it's the too-obvious answer.

For the bonus I don't believe static has to do with anything here.


You can call a static funtcion without an actual entity, and you can call a function that doesn't affect the attributes of an object (like a simple print) even if the variable doesn't contain the object yet.

RandomClass x = null;
x.JustPrintsHello();//works
x.getSomeAttribute();//doesn't work;


EDIT: I might be wrong though, but I am sure I had the exact error in my code once and that static/dynamic error message was handed to me by glorious netbeans
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2017-02-08 23:39:41
February 08 2017 23:30 GMT
#16763
On February 09 2017 08:07 Artesimo wrote:
Show nested quote +
On February 09 2017 07:45 Manit0u wrote:
Just compare the code. In your example plenty of things could go wrong. You could go out of transaction scope unexpectedly, you make two commits for a single change operation, etc.

Bonus question: What would happen to the original code if no object was fetched from the db?

I'm not entirely sure why they're assigning you such questions. I would personally use a hatchet on anyone trying to push code like that.


Yeah, which is why I was asking in here... I am not really sure what exactly the point of the question is. I am pretty sure they are looking for one/two very specific answers but I am just not sure...

About the bonus question: I assume since there hasn't been fetched an actual object from the DB, the entity is empty and you would get some kind of error since you are calling a non static function (setName) in a static enviroment?


What? No. Implementation of data context has three options.

1. Empty entity. You change it, but nothing happens. It is out of sync. More confusing in this case, but it has its uses as an approach.
2. Null is returned, which you seem to cast as Player. In that code example, you'll get null pointer exception. playerA == null. null.setMethod() is an exception.
3. *SQL Exception. You need a catch block then. E.g.


try
{
data_context.getTransaction().begin()
}
catch (SqlException e)
{
// log exception and handle it if you can
}


On February 09 2017 08:24 Artesimo wrote:
Show nested quote +
On February 09 2017 08:12 Blisse wrote:
On February 09 2017 08:07 Artesimo wrote:
On February 09 2017 07:45 Manit0u wrote:
Just compare the code. In your example plenty of things could go wrong. You could go out of transaction scope unexpectedly, you make two commits for a single change operation, etc.

Bonus question: What would happen to the original code if no object was fetched from the db?

I'm not entirely sure why they're assigning you such questions. I would personally use a hatchet on anyone trying to push code like that.


Yeah, which is why I was asking in here... I am not really sure what exactly the point of the question is. I am pretty sure they are looking for one/two very specific answers but I am just not sure...

About the bonus question: I assume since there hasn't been fetched an actual object from the DB, the entity is empty and you would get some kind of error since you are calling a non static function (setName) in a static enviroment?


The point of the question was ensuring if you knew why the databases are transactional and what are the errors that occur if they're used non-transactionally. Sometimes it's the too-obvious answer.

For the bonus I don't believe static has to do with anything here.


You can call a static funtcion without an actual entity, and you can call a function that doesn't affect the attributes of an object (like a simple print) even if the variable doesn't contain the object yet.

RandomClass x = null;
x.JustPrintsHello();//works
x.getSomeAttribute();//doesn't work;


EDIT: I might be wrong though, but I am sure I had the exact error in my code once and that static/dynamic error message was handed to me by glorious netbeans


That's not correct. If your object is null, it points to nothing. If you have nothing, you cannot expect something. So, calling anything on 'x' is null reference exception (access violation in C/C++).
Artesimo
Profile Joined February 2015
Germany563 Posts
Last Edited: 2017-02-08 23:39:05
February 08 2017 23:38 GMT
#16764
On February 09 2017 08:30 Shield wrote:
What? No. Implementation of data context has three options.

1. Empty entity. You change it, but nothing happens. It is out of sync. More confusing in this case, but it has its uses as an approach.
2. Null is returned, which you seem to cast as Player. In that code example, you'll get null pointer exception. playerA == null. null.setMethod() is an exception.
3. *SQL Exception. You need a catch block then. E.g.


try
{
data_context.getTransaction().begin()
}
catch (SqlException e)
{
// log exception and handle it if you can
}



Yeah, I remember now. You had to burry the uninitialized variable that contained in a class within the function of another class or something like that to make it work. But there surely was a way to achieve described behaviour since I went on to reproduce it with C++ as well out of curiousity.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2017-02-08 23:51:00
February 08 2017 23:47 GMT
#16765
On February 09 2017 08:38 Artesimo wrote:
Show nested quote +
On February 09 2017 08:30 Shield wrote:
What? No. Implementation of data context has three options.

1. Empty entity. You change it, but nothing happens. It is out of sync. More confusing in this case, but it has its uses as an approach.
2. Null is returned, which you seem to cast as Player. In that code example, you'll get null pointer exception. playerA == null. null.setMethod() is an exception.
3. *SQL Exception. You need a catch block then. E.g.


try
{
data_context.getTransaction().begin()
}
catch (SqlException e)
{
// log exception and handle it if you can
}



Yeah, I remember now. You had to burry the uninitialized variable that contained in a class within the function of another class or something like that to make it work. But there surely was a way to achieve described behaviour since I went on to reproduce it with C++ as well out of curiousity.


You don't have to have another method. I suppose you mean:


Player player = null;

try
{
player = data_context.find(arg1, arg2);
return player;
}
catch (SqlException e)
{
// we get an exception from database or data context, so it's likely that player == null
// so options are:
// 1. return new Player();
// 2. return null; (more obvious than return player object)
// 3. throw new YourException(e);
// Numbers match the three options I've described in my previous post,
// but it's good to log exception anyway.
// There are a lot of ways to handle this... You can also rethrow exception.
}

Artesimo
Profile Joined February 2015
Germany563 Posts
February 09 2017 00:03 GMT
#16766
On February 09 2017 08:47 Shield wrote:
You don't have to have another method. I suppose you mean:


Player player = null;

try
{
player = data_context.find(arg1, arg2);
return player;
}
catch (SqlException e)
{
// we get an exception from database or data context, so it's likely that player == null
// so options are:
// 1. return new Player();
// 2. return null; (more obvious than return player object)
// 3. throw new YourException(e);
// Numbers match the three options I've described in my previous post,
// but it's good to log exception anyway.
// There are a lot of ways to handle this... You can also rethrow exception.
}



No, my annecdote I based it on didn't had any to do with SQL/Databases. It was some universityproject, I believe something about distributed systems. Not sure anymore. However, I had class A with a array of generated entities of class B or something like that, only that I failed to generate the classes but everything worked fine, even though methods of those classes where called. Only after I used a method which acceced the attribute of said entity of class B, the programm crashed and it took me a bit to spot my mistake, since it had run fine up to that point. I also believe the reason the other methods where callable was the way methods are stored/accessed, I aksed the prof and he explained it. Forogt everything though so yeah. But thanks for the help, I assume it was about transaction/transactionscope indeed, seems to fit the generel theme of the questions up to this point. Appreciated the help
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2017-02-09 00:12:05
February 09 2017 00:10 GMT
#16767
Hmm, I'm not sure I understand, but it sounds like it might involve inheritance and virtual methods. Virtual methods are evaluated at run-time. It's hard to say without code.
Hanh
Profile Joined June 2016
146 Posts
February 09 2017 01:27 GMT
#16768
Non virtual functions are compiled into regular function calls with the this pointer passed in a register. It won't fault unless you dereference it. In any case, that's undefined behavior and implementation specific.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2017-02-09 01:35:14
February 09 2017 01:31 GMT
#16769
On February 09 2017 08:24 Artesimo wrote:
Show nested quote +
On February 09 2017 08:12 Blisse wrote:
On February 09 2017 08:07 Artesimo wrote:
On February 09 2017 07:45 Manit0u wrote:
Just compare the code. In your example plenty of things could go wrong. You could go out of transaction scope unexpectedly, you make two commits for a single change operation, etc.

Bonus question: What would happen to the original code if no object was fetched from the db?

I'm not entirely sure why they're assigning you such questions. I would personally use a hatchet on anyone trying to push code like that.


Yeah, which is why I was asking in here... I am not really sure what exactly the point of the question is. I am pretty sure they are looking for one/two very specific answers but I am just not sure...

About the bonus question: I assume since there hasn't been fetched an actual object from the DB, the entity is empty and you would get some kind of error since you are calling a non static function (setName) in a static enviroment?


The point of the question was ensuring if you knew why the databases are transactional and what are the errors that occur if they're used non-transactionally. Sometimes it's the too-obvious answer.

For the bonus I don't believe static has to do with anything here.


You can call a static funtcion without an actual entity, and you can call a function that doesn't affect the attributes of an object (like a simple print) even if the variable doesn't contain the object yet.

RandomClass x = null;
x.JustPrintsHello();//works
x.getSomeAttribute();//doesn't work;


EDIT: I might be wrong though, but I am sure I had the exact error in my code once and that static/dynamic error message was handed to me by glorious netbeans


I meant it more in the sense that it wasn't a static method so bringing static-ness into it doesn't really apply. It'd be simply an error because either the object is null, or the object was fetched but out-of-sync, or however that database handles that situation as Shield described.

I've never seen people call a static method thruogh a null object before ... but I just tested it in Java and it works. freaky af, please don't do that purposely irl lol.

Object a = null; 
a.staticMethod(); // worked normally
There is no one like you in the universe.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-02-09 03:00:18
February 09 2017 02:26 GMT
#16770
anyone wanna tutor me in linear algebra for $15/hr ? it's confusing the shit out of me and my professor is terrible


it'd be casual, over skype or w/e, whatever hours work, maybe a couple of hours a week


im honestly finding it was more confusing than calc 1 or calc 2 but I think it's largely because the teaching of it is so convoluted...

note: math at my school is pretty tough
Neshapotamus
Profile Blog Joined May 2006
United States163 Posts
February 09 2017 03:23 GMT
#16771
On February 09 2017 11:26 travis wrote:
anyone wanna tutor me in linear algebra for $15/hr ? it's confusing the shit out of me and my professor is terrible


it'd be casual, over skype or w/e, whatever hours work, maybe a couple of hours a week


im honestly finding it was more confusing than calc 1 or calc 2 but I think it's largely because the teaching of it is so convoluted...

note: math at my school is pretty tough


Most intuitive explanation on Linear Algebra.
https://www.youtube.com/playlist?list=PLZHQObOWTQDPD3MizzM2xVFitgF8hE_ab

Think of LA as geometry. If you aren't good at geometry, struggle until you get good. That's how I learned most subjects back in school.

There is plenty of free content online to learn about concepts you're struggling with.

Khan Academy: https://www.khanacademy.org/math/linear-algebra
MIT Opencourseware: https://ocw.mit.edu/courses/mathematics/18-06-linear-algebra-spring-2010/video-lectures/
Udacity: https://www.udacity.com/course/linear-algebra-refresher-course--ud953


Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
February 09 2017 03:40 GMT
#16772
I'll go through them, thank you

wow that first video has a nice like ratio
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
February 09 2017 07:28 GMT
#16773
On February 09 2017 10:31 Blisse wrote:
Show nested quote +
On February 09 2017 08:24 Artesimo wrote:
On February 09 2017 08:12 Blisse wrote:
On February 09 2017 08:07 Artesimo wrote:
On February 09 2017 07:45 Manit0u wrote:
Just compare the code. In your example plenty of things could go wrong. You could go out of transaction scope unexpectedly, you make two commits for a single change operation, etc.

Bonus question: What would happen to the original code if no object was fetched from the db?

I'm not entirely sure why they're assigning you such questions. I would personally use a hatchet on anyone trying to push code like that.


Yeah, which is why I was asking in here... I am not really sure what exactly the point of the question is. I am pretty sure they are looking for one/two very specific answers but I am just not sure...

About the bonus question: I assume since there hasn't been fetched an actual object from the DB, the entity is empty and you would get some kind of error since you are calling a non static function (setName) in a static enviroment?


The point of the question was ensuring if you knew why the databases are transactional and what are the errors that occur if they're used non-transactionally. Sometimes it's the too-obvious answer.

For the bonus I don't believe static has to do with anything here.


You can call a static funtcion without an actual entity, and you can call a function that doesn't affect the attributes of an object (like a simple print) even if the variable doesn't contain the object yet.

RandomClass x = null;
x.JustPrintsHello();//works
x.getSomeAttribute();//doesn't work;


EDIT: I might be wrong though, but I am sure I had the exact error in my code once and that static/dynamic error message was handed to me by glorious netbeans


I meant it more in the sense that it wasn't a static method so bringing static-ness into it doesn't really apply. It'd be simply an error because either the object is null, or the object was fetched but out-of-sync, or however that database handles that situation as Shield described.

I've never seen people call a static method thruogh a null object before ... but I just tested it in Java and it works. freaky af, please don't do that purposely irl lol.

Object a = null; 
a.staticMethod(); // worked normally


I suppose it works because it is translated into Class.staticMethod() rather than a.staticMethod(). It's weird when 'a' object is null.
Manit0u
Profile Blog Joined August 2004
Poland17421 Posts
February 09 2017 08:08 GMT
#16774
On February 09 2017 16:28 Shield wrote:
Show nested quote +
On February 09 2017 10:31 Blisse wrote:
On February 09 2017 08:24 Artesimo wrote:
On February 09 2017 08:12 Blisse wrote:
On February 09 2017 08:07 Artesimo wrote:
On February 09 2017 07:45 Manit0u wrote:
Just compare the code. In your example plenty of things could go wrong. You could go out of transaction scope unexpectedly, you make two commits for a single change operation, etc.

Bonus question: What would happen to the original code if no object was fetched from the db?

I'm not entirely sure why they're assigning you such questions. I would personally use a hatchet on anyone trying to push code like that.


Yeah, which is why I was asking in here... I am not really sure what exactly the point of the question is. I am pretty sure they are looking for one/two very specific answers but I am just not sure...

About the bonus question: I assume since there hasn't been fetched an actual object from the DB, the entity is empty and you would get some kind of error since you are calling a non static function (setName) in a static enviroment?


The point of the question was ensuring if you knew why the databases are transactional and what are the errors that occur if they're used non-transactionally. Sometimes it's the too-obvious answer.

For the bonus I don't believe static has to do with anything here.


You can call a static funtcion without an actual entity, and you can call a function that doesn't affect the attributes of an object (like a simple print) even if the variable doesn't contain the object yet.

RandomClass x = null;
x.JustPrintsHello();//works
x.getSomeAttribute();//doesn't work;


EDIT: I might be wrong though, but I am sure I had the exact error in my code once and that static/dynamic error message was handed to me by glorious netbeans


I meant it more in the sense that it wasn't a static method so bringing static-ness into it doesn't really apply. It'd be simply an error because either the object is null, or the object was fetched but out-of-sync, or however that database handles that situation as Shield described.

I've never seen people call a static method thruogh a null object before ... but I just tested it in Java and it works. freaky af, please don't do that purposely irl lol.

Object a = null; 
a.staticMethod(); // worked normally


I suppose it works because it is translated into Class.staticMethod() rather than a.staticMethod(). It's weird when 'a' object is null.


But, shouldn't you call static methods with :: instead of .?
Time is precious. Waste it wisely.
mantequilla
Profile Blog Joined June 2012
Turkey779 Posts
February 09 2017 08:43 GMT
#16775
On February 09 2017 02:38 mantequilla wrote:
do you guys have an idea what kind of technical knowledge is required to work in defense industry as a programmer? I assume they are not writing web apps with angular

disclaimer: I don't know c or c++.



quoting myself from a few pages back since no one noticed me
Age of Mythology forever!
Askelad
Profile Joined October 2016
France20 Posts
Last Edited: 2017-02-18 17:49:12
February 09 2017 08:55 GMT
#16776
.
Manit0u
Profile Blog Joined August 2004
Poland17421 Posts
February 09 2017 10:53 GMT
#16777
On February 09 2017 17:43 mantequilla wrote:
Show nested quote +
On February 09 2017 02:38 mantequilla wrote:
do you guys have an idea what kind of technical knowledge is required to work in defense industry as a programmer? I assume they are not writing web apps with angular

disclaimer: I don't know c or c++.



quoting myself from a few pages back since no one noticed me



Shield noticed you:

On February 09 2017 03:36 Shield wrote:
Show nested quote +
On February 09 2017 02:38 mantequilla wrote:
do you guys have an idea what kind of technical knowledge is required to work in defense industry as a programmer? I assume they are not writing web apps with angular

disclaimer: I don't know c or c++.


I don't know about your question, but just a reminder that you might need security clearance for that thing.

Edit: I also remember hearing about MISRA, but I don't know how widely used it is.
Time is precious. Waste it wisely.
Artesimo
Profile Joined February 2015
Germany563 Posts
February 09 2017 13:47 GMT
#16778
Next DB question, regarding the n+1 problem with default fetching:

A JPA-query fetches a list of all books of publishers with a specific location.

Tables/Columns:
Publisher(PublisherID[primaryKey], name, location))
Book(ISBN[primaryKey], titel, price, publisherID[foreignKey])

About 700 publishers, 40 of them in the specific location, each of which has about 200 books in its inventory.

Question: Explain the n+1 problem, regarding the 40 publishers. How many selects willbe send to the database?

Answer: We got 41 selects that are send to the database. 1 select to get all the publishers of the specific location(40) and for each publisher we have a select to get all published books, therefore we got another 40 selects.


And another regarding the difference of data I get from a fetch join / join in an application:
Join will give back a single entity per member/facutly combination, like all members of a faculty while fetch join would give me 2 entities per member/facutly combination: the member and the faculty seperately
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
February 09 2017 14:45 GMT
#16779
My company wants to replace all ~1500 PCs across all stores so they can access the coming web frontend since the old XP/IE8 boxes can't do HTML5 and stuff and so wont Work with the Hybris shop that is in the works.

I was just thinking about using thin clients that just use remote desktop or something like that instead. What solutions would work for 1500 PCs across all of europe without requiring the same amount of physical hardware? Maybe stuff that works decently with not-that-modern Internet connections as well?

I'm a programmer, not an admin, so it's not really my field of expertise.
RoomOfMush
Profile Joined March 2015
1296 Posts
February 09 2017 15:12 GMT
#16780
On February 09 2017 23:45 Morfildur wrote:
My company wants to replace all ~1500 PCs across all stores so they can access the coming web frontend since the old XP/IE8 boxes can't do HTML5 and stuff and so wont Work with the Hybris shop that is in the works.

I was just thinking about using thin clients that just use remote desktop or something like that instead. What solutions would work for 1500 PCs across all of europe without requiring the same amount of physical hardware? Maybe stuff that works decently with not-that-modern Internet connections as well?

I'm a programmer, not an admin, so it's not really my field of expertise.

If it is going to run over the internet use cheap laptops (or desktops) with linux and firefox or something like that. This shit is so cheap nowadays that the price shouldnt even matter for a company big enough to have 1500 workstations. Thats what I would do anyways.
Prev 1 837 838 839 840 841 1032 Next
Please log in or register to reply.
Live Events Refresh
Korean StarCraft League
03:00
Week 82
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Nina 206
ProTech122
StarCraft: Brood War
Sea 928
Zeus 585
Noble 21
Hm[arnc] 21
Bale 13
Dota 2
NeuroSwarm94
LuMiX1
League of Legends
JimRising 634
Reynor19
Counter-Strike
fl0m320
Other Games
summit1g16780
tarik_tv13013
WinterStarcraft376
C9.Mang0373
FrodaN182
Organizations
Other Games
gamesdonequick750
Counter-Strike
PGL151
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Azhi_Dahaki14
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Stunt709
Other Games
• Shiphtur173
Upcoming Events
CranKy Ducklings
3h 21m
IPSL
11h 21m
dxtr13 vs OldBoy
Napoleon vs Doodle
LAN Event
11h 21m
Lambo vs Clem
Scarlett vs TriGGeR
ByuN vs TBD
Zoun vs TBD
BSL 21
13h 21m
Gosudark vs Kyrie
Gypsy vs OyAji
UltrA vs Radley
Dandy vs Ptak
Replay Cast
16h 21m
Sparkling Tuna Cup
1d 3h
WardiTV Korean Royale
1d 5h
IPSL
1d 11h
JDConan vs WIZARD
WolFix vs Cross
LAN Event
1d 11h
BSL 21
1d 13h
spx vs rasowy
HBO vs KameZerg
Cross vs Razz
dxtr13 vs ZZZero
[ Show More ]
Replay Cast
2 days
Wardi Open
2 days
WardiTV Korean Royale
3 days
Replay Cast
4 days
Kung Fu Cup
4 days
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
4 days
The PondCast
5 days
RSL Revival
5 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
5 days
WardiTV Korean Royale
5 days
RSL Revival
6 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
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
BSL Season 21
Stellar Fest: Constellation Cup
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

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
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.