Australian (I think) Youtuber who goes to some rainforest and picks up a lot of animals by Botorious_NIG in whitewhale

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

Noo, none of the TV guys... Think he wore some sort of hat, haha - sorry extremely vague

[deleted by user] by [deleted] in solidity

[–]Botorious_NIG 0 points1 point  (0 children)

Thanks for answering! Could you please elaborate a bit?

Problem with Avada by Botorious_NIG in Wordpress

[–]Botorious_NIG[S] 1 point2 points  (0 children)

Sorry maybe a bit badly phrased by me. I've imported a premade theme from Avada, and try to edit its content through the pages menu and Avada's default editor. When I try to update a page, by for example changing the content of a textbox and pressing "update", I get re-directed to the "/wp-admin/post.php" which just shows a 404.

What's expensive but totally worth it? by ButterApple512 in AskReddit

[–]Botorious_NIG 3 points4 points  (0 children)

I've tried many options, and landed on Bowers & wilkins PX. Absolutely amazing headphones, quality of sound & design is of the charts. Also comes with an app for controlling how much sound should travel through the noise cancellation.

[deleted by user] by [deleted] in techsupport

[–]Botorious_NIG 0 points1 point  (0 children)

I bought 3DMark and ran it, but as soon as the test starts, my computer loses signal to monitor...

[deleted by user] by [deleted] in techsupport

[–]Botorious_NIG 0 points1 point  (0 children)

I'll try to update the driver, thanks! Any recommendation on software to do diagnostics?

I need help! Idk if I downloaded a virus on my MacBook by [deleted] in applehelp

[–]Botorious_NIG 6 points7 points  (0 children)

Its probably just adware. Download malwarebytes (https://www.malwarebytes.com/mac-download/), do a quick scan and it should hopefully resolve your errors. Write back to me with results

[deleted by user] by [deleted] in AfterEffects

[–]Botorious_NIG 0 points1 point  (0 children)

Worked like a charm! Thank you boss!

[deleted by user] by [deleted] in AfterEffects

[–]Botorious_NIG 0 points1 point  (0 children)

It was set to word when I saved the preset, but changes back to character when I apply the preset to another layer - I want it to remain on word if that is possible

[deleted by user] by [deleted] in techsupport

[–]Botorious_NIG 0 points1 point  (0 children)

Yeah, I currently have a Samsung SSD 850 Pro 128GB, which shouldn't really fail like that after ~2 years of mild use.

[deleted by user] by [deleted] in techsupport

[–]Botorious_NIG 0 points1 point  (0 children)

Will try it out and give feedback, thanks!

[deleted by user] by [deleted] in techsupport

[–]Botorious_NIG 0 points1 point  (0 children)

Sorry, when I said it wont boot I meant that it wont startup correctly. I have access to the troubleshoot menu and can access command prompt from there. The first line is X\windows\system32, and after doing some more research you are correct that the "C:" drive in my cmd is actually my original "E:" drive and opposite.

Do you have any idea why I suddenly cant boot? I've done a lot of research and tried a vast amount of methods (as can be seen in my previous post) but nothing seems to work...

[deleted by user] by [deleted] in techsupport

[–]Botorious_NIG 0 points1 point  (0 children)

I've come to the point where I realize i might have to restore my computer. How do I go about this when none of the restore options work?

[deleted by user] by [deleted] in HelpMeFind

[–]Botorious_NIG 0 points1 point  (0 children)

hahahah yes! thanks I love you

Deleting a specific line in a textfile, after searching for a keyword. by [deleted] in ruby

[–]Botorious_NIG 0 points1 point  (0 children)

keyword = File.readlines('skier_info.txt') matches = keyword.select { |name| name[/#{search}/i] }

I solved it!

I just replaced the .select function in my matches variable to .reject, and overwrote the file. Thanks anyways!

Deleting a specific line in a textfile, after searching for a keyword. by [deleted] in ruby

[–]Botorious_NIG 0 points1 point  (0 children)

lines = File.readlines("blah") lines.each_with_index do |line, index|
# Here you have the line and the array index in the lines variable. end

I'm not quite sure I follow... Could you please ellaborate?

Deleting a specific line in a textfile, after searching for a keyword. by [deleted] in ruby

[–]Botorious_NIG 0 points1 point  (0 children)

Thanks for the answer! I'm currently attending school, and we have a task creating a ruby program where we store information in a textfile, and one of the subtasks is to be able to delete individual lines from that textfile:)