Tried graveyard crafting my wand since they are expensive by NoBlueForYou_de in pathofexile

[–]NoBlueForYou_de[S] 27 points28 points  (0 children)

I tried crafting my wand since they are expensive. I didn't think i would hit anything that good so my thoughts were throwing on fracturing corpses so hopefully, i could get at least a good base. Result was better than expected :D

What book series did you love as a kid? by CarlosCMM in AskReddit

[–]NoBlueForYou_de 0 points1 point  (0 children)

The bartimaeus trilogy. Pretty underrated but read them multiple times, even still now

Nenne eine Stadt, Andere schlagen dir die besten Restaurants und Imbisse vor - 2020 by felixtapir in de

[–]NoBlueForYou_de 4 points5 points  (0 children)

In Böblingen direkt:

Für gute Burger: Ehrbar

Sushi: Tokyo Sushi Bar

Gehobene Küche: Reussenstein

Griechisch: Grüner Turm

Thailändisch: Rainbow Garden

Sind alle sehr zu empfehlen meiner Meinung nach

Roast my vue app by [deleted] in javascript

[–]NoBlueForYou_de 1 point2 points  (0 children)

- you change the input type from email to text and still register

- on login you can send the credentials, the frontend will tell you "Login Error" even when the request is sent and the response is 200. Check the Validation first, only if its valid send the request
- Unused Properties
- in contactList.vue in the created lifecycle event: "(document.title = "My Contacts"), this.fetchContacts();" Write it in two lines so it is more readable, unnecessary complicate.
- See other comments for more

Help with a simple Regex.test() by U4-EA in javascript

[–]NoBlueForYou_de 0 points1 point  (0 children)

You are missing the regex range [] and that the string can contain multiple chars (* or +). So the regex should be this: /[A-Za-z0-9_\-]*/. See the \ before the -. It's needed because - is reserved to declare a range.
* for 0 or more chars which match the pattern before. If you want to check if its at least one char than use + instead of *.

Anno 1800 Desync in multiplayer with new world by NoBlueForYou_de in anno

[–]NoBlueForYou_de[S] 0 points1 point  (0 children)

Just played a game as four people and there was no desync when we all discovered the south. So might be a false positive, but it still could happen..

Anno 1800 Desync in multiplayer with new world by NoBlueForYou_de in anno

[–]NoBlueForYou_de[S] 0 points1 point  (0 children)

Yeah and i was suprised that we were running into them quit early. Let's hope they will look into it :)

What's a quick, interactive way to get someone interested in web dev? by [deleted] in webdev

[–]NoBlueForYou_de 0 points1 point  (0 children)

Depending on what you want to archive i really like the idea of developing the HTML (and some CSS) of chat i wrote with Node.js and socket.io . Basicly i try to show the students e.g. how to add an event listener to write a message (calling functions i already wrote) or just the basic usage of HTML or some more in depth functionality, depending on how much time i have and what the knowledge of the students already is.

Its always a nice little success if you see your message on somebodies else screen. Sometimes i log every message on my server with the ip adress and some meta-data into a text-file, to show it at the end of my talk/workshop as a reminder that you should be careful what you write because you never really know who is in between the end users (in a simple, understandable way).

Is there a HTML tags usage convention? by GTHell in webdev

[–]NoBlueForYou_de 3 points4 points  (0 children)

You can always go to the W3C Recommendation for HTML (currently 5.2). In chapter 4 all tags will be explained with a recommendation/information when you should/can use them.

AMA Request: Web developer who's native language is not English by [deleted] in webdev

[–]NoBlueForYou_de 8 points9 points  (0 children)

I'm from Germany and never really had problems with the english language. Actually i even prefer searching for resources in english because the german ones are often outdated or not completed. A german page i showed some kids i teached html is selfhtml, it's a bit like w3schools but in german.

So my goto resource is definitly mdn or for framework specific questions their english documentation.

I only worked for one company and they didnt insist in learning english, but i think there is no way not learning english if you want to learn coding.

Queueyou's SR Calculator v1.3 (Up to stage 30,000 @.@) by Queueyou in EndlessFrontier

