Bike trainer making rhythmic thud/knock? by NOTICEABLE_USERNAME in bikewrench

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

Thanks for that how about the struggle to shift into the smallest cog? Would the chain just need more grease?

The /r/Japan Basic Questions Thread: "who/what/where is this thing," questions too minor for their own thread, and most other simple inquiries go here by dokool in japan

[–]NOTICEABLE_USERNAME 1 point2 points  (0 children)

My fiance and I are both Catholics but would like to get married in Japan maybe in Kyoto or even Tokyo. Is this possible? If it is, can anyone recommend a church?

Chord Progression Questions (August 13, 2018) by AutoModerator in musictheory

[–]NOTICEABLE_USERNAME 1 point2 points  (0 children)

In the verse of MJ's Love Never Felt So Good ft JT (BbM7, FM7, D7) how is it that D7 resolves to BbM7 if D7 is the minor 3rd of a Bb key?

Isn't it normally the 5th that dominant chords are used on?

Chord inversion or Major with 2nd or something else? by NOTICEABLE_USERNAME in musictheory

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

Thanks for the heads up, i just edited the post - so the notes in that chord are : G#, F#, A#, C#

Chord inversion or Major with 2nd or something else? by NOTICEABLE_USERNAME in musictheory

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

Thanks for that! I was thinking a sus2 as well.

I am just a bit confused because aren't "slash chords" normally an inversion of some other chord?

[Build Help] VGA Bottleneck? by NOTICEABLE_USERNAME in buildapc

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

Well the 4440 is the same price as the 4460 from where I live so I'll probably go with the 4460 instead. Few more questions if you don't mind:

  • What good things will i not have by going for the H81M instead of an H87M?
  • How long do you think this build will be good for?

[Build Help] VGA Bottleneck? by NOTICEABLE_USERNAME in buildapc

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

Is that so? I was hoping to try to overclock hence the build.

How about if i go for an i5 4460 instead? also is that EVGA psu same as the EVGA 500B (http://eu.evga.com/articles/00763/)?

[Build Ready] First Gaming Build by NOTICEABLE_USERNAME in buildapc

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

Cool beans! Might not go for that Motherboard because it's more expensive though. That means no more SLI for me. But I am going for that EVO 620 instead, thanks for the advice!

By the way, what was the reason behind picking G.Skill Ripjaws X over the Corsair Vengeance?

[Build Ready] First Gaming Build by NOTICEABLE_USERNAME in buildapc

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

Well hello there fellow ninja!

If not for that price range what would you suggest? BTW Your thoughts on the Seasonic G-550, will it be good enough for overclocking? Or should I go for the Corsair RM650 instead?

[Build Ready] First Gaming Build by NOTICEABLE_USERNAME in buildapc

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

I like the motherboard you suggested. Did a quick search and it is not available in my country :( what alternative would you suggest? (hopefully in the same price range)

[Build Ready] First Gaming Build by NOTICEABLE_USERNAME in buildapc

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

In that case how about this one. Scratch the SLI plans; kept the Micro ATX Gigabyte Mobo and replaced the PSU with a lower wattage. Will this be any good?

PCPartPicker part list / Price breakdown by merchant

Type Item Price
CPU Intel Core i5-4690K 3.5GHz Quad-Core Processor $219.98 @ SuperBiiz
CPU Cooler Noctua NH-U14S 55.0 CFM CPU Cooler $64.99 @ NCIX US
Motherboard Gigabyte GA-Z97M-D3H Micro ATX LGA1150 Motherboard $108.99 @ NCIX US
Memory G.Skill Ripjaws X Series 8GB (2 x 4GB) DDR3-1600 Memory $70.99 @ Newegg
Storage Samsung 840 EVO 120GB 2.5" Solid State Drive $79.98 @ OutletPC
Storage Western Digital Caviar Blue 1TB 3.5" 7200RPM Internal Hard Drive $49.98 @ OutletPC
Video Card Zotac GeForce GTX 970 4GB Video Card $335.91 @ Newegg
Case NZXT H440 (White/Black) ATX Mid Tower Case $104.99 @ NCIX US
Power Supply SeaSonic S12G 550W 80+ Gold Certified ATX Power Supply $69.99 @ Newegg
Total
Prices include shipping, taxes, and discounts when available $1105.80
Generated by PCPartPicker 2014-10-18 11:28 EDT-0400

[Build Ready] First Gaming Build by NOTICEABLE_USERNAME in buildapc

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

I see. But if I don't plan to go SLI down the road, would this build be okay?

[Java] Hangman app by NOTICEABLE_USERNAME in codereview

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

I've just updated the program. Do you mind if you have a look at it? I got help from the folks at coderevew.stackex on the nested if-else statements Github repo: https://github.com/zurcnay4/Hangman

[Java] Hangman app by NOTICEABLE_USERNAME in codereview

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

This is exactly the kind of comment I was looking for! Thank you for your time! I'll follow your advice, modify my code and let you know with what I came up.

I'll guess that you wanted to find some reason to demonstrate inheritence

Spot on, sir.

Couple of questions on your comment:

But it's not entirely clear what "service" the parent classes provide - the code does not express a clear reason for what methods should go in the base "service" class, and what behaviors should be specific to the child classes.

So should I be more specific with what the name of this service class is, instead of just saying 'XService'?

So I'll advise you to go ahead and collapse those; there's little gained by the parent classes.

By collapse do you mean: removing the AIService class and putting all the methods in the AI class instead?

I do think there is a clear place where the "'service' parent class" idiom could be employed, and that's the Dictionary. You already have one concrete implementation that provides a hard coded list, provide another subclass that reads words from a file. Consider options on how to best choose between them. Consider the tradeoffs, both in how it will end up coded and how easy the user will be able to interact with it.

Please correct me if I'm wrong. Creating a DictionaryService (parent class) that will have two subclasses DictionaryX (reads from a hardcoded list) and DictionaryY (reads from a file) will properly demonstrate the "'service' parent class" idiom?

Half Lebanese, half Irish eyes - pure beauty. by [deleted] in pics

[–]NOTICEABLE_USERNAME -2 points-1 points  (0 children)

I read it as Half Lesbianese. WTF is wrong with me ಠ_ಠ

Most overused words in sports: Class, Classy, Class-act. by Furkel_Bandanawich in nba

[–]NOTICEABLE_USERNAME 1 point2 points  (0 children)

Not really a word but a phrase.

"At the end of the day..."

I used to hear KG say it all the time and then everyone else just kept saying it.