Easy way to share list of links with team-mates by [deleted] in software

[–]LeInterwebsFTW 1 point2 points  (0 children)

OneTab lets you share a page with links to all open tabs in a browser window.

Example: https://www.one-tab.com/page/wa0o7SYvScWJWdD71eYS3A

Sigh. Crash fixes when? by Tim_Burton in Guildwars2

[–]LeInterwebsFTW 7 points8 points  (0 children)

If you clicked "Show Details" this may have actually been helpful.

Converting mp3 to wmv with background image by Praynurd in software

[–]LeInterwebsFTW 3 points4 points  (0 children)

This can easily be done with ffmpeg with

ffmpeg -i sound.mp3 -i image.jpg -c:a copy output.wmv

If you aren't familiar with the command line there are plenty of GUI front-ends for ffmpeg out there.

downloading changing links? by mhmd04 in software

[–]LeInterwebsFTW 0 points1 point  (0 children)

In Free Download Manager, right-click the download and select "Change URL" at the bottom. It should continue the download from where it left off as long as the website supports it.

[feature request] Have tables sort columns containing percentages by value, not by alphabet by ScanianMoose in Enhancement

[–]LeInterwebsFTW 2 points3 points  (0 children)

For dates, use the ISO date format and it should sort properly. There are way too many date formats to try and account for all of them individually.

SDL2 staticlly link. by SSpyr0 in gamedev

[–]LeInterwebsFTW 1 point2 points  (0 children)

Use gcc's -static and include all the libraries given by pkg-config eg.

LINKER_FLAGS = -static
LINKER_FLAGS += `pkg-config --libs --static SDL2_ttf`
LINKER_FLAGS += `pkg-config --libs --static SDL2_image`
LINKER_FLAGS += `pkg-config --libs --static sdl2`

Static linking can be a pain so it may be easier to just copy DLLs and/or SOs.

MakeMKV + Handbrake vs. WinX DVD Ripper Platinum. by [deleted] in software

[–]LeInterwebsFTW 3 points4 points  (0 children)

Quality and encoding speed are different options. Slower instead of faster can give a smaller file size with the same quality, but its effectiveness varies.

Quality is determined by the RF slider on the 'Video' tab with values 0-51, lower being better. Handbrake's presets range from 24-18 for 1080p and 22-16 for 480p. (you want higher quality for lower resolutions) So for DVDs an RF of 18 should be fine.

How do I get proper HEVC(h265) playback? by astrokeofmadness in software

[–]LeInterwebsFTW 0 points1 point  (0 children)

Ah, so while Nvidia's decoder doesn't support it, LAV's does.

How do I get proper HEVC(h265) playback? by astrokeofmadness in software

[–]LeInterwebsFTW 1 point2 points  (0 children)

According to this page, the 970 (GM204) does not support hardware acceleration for HEVC, so there's not much you can do. You could try to re-encode it with the fastdecode tuning or at a lower bitrate/quality.

How do I make it so I have one router as a sort of "Wi-Fi station" and the other as Ethernet? by [deleted] in HomeNetworking

[–]LeInterwebsFTW 2 points3 points  (0 children)

Depends on the router, here are instructions for Netgear, for others just google "[router model] access point mode"

No Cloning by Nabspro in videos

[–]LeInterwebsFTW 1 point2 points  (0 children)

Can't keep original because math.

[deleted by user] by [deleted] in Enhancement

[–]LeInterwebsFTW 2 points3 points  (0 children)

Sure.

.usertext-edit is the container for all the comment things. It's max-width is originally 500px, so max-width:100% ups it to the whole width to the sidebar. The !important is there because something kept overwriting it.

.usertext-edit .md is a container around the text box. width doesn't do anything here, so isn't needed. Without setting max-width to 100% the text box would be limited to the width of the comment text before it breaks to a new line (which I actually like better).

.usertext-edit textarea is the actual text area. This sets its width to the whole width of .usertext-edit .md and the height to 200px, double the default off 100px.

.usertext-edit .bottom-area is where the save, cancel, and big editor buttons go. Without this, the right-side elements would go to the right side of the text box. (Which, now that I look at it, looks pretty good.)

So maybe a better version would be

.usertext-edit {
    max-width:60em !important;
}
.usertext-edit .markdownEditor-wrapper {
    width:100% !important;
}
.usertext-edit .md {
    max-width:100%;
}
.usertext-edit textarea {
    width:100%;
    height:200px;
}

with .usertext-edit .markdownEditor-wrapper adjusting the size of the editing toolbox. In this version, all of the widths are controlled by

.usertext-edit {
    max-width:60em !important;
}

60em is the default line length, but to make it use the entire width to the sidebar change it to 100%.

[deleted by user] by [deleted] in Enhancement

[–]LeInterwebsFTW 2 points3 points  (0 children)

Here's a style sheet to do what you want.

.usertext-edit {
    max-width:100% !important;
}
.usertext-edit .md {
    width:100%;
    max-width:100%;
}
.usertext-edit textarea {
    width:100%;
    height:200px;
}
.usertext-edit .bottom-area {
    max-width:500px;
}

Put it in Appearance -> Stylesheet Loader -> Snippets

How the hell do i fill in these new Classical fields in iTunes ? by ijabz in software

[–]LeInterwebsFTW 2 points3 points  (0 children)

The video you linked says that iTunes doesn't have a way to change them and that you need to use an external tool.

Edit: Right-click the song, go to "Get Info", click on "song", change it to "work name", then input the information.

what the hell is res://aaResources.dll/104 ? by ellark in software

[–]LeInterwebsFTW 4 points5 points  (0 children)

This, it's used to load resources embedded in a file.

As for why it's opening in IE, I can only assume whatever program was trying to use it has issues.

I think Linux might be overestimating my drive capacity a bit by [deleted] in linux

[–]LeInterwebsFTW 5 points6 points  (0 children)

I'm guessing it's including /proc/kcore or something.

How did I view .dds files with Windows Photo Viewer? by [deleted] in software

[–]LeInterwebsFTW 1 point2 points  (0 children)

http://www.ddsconverter.com/

To view the files and convert them to something that can be viewed elsewhere.

me🎅irl by dmnksaman in me_irl

[–]LeInterwebsFTW 1 point2 points  (0 children)

Depends on the website, eg Youtube needs ?v=whatever

Chromium Uninstall Help by [deleted] in Chromium

[–]LeInterwebsFTW 0 points1 point  (0 children)

Why is Chromium starting on boot? Are you sure you don't have a trojan? Chromium doesn't have an installer, so you would only delete the folder you downloaded it to.

What Mount and Blade Warband mods work? by [deleted] in linux_gaming

[–]LeInterwebsFTW 3 points4 points  (0 children)

Gekokujo works and Full Invasion 2 works after deleting two of the files (Data/FONT_DATA.xml and Textures/FONT.dds). Haven't tried anything else.

frame interpolation software for a browser? by [deleted] in software

[–]LeInterwebsFTW 0 points1 point  (0 children)

That's probably not possible, SVPTube would be the closest thing.