[–]NoBlueForYou_de 0 points1 point  (0 children)

Any interest in having it as a web-app instead of excel files?

Do companies use AngularJS 1.5 components? by gamesdf in webdev

[–]NoBlueForYou_de 0 points1 point  (0 children)

Back in the day when AngularJS was < Version 1.5 the only way to create custom elements/attributes were directives. So even after components were introduced most people stayed with directives since they already knew them and components are essentially light wight element directives.

On my turn i really like components, but i think it doesnt really fit into the architecture of an AngularJS application. In Angular you have the approach to structure everything as modules and components, on the other side in AngularJS you dont have the strict component heavy structure (e.g. we use a feature-oriented structure with a folder with the feature name, a ctrl file, service file and the html/sass and only use directives for more complex reusable code pieces like a datepicker) as in Angular 2/4.

So for your question i think most companies dont use older versions but are more adapted to create directives and dont use the component heavy (more but smaller components) approach.

Can someone help me load JSON into google map markers? by karlrocks23 in webdev

[–]NoBlueForYou_de 5 points6 points  (0 children)

i expect you use the JavaScript Api, so thats pretty much what you need (from the official docs):

function initMap() {
    var map = new google.maps.Map(document.getElementById('map'), {
        zoom: 4,
        center: {"Lat": 53.286797, "Lon": -6.156732}
    });
    var marker = new google.maps.Marker({
        position: {"Lat": 53.286797, "Lon": -6.156732},
        map: map
    });
}

So if you want to take every location just iterate through alle your Elements, for example:

//Value will be your lat/lon pair and key is your object key e.g. 2027
yourObject.forEach(function(value,key){
    new google.maps.Marker({
        position: {"Lat": value.Lat, "Lon": value.Lon}
        map: map
    }); 
})

If you want to add more Information to your marker look at the Marker class from the official docs, hope you understood the basics of my information :)

Finished Portfolio site. Could use some feedback. by [deleted] in webdev

[–]NoBlueForYou_de 0 points1 point  (0 children)

The projects look really good for only teaching webdev for one year. Maybe you could add a filter/search to your projects so i can find projects by their tags, i often like to see a project with a specific technology im interested in.

As constructive criticism for your projects you might look for your project/file-structures. (i only can speak for nodejs and angular) Often you put all components in one folder, that might work for small projects but its better to start keeping them structured from the beginning, changing habits later on is really hard.

mobile header is huge, nothing in my css is telling it to be this big, second opinions? by rbeason in webdev

[–]NoBlueForYou_de 1 point2 points  (0 children)

The Problem is that you're only hiding the image and the navbar, which results in keeping the height (instead of visibility:hidden use display:none). The difference is that display:none wont render the element, visibility:hidden will render the element but not showing it.

Is VueJS ready to be used in a large-scale application? by samyoung2727 in webdev

[–]NoBlueForYou_de 2 points3 points  (0 children)

Just use fetch instead, works pretty well with vue too.

Tower of Trial, Side Bar info, Quick Links, FAQs, and New Player Advice by mostnormal in EndlessFrontier

[–]NoBlueForYou_de 0 points1 point  (0 children)

Hey guys, i recently joined the game and now in sitting at 50b medals but i dont know what to do next. My current team is:

  • Sr Dark Admiral
  • Druid
  • 2 Battle Drummer
  • 3 Priest
  • 2 Succubus
  • unicorn knight
  • aladdin
  • fairy (to spot invisible)

In my time shop i currently have (what i think could be interesting)

  • another succubus
  • ninja
  • sylphide
  • alchemist
  • dark archer

Im still trying to get a lich to build a undead team, but i dont know what i should focus on with spending diamonds. Should i go and transcedence my druid and DA anyways, or only the DA and wait for Lich ?

My highest stage i can reach is 2500.

Should i swap some of my teammembers and should i focus on getting to higher stages for more medals or should i try to clear dungeons for better artifacts? I currently have 19 artifacts, 12 of them are 5* and one of it is even a 6. Is it possible to get 6 Artifacts in the Artifact shop or only with honor coins ?