[Boards: 3 / a / aco / adv / an / asp / b / biz / c / cgl / ck / cm / co / d / diy / e / fa / fit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mu / n / news / o / out / p / po / pol / qa / r / r9k / s / s4s / sci / soc / sp / t / tg / toy / trash / trv / tv / u / v / vg / vp / vr / w / wg / wsg / wsr / x / y / ] [Home]
4chanarchives logo

/sqt/ Stupid Questions Thread


Thread replies: 383
Thread images: 63

File: 1398799285423.png (924KB, 1600x2162px) Image search: [Google] [Yandex] [Bing]
1398799285423.png
924KB, 1600x2162px
This thread was created to prevent anons from spamming new threads, for technology questions they have.
If you are that person, post your simple/small/stupid questions here

Don't bump. This is a slow board, and will continue to be. Wait for an answer or google it.

If you see other anons posting questions outside this thread, ignore or redirect them here
Use >>>/g/sqt as a link to find the sqt thread

Old thread has hit the bump limit>>54138005
>>
File: 182h7u19573objpg[1].jpg (21KB, 340x196px) Image search: [Google] [Yandex] [Bing]
182h7u19573objpg[1].jpg
21KB, 340x196px
>>54146672
So, I'm planning to make pic, and I'm thinking about using an iPad 3 screen with the DP converter board. My question is how hard is it to get the backlight off of this thing?
>>
File: Untitled.png (14KB, 97x97px) Image search: [Google] [Yandex] [Bing]
Untitled.png
14KB, 97x97px
What's this logo? Found it in architecture presentation of some project with no explanation.
>>
>>54146727
looks like camtasia studio 8.6 to me.
>>
File: 1460828706861.png (1MB, 1600x900px) Image search: [Google] [Yandex] [Bing]
1460828706861.png
1MB, 1600x900px
Windows media player now runs horribly since the latest windows 10 update. Every action feels laggy and on the edge of the program crashing.

How fix?
>>
>>54146738
It was data collection/processing project.
>>
Can this laptop play remux blu-ray rips without lag?

http://pricespy.co.uk/product.php?e=3505095
>>
>>54146749
Use another player. I suggest mpv.
>>
Fuck me /g/, it happened again, my fourth power supply died on me and I still don't know what's causing it, I replaced the mobo after my last PSU died because I was at least reasonably confident that it was the cause of the problem, turns out it wasn't.

My EVGA Supernova Bronze 750W just shat itself and I have no idea why, it won't boot (though sometimes it stays on longer than others, up to 5 seconds before shutting off.) There's a slight but audible click when I try and turn on my computer coming from what I think is the power supply, so static might be an issue. PSU is only a month old to boot.

Before that was a Seasonic G550 for about a year that started shutting off under load and eventually died completely (turning on for a second or so before going off again).

Before that was a FSP Raider 750W Silver that died after a month or so when I was playing Metro Last Light.

Before that was a Seasonic G550 that had severe coil whine from day 0 and was replaced after 6 months.

Computer is only 2 and a half years old yet I've managed to chew through 4 power supplies and 2 motherboards. What the fuck is going on.

I need advice because I'm totally lost as to what it could be other than my GPU.

Specs are:

4670K
EVGA GTX 760
MSI H97M-G43 M-ATX
EVGA Supernova Bronze 750W
Samsaung 850 EVO M.2 SSD
WD Green 2TB

Any help would be appreciated but at this point I'm pretty much convinced my computer is haunted.
>>
I have a laptop here, running W8.1.

Every time I log in, I get a black screen with just my cursor, and I can't open Task Manager.

I can't boot into safe mode by holding F8 while booting., or shift F8, or any combination of keys.


I'm lost for what to do now., any ideas?
If possible, I'd like to avoid having to create installation media for repair.
>>
File: DBuk1m3P.jpg (264KB, 1500x1000px) Image search: [Google] [Yandex] [Bing]
DBuk1m3P.jpg
264KB, 1500x1000px
Can the Surface Pro 4 act as a full-on laptop replacement or is a shitty in-between of a tablet and a laptop?
Using for internet browsing/research, moderate amounts of typing and other general uses. Also hoping to do my art and note taking on it.
>>
>>54146939
What were you doing just prior to the problem occurring? Did you try to rice your desktop? If so you'll probably want to find an install disk and use the repair windows options.
>>
>>54146941
In terms of power its on par with most laptops assuming you skip the m3 version.
>>
>>54146975
Dunno, not my computer.

Neighbor asked me to have a look at it.

I managed to get the desktop up, just gonna system restore I think. Too much hassle and I'm lazy af.

Thanks though.
>>
Is "Service Host: Local Service (No Network) (3)" supposed to be using over half of my CPU? It's going from 40% to 70%
>>
File: 4235364166.png (514KB, 771x508px) Image search: [Google] [Yandex] [Bing]
4235364166.png
514KB, 771x508px
>>54146672
I see this thing all over battlestation threads, what is the circled box thing?
>>
>>54147162
Looks like a DAC, don't know the model
>>
>>54146929
sounds like you got bad power in

ever used a UPS or AVR?
>>
>>54147162
Focusrite Scarlett.
Dunno if it's the 2i2 version because I'm on my phone and cba to open the pic in a new tab.
>>
File: 11702x217.png (56KB, 702x217px) Image search: [Google] [Yandex] [Bing]
11702x217.png
56KB, 702x217px
What's going with this pdf? The selected text looks clean and pretty. Is there a way to clean this mess?
>>
File: firefox1.jpg (22KB, 440x330px) Image search: [Google] [Yandex] [Bing]
firefox1.jpg
22KB, 440x330px
Firefox Firegesture script help:

I use this script to open links in Chrome from firefox

const APP_PATH = "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe";

var srcNode = FireGestures.sourceNode;
var linkURL = FireGestures.getLinkURL(srcNode);
if (!linkURL)
throw "Not on a link";

var file = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsILocalFile);
file.initWithPath(APP_PATH);
if (!file.exists()) {
alert("File does not exist: " + APP_PATH);
return;
}
var process = Cc["@mozilla.org/process/util;1"].createInstance(Ci.nsIProcess);
try {
var args = [linkURL];
process.init(file);
process.run(false, args, args.length);
}
catch (ex) {
alert("Failed to execute: " + APP_PATH);
}

But Chrome+youtube4k does not work with my Intel Core i7 4500U but Edge keeps the CPU work and fan speed to a minimum. I can't manage to get Edge to be used in this script instead of chrome.

Related resource;
https://github.com/darktrojan/openwith/issues/46
>>
File: Capture.png (8KB, 447x232px) Image search: [Google] [Yandex] [Bing]
Capture.png
8KB, 447x232px
>>54147440
Also,, how can I use those fancy "code windows"?
>>
>>54147238
It can't be bad power, I've lived at 3 different residences in the time that the PSUs have failed.

A UPS is prohibitively expensive for me and even then my power is rock solid, never had a brown out and get power cuts very rarely, had solar panels installed at one residence fairly recently so all the electrics within the house are new.
>>
>>54147453
[CODE] [/CODE]
>>
>>54147542
Thanks friend!
>>
What is the difference between IT and CS degrees in terms of course content and job prospects?
>>
>>54147524
hmmmmm

Is your case metal? Are parts of your comp making a circuit inside of it?

Have you been using the same power cable from wall to PSU each time?

Are you flicking the switch on the back of the PSU alot?

Are you particularly dusty or have animal fur that gets in the PSU?

Have you ever measured power load of all your components running?
>>
>>54147639
>Is your case metal? Are parts of your comp making a circuit inside of it?
Case is full aluminium, though I don't think it's make a circuit because I'm not getting any static discharge from touching the case at all, even when it's separated completely from the ground (with the exception of the power cable.)
>Have you been using the same power cable from wall to PSU each time?
Nope, intentionally switched just in case it was.
>Are you flicking the switch on the back of the PSU alot?
2 or 3 times a week.
>Are you particularly dusty or have animal fur that gets in the PSU?
Nope, no dust. Wouldn't account for my latest power supply failing after just a month anyway.
>Have you ever measured power load of all your components running?
Not yet, might find myself a meter of some sort to do that. If it's to do with exceeding the power draw on my computer I don't see how a 4670K and a GTX 760 could exceed the power limitations of a 750W PSU when it was running fine on a 550W for over a year.

If it helps I move between houses twice or so a week, but am very careful every time I do, though it wouldn't account for my 3rd PSU dying under load because that occurred before I began moving between houses.
>>
What's the conventional wisdom on buying a manufacturer refurbished mouse? Or to get to the root of the matter, what products should be avoided whenever possible when "manufacturer refurbished" comes up?
>>
File: atx-power-bypass.jpg (25KB, 418x496px) Image search: [Google] [Yandex] [Bing]
atx-power-bypass.jpg
25KB, 418x496px
>>54147639
>>54147836
I shorted the PSU with a paper clip and got it to boot and stay on, after that I plugged in all my peripherals and the computer turned on. Leads me to think it's a static problem. What do now?

Pic is how I shorted it.
>>
>>54147910
I generally tend to stay away from manufacturer refurbished stuff unless it comes from a reputable manufacturer with a rock solid returns policy, as much as /g/ spergs out about Apple their refurbished macbooks are top notch and they accept returns and full warranties on them.

Bottom line is that if it's a good company it might be worth getting refurbished.
>>
Not sure how retarded my question is but why is there an obsession with home servers on /g/ when you set up one online for much cheaper (short term) and without any of the hassle.
>>
>>54148228
nice try NSA
>>
>>54148287
muh pribacy
>>
Can anyone tell me the difference between these hard drives?

http://www.amazon.com/gp/product/B00TQ7YJ4G/

http://www.newegg.com/Product/Product.aspx?Item=9SIA9DE3SA8284

They seem to be the same thing, except the one on Amazon is insanely cheap. That sounds sketchy but I've never had trouble with Amazon and all the reviews are assuring that they're new, not used.
I'm assuming there's some difference in the hard drives that I'm too hardware-retarded to catch. Are they the same or what?
>>
>>54148305
say that to my face irl and we'll see what happens to your an s ngger
>>
File: 1422850985273.jpg (146KB, 736x1104px) Image search: [Google] [Yandex] [Bing]
1422850985273.jpg
146KB, 736x1104px
How to RSS a site that doesn't support it?
>>
>pairing an ssd with a amd A6-6400k.
Worth it? Would I still get that snappy feeling with a low tier chip? Spare ssd and it's for browser/office computer
>>
>>54148342
I'll fuck u up bigboi
>>
File: jon2.gif (289KB, 241x200px) Image search: [Google] [Yandex] [Bing]
jon2.gif
289KB, 241x200px
Where should I start when getting into robotics?
Should I make one myself? Spend a few hundred to get a decent one? Buy one of them shitty little car kits? What programming languages would be the best to start with?
>>
>>54148421

arduino and motor control, make a car that turns around when it bumps into stuff. There are only a handful of different electronic sensors and they are relatively simple.
>>
How does /g/ sync their bookmarks? What is the least botnet option?
>>
>>54148434
What would I need and how much would a basic build cost?
Do arduinos boards have infinite utility (taking into account their power) or are there things that it will struggle with? Would I be able to do shit like - given the right components - voice-command actions?
>>
>>54148651
firefox sync
>>
How can I autoplay music when I open a website, senpaitachi?
>>
How can someones find out personal into from a simple phone number?
>>
>>54148735
just go to your nearest NSA help desk
>>
>>54148788
Not an amerifag
>>
>>54148797
Doesnt matter
>>
>>54148797
just call them, or just ask them while calling somebody else
>>
What is the best AIO 120mm water cooler?

>inb4 go get 212 evo
nah i do it for aesthetics.
>>
Looking for a pair of bookshelf speakers
Options
Mackie CR4, Presonus Eris, Presonus Cered
Any other recomendation is aprecciated
>>
What's the character limit for posts and does it change per board?
>>
>>54149451
Yes, for example /jp/ has the highest with 5000 character limit.

Most normal boards have 1500.
>>
What i have to do in order to remove the google bubble popup when you leave the home button pressed on android?
>>
For some reason chanu and clover both are really slow on the wifi network at home, but in all other cases they work perfectly fine
Chrome on my phone doesn't have this problem either. Additionally, the netflix and youtube apps take forever to load the 'webpage' they display, but I can watch videos at hd without any issue, it just takes 30-60 seconds for the page to load.
The AP in question is a DIR-615 running DD-WRT
>>
What's a good "soundboard" software? I need it for a play.
>>
How would I go about creating my own VPN with a raspberry pi?
>>
>>54148343
Contact site admin and plead like a bitch in heat to implement it?
Scrape the site periodically using the scrapy framework or similar.
Offer bj to site admin.
>>
File: 45336453456.png (35KB, 658x522px) Image search: [Google] [Yandex] [Bing]
45336453456.png
35KB, 658x522px
I never understand the ram numbers. Can anyone explain?
Does this look right or are they in the wrong slots? I'm kinda worried since it says unknown.
>>
What is the best bitcoin exchange to use?

People recommended Coinbase but I'm not really all down with typing in my banks login information. Seems like all of them require a lot of information about you. I thought Bitcoin was supposed to be "anonymous currency"?
>>
>>54150214
local bitcoins
>>
Hey guys. About to spend ~600 ish on a new TV.

I'd like to get a 4k because while media isn't quite all there yet, it will be soon. I'm going into college so I won't be buying a new TV for at least the next 5-6 years because grad school right after.

Do I get a ~50" 4k or so for around 6-700 or get a really nice 50-60" smart TV 1080p for around 500?

I have about 1400 that I need to get a shitbook for basic note taking and stuff in school. Gonna write most of my notes but I'll need to do online stuff and use school programs.
>>
>>54150166
Your RAM is ok, running at 2140MHz.
CAS latency is somewhat high but it doesnt matter at all.
>>
File: 14657883.jpg (516KB, 895x895px) Image search: [Google] [Yandex] [Bing]
14657883.jpg
516KB, 895x895px
Both my phone and laptop make a sound similar to coil whine. My phone only does it when the display is on, so I'm assuming it's some component of the backlight, but my laptop makes it all the time, except when it's fully powered off. What causes this other than coils?
>>
What's the most light weight android web browser app? Firefox mobile takes to long to start on my ancient phone, and crashes after 5 minutes of browsing. What do you guys suggest?

Also, while we're on the topic, what's your favorite 4chan app? I'm sill on clover from before it was removed from the play store.
>>
File: 1461214096098.png (291KB, 557x459px) Image search: [Google] [Yandex] [Bing]
1461214096098.png
291KB, 557x459px
is there any good alternative to puush? puush still works good but i've noticed the devs have been radio silent for over a year and i notice random images just completely disappearing from my puush account that go on to be forever lost and it's frustrating as hell losing them
>>
File: 1375983912566.jpg (16KB, 411x292px) Image search: [Google] [Yandex] [Bing]
1375983912566.jpg
16KB, 411x292px
Xperia Z5 owner here, should I update to marshmallow? Googling it, seems like a lot of users are facing phone breaking issues with the update, though all of these articles are from late march.
>>
>>54150555
Use fdroid
>>
>>54150644
Which apps from fdroid?
>>
How can I install a new OS on without a CD or USB stick? I found my teenage years computer and it has disgusting Vista.

Also what should I replace Vista with?
>>
>>54150555
pls respond
>>
Looking for CPU upgrade - vidya, rendering and emulation.

Which is better - an i5 or xeon? Sorry if I missed answers yesterday.
>>
I'm coming from a CRT with very little input delay. I want an HDTV, what should I be looking for if I want avery little input delay (while gaming). I don't really want to spend more than $200, and I only need the TV to be 30in or so
>>
>>54150833

Just get something from Sony or Panasonic with lowest possible ms tbqh famicom.
>>
>>54150833
You wont even notice the delay(of a good lcd tv)

This is someone who went from a crt to a lcd
>>
>>54150582
>puush
Lol enjoying your malware friend?
Use the software your windows computer came with instead of that.
>>
>>54150555
Try Naked browser
>>
>>54150797
From what are you upgrading from?
>>
>>54150881

that was one incident, puush no longer has malware. also the windows screenshot tools are shit, the hotkeys for puush are super useful especially for quick uploading online
>>
>>54151079

An i3 - it's starting to bottleneck my GPU in vidya, and I'd like faster rendering speeds.
>>
>>54151099
Motherboard and budget?
>>
>>54151103

That's not too much of an issue - but I'd like something decent enough, but not too expensive if you get me?

I've looked up benchmarks and have a rough idea, but I like outside opinions I guess.

I was thinking the Xeon because it's essentially an i7 without overclocking + iGPU which sounds great for the price.
>>
If I run a VGA > HDMI cable from my Thinkpad to an HDTV, will the quality be good enough to play emulators and watch videos off of?
>>
>>54150582
>random images just completely disappearing from my puush account
After 30 days without visit, you should know it.
>>
Does /g/ have a guide of how to unfuck a fresh Ubuntu install?
>>
>>54151177

but i use my puush account on a daily basis
>>
Can I boot 2 individual os's off 2 hard drives
I got win XP on a 250gig HDD and I'm wondering if I could boot 7 from secondary 80gb hard drive without it interfering with main 250gig drive
>>
>>54151131
Well if you can get a Xeon for cheap sure.

Otherwise get a cheap i5 like i5-4460/4590 or the i5-6500 because sounds like you don't have a z97 or z170 motherboard.
>>
>>54151131

And to specify, I mean like a Xeon E3 1230 or something, not one of the ridiclous ones - I can't afford an i7 or anything.
>>
>>54151207
Visit as in, someone clicking on the specific image.
>>
Is there an android app that I can simply listen to twitch livestreams on with my phone locked?
>>
>>54151211
If you mean both running at the same time, you're better off with an XP VM inside Win7.

If you are okay with using one of the other, you could put them both on the same drive if you want.
>>
Do PCI-E 1x slots take up the PCI-E lanes that my CPU has?

I'm thinking about getting an internal capture card but I want to SLI in the future and the 6700k only has 16 PCI-E lanes.
>>
>>54146672
Cocoa a best.
How do I make my Gentoo use h264 hardware acceleration for my Intel HD 4000 or whatever the fuck integrated graphics?
>>
I plan on getting a 290 in the future. Is a 430 watt psu OK for it or do I need more?
>>
>>54151219

Nah I plan to upgrade my mobo with it too, I don't want to keep my Z68.

I was looking at either the Xeon E3 1230, or any of the i5's.

I'll probably get a Xeon and a B85 then.
>>
>>54151251
No,not both at same time
Two individual drives one OS in each
Now all my shit is on 250gb with XP on it
But as you know XP is pile of shit for games
So my question is;could I have one drive with 7 on it and XP on this one without corrupting shit
Obviously alter boot priority in bios
>>
>>54151364
Yes you can, but you can also have both on the same physical drive if you partition it.
>>
File: 1443402251322.png (11KB, 376x202px) Image search: [Google] [Yandex] [Bing]
1443402251322.png
11KB, 376x202px
:^)
>>
I'm about to embark on a large PC upgrade, where a motherboard, a CPU, a graphics card and quite possibly a PSU will get replaced. I currently have a working 500W PSU. I'm trying to understand if I could keep it for the upgraded build, with the new GPU and all.
The graphics card in question is one recommended to me by one of you, which is Gigabyte's GV-R939WF2-8GD. I looked up its wattage, and Gigabyte "recommends" a 600W PSU. Every other site just copy-pasted the recommendation. I also tried calculating the power consumption on a PSU calculator and it gave me less than 500.

>Is that recommendation a solid requirement?
>Does it apply to a single-card configuration, or does it assume a crossfire configuration is at hand?
>Can I use a Corsair CX500 with the Gigabyte GV-R939WF2-8GD?
>>
>>54146672
So a Current Pending Sector Count of 100 is bad, I take it?
>>
>>54151583
>not updating your system
>>
i have a shitload of stickynotes and txt files, and my shit is all a mess
how do you guys document your notes, lists, reminders and whatnot?
for your mobile and computer
>>
>>54151773
OneNote for me, good sync across all office devices
>>
>>54151789
as in windows office?
my phone isn't windows, would you still recommend?
>>
Well guys I fell for the thinkpad and regret it
t440s

Do you think I will be happy with the surface pro?
I want something that is lighter than the t440s and is not as loud

I'll only use it at uni to take notes, web surfing and some programming

Is there anything I should know before buying surface pro?
>>
How do I pass a dvd drive trough in qemu+kvm?
>>
>>54151820
yes and yes
>>
>>54151773
You can check the archive and get anons list of every possible option you had and stop being a little faggot wanting people to do things for you
>>
>>54151773
Opera notes back when I was using Opera 11.
A .txt until they make reading and editing notes in Vivaldi not slow as fuck. I still use it to conveniently save text that I don't plan on editing in the near future.

If a given project is big enough to warrant it, a proper folder structure with a Quick Notes .txt that is transcribed into properly formatted and sorted .odt's every few weeks.

I should probably get some software designed for notetaking, but the current system works fine.
>>
>>54151879
checked the archive, look what i found >>54141950

>>54151860
>>54151896
thanks
>>
>>54151767
Is that what this is about? I disabled W7 updates as soon as I came from a fresh install. Been avoiding W10 because I'm on a pirated copy.
>>
>>54150671
Fdroid has a updated version of clover
For browsers, there's many of them on fdroid
Lightning
Lucid browser
Mbrowser
Tint browser
Zirco browser
>>
File: 90_400x400.png (121KB, 400x400px) Image search: [Google] [Yandex] [Bing]
90_400x400.png
121KB, 400x400px
>>54151085
>not using memeshot
>>
>>54151289
Should have gotten a x99 so you didn't get cucked with pcie lanes
But seriously, most gpus probably can't saturate pcie3 x8
>>
>>54151853
>bought a chinkpad
You should have expected this
>>
>>54152124
Yeah I've been regretting it ever since however the issue with SLI is that nvidia mandates that a GPU have at least an x8 slot in terms of speed for SLI to work.

So do 1x slots take up the PCI-E lanes my CPU can have or does it get routed through the PCH like M.2 drives do?

Also Skylake refresh when?
>>
>>54151378
Thanks for help anon
Ye i'm aware of partitioning but just trying to save up HDD space on this
As far as i heard drives die sooner if they're full of stuff
>>
>>54152192
I just got my answer. It does run through the chipset as opposed to the CPU.

Thank for your help >>54152124
>>
I've only been using firefox for about a month, but is it just me or does its

history delete old entries?
If so then why, and how do I stop this?
>>
Recently bought a T420 for work. Wanted to play some Hearstone on it while my desktop was rendering. Runs like garbage.

Why? I read something about Nvidia Optimus NVS 4200M but am ignorant. Do I need to enable better graphics and sacrifice battery life?
>>
File: 1456803977124.jpg (42KB, 480x480px) Image search: [Google] [Yandex] [Bing]
1456803977124.jpg
42KB, 480x480px
I'm streaming a webcam to the internet from a separate device, and would like to add this webcam to my Open Broadcaster Software to combine with the capture from my desktop box(win7). I've figured out that I can add an external cam to OBS if it's accessible by LAN. How do I create a "fake lan" between two internet connected devices? I can switch operating systems and use virtualbox if needed.
>>
>>54152673
The cam is streamed from a openwrt router / microcontroller btw, so it should be able to connect to any VPS as long as it doesn't use PPTP(doesn't work for some reason). I'm just having a dumb moment here and would like some clear steps defined to what I'm supposed to be doing.
>>
File: 14602090793625.jpg (634KB, 1195x1700px) Image search: [Google] [Yandex] [Bing]
14602090793625.jpg
634KB, 1195x1700px
>>54146941
BUMP
Also questions ahead of time

>is it a proper laptop, as in typing/research/videos/comfy?
>how good is the keyboard?
>durability/build quality, do you feel like it'll break if you looked at it wrong or is it proper chinkpad quality?
>drivers working well, especially in things like CPS,PS, etc?
>W10 is a big putter off to me, how bad is it?
>any regrets?
>>
File: Comb20042016035429.jpg (172KB, 540x1544px) Image search: [Google] [Yandex] [Bing]
Comb20042016035429.jpg
172KB, 540x1544px
Complete newfag to building PCs. This is my current parts list. How did I do? Also, how hard is it to pirate an OS?
>>
What's an email provider that can be used without base64 file transfer?
>>
>>54152673
VPN is exactly what you need. That was you can "create a fake lan bethween two internet connected devices".

Create a VPN server to your home network (OpenVPN recommended, either use an existing server box you have, or go buy a raspberry pi.), and then connect to that server with your remote device.

Ta-da, yoyr remote device is in the same network.
>>
File: ayyyy.png (14KB, 844x409px) Image search: [Google] [Yandex] [Bing]
ayyyy.png
14KB, 844x409px
Lol DO just sent me a mail that my credit is going to expire in 4 weeks. Didn't even know I had an account there.

Any Ideas for fun stuff that I can use it on?
>>
>>54152830

Ummm, if you want a glorified web browser than great job.
>>
>>54152830
it's not hard but why pirate an os when linux and bsd are free? I see a viya cared so probably games? most stuff can run just fine through wine,
>>
can you get gf without friends?
>>
>>54153103
Having a gf is so much more painful than never knowing

Happiness is a bitch compared to misery
>>
>>54153103
it's not hard but why get a gf when 2D and text are free? I see a hrd pneis so probably vagina? most stuff can run just fine through imagination,
>>
>>54152830
Windows 7?
Seconds and 2 clicks.
>>
>>54153290
How do you avoid free_windows_legit.exe?
>>
>>54152830
http://forums.mydigitallife.info/threads/58464-Windows-Loader-Download

Also the build looks good enough for most basic stuff.
Try to get a I5-4460 and a 1TB HDD if you can.
>>
Why is Ubuntu iso 1.3 gb while Lubuntu iso is 840 mb?
>>
File: CgdRR63WEAEe38x.jpg (13KB, 212x215px) Image search: [Google] [Yandex] [Bing]
CgdRR63WEAEe38x.jpg
13KB, 212x215px
I am downloading a 450+ mod modpack for skyrim, including all kinds of graphical enhancements. Should i be able to run in with my specs: Radeon R7 260, intel pentium g3258?
>>
So I want to dual boot right, but I want to make it so that when I boot it asks me what system I want to boot into. I want to run windows 8.1 on an ssd and debian on a different ssd, however I also want to make it so the other drive isnt active at all when the other is active.

But i also have two other hard drives in my computer that i dont want running during a certain time. Help pls!
>>
I'm looking to adding a second RAM module to my laptop. To be safe, should I have the new RAM be exactly the same as the old one down to the same brand, or is having the same speed, GB size, spec compliance, and DDR sufficient?
>>
>>54152830
Terrible. Save more money.
>>
what's stopping me from going to an airport baggage terminal and just taking a random suitcase
>>
>>54152830
only 4gb ram? you can do better.
>>
Is it true that computers today aren't that much more powerful than computers from 5 years ago?
>>
>>54153497
oh, and 8GBs of RAM
>>
>>54152319
Help

I read you need to switch NVS 4200 on in BIOS but there's no option. I also can't find an Nvidia control panel.
>>
>>54153585
kek
>>
>>54152830
drop cpu, get i5
get 8gb
get windows 7 for free
then meh, its a cheap pc
>>
>>54153577
sort of, there's been no signigicant gains in cpu performance, but they now have lower powerdraws, and the mobos that support the newer cpus also support faster ram.

so you can see a bit of a performance gain, but you should definately think of something newer with better power consumption if you're gonna have an always on machine
>>
4
>>
>>54153530
survelliance footage

the owner will complain. the airport has enough details to know what their baggage looks like, so it'll be easy enough to find in the footage who took it
pretty much the same deal with any "walk into place, take something, and leave", only you'll be walking into a rather secure place with camera out the ass, and potentially only gain some dirty clothing and useless documents
>>
>>54153530
morales, not actually being able to get a terminal anymore after 9/11.

Man i remember when family would be right up with you till you got on the plane, those were the days
>>
>>54153585
>2016
>having more than 3.25GB on your vidya box
wow look at mister super leet gamer
>>
>>54153828
>not having 64GB of corsair dominance ram
uhhh?
>>
>>54153497
I used that too, it ran okay on a 5870 and a 3570k at 2560x1080
>>
>>54153518

I'd say get the same exact thing myself.
>>
File: 1461081148156.jpg (21KB, 480x423px) Image search: [Google] [Yandex] [Bing]
1461081148156.jpg
21KB, 480x423px
>>54153854
Thanks
>>
>>54153937
ok
>>
If I by a Skylake CPU, will at idle at stock speed or will it throttle itself to save power? Is this OS-defined? I want a high clock rate chip but also want power efficiency.
>>
>>54154096
if you keep speedstep on it'll downclock when not used.
>>
Is this board suitable for overclocking an i5 6600k to around 4.5 ghz? This board seems to have what I need but I'm not sure if it can OC well.
>>
>>54154096
clock rate means no thing
>>
>>54154126
Forgot to post board.
http://www.newegg.com/Product/Product.aspx?Item=N82E16813132691
>>
Why would my hot swap to become inoperable,when nothing has been written to it since the array was created?
>>
Are there any lightweight mp4 screen recording programs out there for windows?

Like that webm capture program but that outputs something I can post to Twitter
>>
>>54154207
o b s
b
s
>>
File: switch.jpg (17KB, 480x480px) Image search: [Google] [Yandex] [Bing]
switch.jpg
17KB, 480x480px
I have a 100 megabit router and was interested in buying a gigabit switch so that I can transfer data between two computers on my network faster (putting them on the same switch and then another cable going to the router so that they can go on the internet).

Is installation of such a setup as simple as just plugging everything in and Windows/Linux will handle the networking automatically? Or is there a manual process I have to work through? Tell me about it.
>>
Sup /g/
I'm going camping kinda soon, and I need to be able to power my electronic air mattress pump without using an outlet

So what kinds of battery powered extension cord/surge protector-like things are out there? Even if it's just a battery that I need to plug into a surge protector I already have, idc. I just need something that I can use without an outlet for a bit.

Thanks.
>>
>>54154320
I want something faster to whip out and capture super quick
>>
File: image.jpg (1MB, 3264x2448px) Image search: [Google] [Yandex] [Bing]
image.jpg
1MB, 3264x2448px
My molex pins were all fucked up so I had to do this.

Is it safe enough to leave? It's a was a connectornfornancase specific fan controller so id have to buy new atx pin heads and solder them on. Don't have time for that at the moment.
>>
>>54154387
no, you just plug it in, that's it.
the switch will figure out where stuff has to go on its own.
>>
>>54154420
pressing two buttons isnt fast enough? you could even automate the process with a simple script
>>
>>54154207
use webmcam and change the ffmpeg parameters to output h264/mp4
>>
File: england.jpg (60KB, 543x960px) Image search: [Google] [Yandex] [Bing]
england.jpg
60KB, 543x960px
I recently got an update for my 1st gen moto g which is a prepaid Verizon (xt1028 I think)
It was just a security update for 5.1
So someone here said:
>Yes, it's safe, why aren't you using stock 6.0 ported from the xt1033?

How can I do this?
Is it even possible without rooting since I don't think you can root that prepaid verizon
>>
File: 1460677176435.jpg (32KB, 400x267px) Image search: [Google] [Yandex] [Bing]
1460677176435.jpg
32KB, 400x267px
So I downloaded and wrote the new Ubuntu 16.04 on my flash drive to boot on my laptop.
I try to boot it on startup and it is not recognized or located.
I tried on my desktop and the boot option was available.
What's wrong with my laptop? It can receive the flash drive when booted normally, just not prior to boot.
>>
>>54154450
Thank you. One more question. These switches that I'm looking don't specifically say switch port should connect to a router. Does that matter at all? Is there some kinda rule where I should always connect Port1 on the Switch to my Router or does it not matter at all?
>>
>>54154513
it doesn't matter, that's why it's a switch, it'll figure it out.
>>
>>54154505
pretty stupid, your mobo doesnt support boot from usb
>>
My dumbass found the right thread for this Sooo...
My box mod keeps shorting out.
I have put several different RDA's on it and it still shorts out. Some help would be appreciated.
>>
>>54154387
Plug them in and turn on jumbo frames
>>
>>54154505
Go to bios check if it is a boot able drive,then check boot priority
>>
>>54154542
Now the thing is I've booted from my flashdrive before to download Linux and it's currently Mint now.
>>
I'd like to get your educated opinions on this article. How much of it is true?

http://www.dailymail.co.uk/sciencetech/article-3551403/Would-want-live-forever-Expert-claims-extend-lives-virtually-immortal-soon-2029.html
>>
>>54154602
>Dailymail
Are you for fucking real right now?
>>
Where should I buy domains from?
>>
>>54154602
>"Any second now!"
> -Every tech evangelist ever about every potential technological advancement ever.
>>
>>54154670
>>54154734
He's been right about many things in the past so he have a proven track record for predictions
>>
In Vim how do I limit the length of the text in quotes by deleting characters if they exceed said length?

Max length 5:
blah "blah blah" ---> blah "blah "
>>
>>54154798
>Didn't even check the article.
>Who...
>Ray Kurzweil
Fucking hell.
>>
What does it mean for a dataset to consist out of nodes and edges?

http://socialcomputing.asu.edu/datasets/Twitter

This is a Twitter dataset but it doesn't make any sense to me after downloading and viewing the file.
>>
What's the cheapest way I can get 2 iPhones and cheap plans for my nieces? They're 13 and 14.
>>
>>54154953
Smartphones are 100 billion percent certain to turn girls into degenerates of the highest order.
>>
File: isa.jpg (130KB, 450x600px) Image search: [Google] [Yandex] [Bing]
isa.jpg
130KB, 450x600px
What's going on in this picture, with the ISA ports? What board is that?
>>
>>54154834
:%s/\(".\{5}\)\@<=.*"/"/g
>>
Bottom line, I have a CF-rooted Exynos 930F S7 that I want to restore back to original stock.


I deleted some apps which I need that are not restoring properly with Titanium backup.

Do I use: settings > backup and reset > factory reset

or

Redo the whole Odin > TWRP process?
>>
So on occasion on start up my screen just shows white static that moves and changes dimensions, like going from full screen save a black 500x300 corner in the top right to a 900x900 square in the center surrounded by black space. Restarting my pc fixes the issue, and it doesnt pop up often, but like once every 5-7 days. I can rule out the monitor/cable at least.
Is it something I should worry about, and if so, what sort of implication does it mean for my system?
>>
>>54154953
They dont need an iphone at that age. Get them a tracphone so they can call in emergencies and text with friends/family
>>
>>54154953
by buying windows or android phones and telling them off when they complain by asserting your authority as a parental figure. They'll realize they're fine in time.
>>
At what age should I give up hope of getting good coverage on my beard?
>>
>>54155240
21
>>
Is there any fucking way to make Windows 10 perform an update with the task scheduler?

here's my scenario
>set every connection to metered so it would stop fucking updating all the time on my laptop
>now it wants me to manually press download to get updates
>no fucking way to trigger an update through task scheduler

If I can't find a fix for this stupid shit I'll just use Autohotkey to start the update window and press "Download Now" every week. God damn.
>>
Where the fuck do I buy ducky products? They don't seem to sell anywhere, neither their mouse nor their keyboards. A few older models of their keyboards are on amazon, but that's it.
>>
File: 1455304938840.jpg (32KB, 468x329px) Image search: [Google] [Yandex] [Bing]
1455304938840.jpg
32KB, 468x329px
>>54146672
I have 0 work exp in front end development and no technical background etc, literally worked so many and different jobs for the last 5 years, but nothing even close to CS or programming or anything.

But I have the abilities and skills for at least a junior front end developer, and I found few companies that are hiring and their requirements are lower than my skill set etc. so I could fit in.

However I struggle writing my CV, coz following the norm I should list previous exp in the field etc, and/or degrees, but I never had any of those that are related to the job position or even the tech world.

What am I supposed to do ? What to write in it ? Can I completelly skip those parts and just write down my skills and link few sites that I have made ? (that are also for no clients, just sample sites, but include a lot of frameworks and demonstrating different skills)
>>
>>54155296
Talk about your passion for it in your cover letter, mention your personal experience / projects there as well (you're talking about why you'd be a good fit and want to work there).

Also make sure your hobbies / other interest on your resume show that you're interested in the subject matter outside of work.

Be ready to talk about it at length in an interview.
>>
>>54155282
mechanicalkeyboards
>>
>>54155264
use command line in a task
>>
File: $_57.jpg (301KB, 900x878px) Image search: [Google] [Yandex] [Bing]
$_57.jpg
301KB, 900x878px
>>54155423

>wuauclt.exe /detectnow /updatenow does nothing in windows 10

This OS is the work of the devil if it makes customizing update intervals this hard.
>>
>>54152785
Last BUMP before I fuck off
>>
>>54155606
Youd be better off getting a laptop and using a pen tablet
>>
Let's say I have a GPU that has slightly higher clocks than similar models on the market (I mean like, the TOP version of an ASUS GPU). Would it be beneficial in any way to underclock it or flash a bios pertaining to the non-OC model of the same exact GPU?
>>
>>54146941
>art
stay away from shit where you use the screen to draw and just get a wacom or whatevs you want to use. you'll get better results and lots of them have customizable features that improve workflow/artflow
>>
>>54155714
no
You can manager al lthis in the control panels
>>
Question to the Sysadmins.
You get a job at a company without any sensible IT infrastructure, how do you start turning it into a modern 21st century company IT wise? ("I quit" is not an option here)

It's about 25 workstations with everything locally on a mix of Windows from XP to 10, no domain, no backups, no fileservers.
A single unmanaged switch with all stuff (16 IP Cams and 25 Workstations) going through a SOHO router, along with a on-site PBX box and phones from 1990.

I started out by throwing out all the shitty phones and on-site PBX and moving to Yealink VoIP phones with cloud PBX. Replaced the TP-Link router with a Ubiquiti 8-Port Edgerouter and moved Workstations, VoIP and IP Cams each to their own switches and respective router ports along with configuring QoS for VoIP>all. I also firewalled public access to the NVR and set up a VPN for that instead.

Next, i want to upgrade our 2006 Wifi solution to Ubiquiti UAP-LRs and get a machine with a fuckton of RAM to act as main VM Host to set up Active Directory (lol i know fuck all about this), a Fileserver for shared resources, internal Application server for something i'm working on, and a ERP in the future.

Am i going in the right direction? How do i handle Email? What do i do with printers scattered around? Can i use a cheap consumer-grade i5 machine as backup VM host?

Someone tell me literally anything, since i obviously don't know anything about this shit.
>>
Can someone reccomend me a good download for windows 7 pro 64 bit? Also if i update to windows 10 will it become an original copy?
>>
>>54155847
Buy it at a shop. Don't download an OS full of malwares made by pirates.
>>
>>54155847
mydigitallife forums bruh they've got you covered on everything windows related

>>54155861
kinda this
don't get a crack or repack get a clean iso from ms then use dazloader or mstoolkit to activate
>>
Did Comptia ever add questions about Windows 10 to the A+ 801 and 802 exams?
>>
How do i overclock my pentium 4? It doesn't allow me to change the frequency thingy.
>>
How well does joining the U.S Armed forces relate to an IT job like System or Network Administration? Is there any opportunity in joining the Air Force?
>>
>>54154412
Be a man and drop the air mattress. They are stupid and unreliable.
>>
about to twrp backup
what is android secure?
>>
>>54156061
If you want to be a leech of your country you're protecting,getting 80K of tax payers moneyk,then sure go ahead.
>>
>tried microsoft toolkit, it didn't work for some reason
>daz loader apparently doesn't work on GPT
>can't reset the grace period anymore
>can't delete the registry entires that would let me reset the grace period because I can't enter repair system because bootable USBs plain refuse to work after trying several methods of formatting them

Guess I'm gonna have to stay unactivated forever then. Will something terrible happen? I can live without a desktop wallpaper, as long as the computer's performance stays the same and windows keeps working
>>
So my dad managed to lock himself out of his computer. Hell if I know how, I regret not making a repair disc back when I still lived with him. So I sent him a Windows 7 installation disc and currently getting him to reinstall Windows.

So it sounded like the installation was going normally, but at the point where the computer restarts to make you finish the installation (where you create your user account, set a password, etc) he's telling me that it's just taking him to the old login screen.

What the hell might have happened? Did he manage to make two separate Windows installations instead of overwriting the old one? He isn't being very descriptive so I have to guess here. I got him to use the upgrade option so he won't lose his files, but I'm pretty sure I've used that option before myself and it didn't make any sort of dual booting shit happen. Is there a way for him to access the rest of the installation process? If I'm remembering things correctly, there's a way to choose which operating system you want to boot from when you're turning the computer on, right? I can't find anything about this though. Maybe I'm searching for the wrong phrases or something.

If he has to format the drive in order to actually get this to install, is there a way for him to back up all of his files to a USB drive without logging in?
>>
>>54154412
electricity from fire bruh, get something like this
https://youtu.be/1mFmQcgFPbs
>>
>>54156155
>not booting a linux liveusb and copying the sam file and decrypting it
>>
>>54156143
have you tried kmspico?
>>
>>54156177
There's no way in hell he would be able to use Linux and copy the sam file over. It took him all day yesterday to change the boot order around, even after I repeated the same thing to him like 50 times. It's so weird how middle aged and older people suddenly lose the ability to read when it comes to computer shit.

Besides, the motherboard should be able to boot from USB but it refuses to. We ran into some problems back a few years ago and I tried to do that but it simply didn't work.
>>
>>54156290
>dad is senile
call geeksquad
>>
I'm building a Win10 gaming box to be separate from my regular Debian PC. I got the idea to use an old style beige case. Obviously it has to be ATX.

Any suggestions on PC models I can try to find? And maybe any sources? I'm looking at Dell Dimension 4100 listings on Ebay and they're mostly overpriced. If I search for Gateway 2000 there's some decent stuff that comes up.
>>
Can I repurpose an X201 as a server
Never made one so it's mostly for fun, the poor thing just sits there with no purpose anymore
>>
Are utilities useful? I just built my pc and i wanna know if i have to install any for my motherboard..

http://www.gigabyte.com/products/product-page.aspx?pid=5496#utility
>>
>>54156155

>locked out of computer

Pirate KonBoot you dumbshit. This is how we break into Windows accounts on repurposed desktops.
>>
File: qRdCioV.jpg (909KB, 2048x1536px) Image search: [Google] [Yandex] [Bing]
qRdCioV.jpg
909KB, 2048x1536px
>>54156050
pic related
>>
>>54156388
yeah, I'm sure his old man won't lose any sleep over finding out how ridiculously easy it is to get around windows security
>>
>>54156132
What does that have to do with system administration, though?
>>
>>54156215
Isn't that only for win 8 and 10?

All I need to do to be able to reset the grace period is to boot into the "Repaiur your computer" thingy, but for some reason I don't get that option in the advanced boot options screen I get by F8ing on POST.
>>
can appdata folder be moved from one user folder to another?
>>
why does the thing I just bought on amazon with one day delivery say it's going to arrive in may?
>>
>>54156463
You want to join the military.
That is what will happen when you join the military.Weigh that in to your decision
>>
>>54156346
Make your own for $500
>>
>>54156447
Exactly, I'd prefer making things work by making him reinstall Windows.

Any idea what might have happened during this installation though? I've never heard of it happening before and have no idea how to force it to complete the installation.
>>
>>54156463
just keep in mind that in the military you can pretty much cast logic and reason aside, they have no place in an environment run by strict adherence to rules and regulations

>>54156508
I"m not sure what happened, can't you use a vm and screen recorder to make a walkthrough video for him then put it on youtube or something, or does he not have access to any other computers?
>>
>>54156534
He doesn't have access to any other computers at home. I guess I could make a recording and he could watch it at the library, but I don't know if he would be able to remember it.
>>
What would cause notepadqq to stop using stock keybinds
>>
File: I am so sorry.png (66KB, 947x839px) Image search: [Google] [Yandex] [Bing]
I am so sorry.png
66KB, 947x839px
Whenever I compile, test, debug, terminate my game in Unreal it drives up the memory usage up from 200-300 MB to 5.0 GB in a matter of hours (usually bringing me to 99% memory usage from the usual 30% load).

Having to close it down every few hours or so is kind of annoying so I'm considering buying more ram. Just wanted to ask a quick obvious question:
Is there any point? Will these kind of programs hit 100% within the same time frame or am I actually a few more hours with it.

My ram stick is DDR3 1333 with a timing of 11-11-11-30. Do I have to get specifically a DDR3 1333 11-11-11-30?

Or can I get sticks with different Mhz and timing etc... Or will one or the other just not work if I get say a DDR4.
>>
>>54156644
memory leak
>>
>>54156644
Do you have the ascii code of that figure?
>>
>>54156680
Sadly no, just the image.

>>54156678
I worded it badly, just asking if the memory leak will make hit 99% in 4 hours regardless of how much memory I have? I feel the logical answer that doubling my ram should double the time needed before I have to restart.
>>
>>54156680
your new is showing
>>
>>54156724
I browse /g/ only for two years.
>>
>>54156719
programs will use as much ram as your computer has

my laptop used to have 8 gigabyte of ram and windows consistently ran out of memory
I bought another 8 gig so-dimm module and guess what? Windows still ran out of memeory
>>
>>54156719
NIgga please are you this retarded?
You could ad 128gb of ram,and it would still leak and cap it out.
Fix your code,its that simple
>>
>>54156749
>8 gigabyte of ram and windows consistently ran out of memory
              total        used        free      shared  buff/cache   available
Mem: 15G 1.3G 13G 310M 439M 13G
Swap: 0B 0B 0B

Use qa true OS next time.
>>
File: 1454227340373.png (10KB, 640x360px) Image search: [Google] [Yandex] [Bing]
1454227340373.png
10KB, 640x360px
>>54156773
Nigga please
>>
>>54156773
don't get me wrong, I use linux as much as I can. But my hobbies mandate my use of Windows from time to time
>>
>>54156798
8172
What are you doing?

>>54156808
>hobbies
Which hobbies? Games? It's 2016 we have invented consoles for gaming.
>>
>>54156832
Music production. Nothing on linux compares to the software available on windows.
>>
>>54156873
Ho. OK. I know nothing about music production.
>>
>>54156755
>are you retarded
mostly, which is why I was asking.

>fix your code
It's the editor leaking not my actual game. Either that or all of my projects are absolutely terrible including my tiny ludem dare project. That said I do think it's the editor because of the simple fact that just leaving to go get something to eat and coming back to it jumping up another 400MB.

>Well stop leaving your programs open when you leave
Refer to my first point, I'm mostly retarded.
>>
File: Capture.jpg (18KB, 347x186px) Image search: [Google] [Yandex] [Bing]
Capture.jpg
18KB, 347x186px
>>54156464
I finally managed to run the fucking .bat file to delete the registry keys and apply slmgr -rearm again, but it doesn't work. IT says the command was applied successfully, but I still get the "this copy of windows is not genuine" thing, and when I try slmgr -dlv to check the status of my period of grace I get pic related instead of the window I would get before doing this

Guess I'll just run unactivated windows and reinstall it if it starts giving me too much shit.
>>
>>54156832
compilng large binaries in ram
>>
File: 1451549658590.png (201KB, 462x312px) Image search: [Google] [Yandex] [Bing]
1451549658590.png
201KB, 462x312px
Is there any reliable one-application way to check for the most subtler types of viruses like botnets and rootkits and such? Anything that MSE doesn't catch, I mean.
>>
>>54156906
Nowhere did i say to shut down everything when you arent using it,perhaps you should check the post again.

Why would the editor leak?
Load the editor by its self
Did it leak?
No? Your code is bad
>>
>>54157039
I wrote in the post you responded too that it leaks when it is just the editor open.
>>
should i get this?

http://www.amazon.com/PNY-CS1311-Internal-Solid-SSD7CS1311-240-RB/dp/B019H3B3OW/ref=cm_cr_arp_d_product_top?ie=UTF8
>>
>>54156989
Run your own KMS server in a VM:
https://github.com/myanaloglife/py-kms
>>
how do I achieve maximum compression with 7zip? I've seen rars and other compressed files go from like 10 mb to several hundred megabytes or even a couple gigs when unpacked

I have a 34 gig folder and I want to make the smallest possible 7z file out of it
>>
>>54157076
Do you want a mediocre SSD?
>>
File: dontknow.jpg (14KB, 489x275px) Image search: [Google] [Yandex] [Bing]
dontknow.jpg
14KB, 489x275px
>>54146672
Where can I learn how to work with linux???
>>
>>54157092
>34gb
Is any of it compressed data?(pictures,songs,videos that use comressed contaners)

Inless most of that is binaries and text,you wont get any compression rates like that.
Use lrzip nearly 99% compreson ratios
>>
What's the way most people open programs in Debian? I'm using openbox as my WM, and there are some programs in the context menu when I right click the desktop but not everything is there. I've been opening programs in the terminal, but when I close the terminal it will kill the program as well. Coming from windows where I can just create a shortcut, this is a bit confusing for me.
>>
>>54157120
aadd a & at the end of the program to through it in the background

firefox &
<filemanager> &
>>
I have created a file in my debian virtualbox, the host is running windows. Debian only has cli, no graphical interface. How do I copy the file from virtualbox to host?
>>
>>54157118

It's my Skyrim mods folder so most of it is textures and meshes (.nif files)
>>
>>54157092
Compression ratios that high is because of large quantities of duplicate data like text files.

For maximum compression ratio you can just max out the settings but it will take ages to compress and decompress.
>>
>>54157120
program </dev/zero &>/dev/null &
problem solved
>>
How do I make Lubuntu's theme look more modern on my old PC?
>>
>>54157105
Are there any better alternatives in the same price range?
>>
>>54157153
7z a -m0=lzma -mx=9
>>
>>54157178
save up 2 more dollars and get a samsumn 850
>>
>>54157161
>>54157136
Both of these still close out of the program if i close out of the terminal. I tried it with vlc with "vlc &" and "vlc </dev/zero &>/dev/null &". Any idea why?
>>
>>54157292
you dont need /dev/nul,its a troll
>>
>>54157303
shit, i've been trolled
>>
I deleted cmd and don't have a repair disk.

What's an alternative for cmd? There's no command.com on Win 7. Alternatively, where can I, uh, download...cmd?
>>
should my cpu fan be pointing towards the extractor fan? it came fitted to point away from it but surely it should blow warm air at it to be extracted away
>>
>>54155815
Bump for advice
>>
>>54157362
Turn the heat sync around...
>>
>>54157362
Ideally, yeah
>>
>>54157354
try "powershell"
>>
>>54146941
Have one and absolutely love it. The art I can't really speak to, but for everything else you mention it has been perfect. The ONLY downside for me so far is the battery life isn't on par with the MacBook that I came from. I get usually 6-7 hours which isn't bad, just not great.

As far as Windows 10 I haven't had any problems. I know it's somewhat of a bother but I turned telemetry down to basic and feel comfortable with it. From a usability standpoint it is every bit as good as OSX and Windows 7 were for me so no complaints there.
>>
>>54157292
You're lying anon.
>>
>>54157404
botnet instead of bother
>>
Will someone explain to me how Windows handles dependencies? For example, if a program uses qt on GNU/Linux, the package manager checks if I have qt and downloads it if I don't.
What does Windows do in this situation? Do developers need to include all of qt to make sure that their program will work on the Windows device?
>>
>>54157406
Really I'm not. I tried on rxvt and xterm. I don't know what I'm doing wrong, but the terminal also stays blank as though it's running it as a child process.
>>
>>54157501
Paste your command inside a [ code ][ /code]
>>
>>54157402
Works like a charm. Thanks m8.
>>
>>54157534
vlc &


Also tried with chromium, steam, and gedit. All close when I click the x in whatever terminal I used.
>>
File: 1372673288457.png (2KB, 142x138px) Image search: [Google] [Yandex] [Bing]
1372673288457.png
2KB, 142x138px
protected void onCreate(Bundle savedInstanceState) {
Button abtButton = (Button) findViewById(R.id.aboutButton);
abtButton.setOnClickListener(this);
}

public void onClick(View v) {
startActivity(new Intent(HomeActivity.this, AboutActivity.class));
}


Using Android Studio, I've got this bit of code for one of my Buttons. It works and all, but it's been a while since I wrote it and I don't get why it works.
How does "onClick" know to be linked to my abtButton? How would I add other buttons starting other activities?
>>
>>54157534
>>54157616
I just found that it works correctly if I do
nohup vlc


Any idea why it would work for this but not &? I would definitely prefer to use & over nohup.
>>
>>54157616
So you were lying.
>>
>>54157435
Windows doesn't handle it since it has no native concept of package management.

Instead, when you create an installer, you also install all the dependencies you need, or you statically link the binary so it includes all of the dependencies inside the single binary.

For instance, GTK runs on windows so people can port their programs over easily. Every time you install an gtk app, each one will install its own copy of libgtk.dll. Same thing with OpenSSL and other common libraries.
>>
>>54157616
You're lying
>>
>>54157665
"&" starts the program in the background so you can continue using the terminal. However, it is still a child process of the terminal, so when the terminal closes it sends the HUP signal to all of the children telling them that their controlling terminal quit, so they should quit.

nohup is a wrapper that disconnects the process from the parent so it will not receive SIGHUP.
>>
>>54157670
>>54157730
I don't get why you guys are saying that, am I missing something? Does >>54157665 clear anything up?
>>
>>54157797
Oh, am I just getting trolled then? So I should always use nohup when opening a program through the terminal, or do most people just leave the terminal open?
>>
>>54157120
you can customize the menu, you know.
 sudo apt-get install obmenu obconf

and run obmenu. It's a bit counterintuitive, but you'll get used to it. just DON'T DELETE THE MAIN MENU or you will LITERALLY fuck EVERYTHIMG
>>
>>54157837
trolling too hard anon
>>
>>54157868
man, dumber questions have been asked in these threads. I'm clueless on linux.
>>
>>54157837
Probably a combo of trolling, and people not understanding how "&" works. I'm guessing a lot of people just leave the terminal open as well.
>>
>>54157894
just do
>>54157863
>>
>>54157937
it took me like 5 minutes to do this, it's much easier than fucking around and opening a new terminal every time you need to run something
>>
>>54158038
forgot pic gomen desu
>>
gpu for 1080p, gaymz like Division and upcoming shit like titanfall and for honor
>>
>>54158049
>>54157937
>>54157863
this is really nice, thanks. what do you mean main menu, the /Debian option?
>>
>>54158065
980ti
>>
A lightning hit near my house and burned my mobo, which was a crappy cheap 1155 socket one. It's the only thing I have to replace but I'm having trouble finding a cheap mobo with that socket near me.

The other outter I have is replacing my old CPU (i3 2120) for an A8 7600 that I got offered with a new mobo from a relative, but I heard that I have to stay away from AMD CPUs.

Is it going to be worse than my i3 2120? Will I notice a difference, whether it is for better or worse?
>>
>>54158102
I don't know how it'll come up for you, but the "Openbox 3" menu at the top.
>>
>>54158119
>stay away from AMD CPUs
bullshit
intel shills here want you to spend $500 for a proccsor. They wil bitch about better single thread performance,they it isnt noticable in the slighting,and nothing using single cores of threads,its all multithreaded and multicore

So no amd isnt shit
>>
>>54158152
so is the A8 7600 in the same level of performance of my previous i3 2120 or not?
>>
Why do I lose 69GBs on my 1TB drive and 19GB on my 2TB drive?
2TB is a WD black
And 1TB is a blue.
>>
How long until PC cases come with type c USB ports on the front? Are there any out already?
>>
>>54158180
Formating and using si units for marketing
>>
File: Screenshot (21).png (2MB, 1920x1080px) Image search: [Google] [Yandex] [Bing]
Screenshot (21).png
2MB, 1920x1080px
I'm trying to setup live TV on kodi and I don't really know what I'm doing
I found a m3u but I only get the channel names, no shows
Clicking them does nothing
>>
>>54158195
When enough hardware supports it
>>
>>54158195
In Win 805 apparently.
$170 though.
>>
>>54158206
So theres no way to reduce the waste?
>>
>>54158265
It isnt "waste"
Everything is marketed in 1000=1mb where it is 1024=1mb
Literally nothing you can do
>>
>>54158293
>1000=1mb

oh right, forgot about that vital part.
silly me.
>>
>>54158228
Newer phones already support it. A fair amount of newer motherboards already have it on the back panel. Hopefully that means case manufacturers will put some on the front soon.

>>54158231
Thanks. Yeah I'm not looking to spend that much on a case. I'm just building a PC soon and having a type c connector on the front would be really convenient for connecting my phone to it, but I'm not going to spend $100 more than I want to on a case when I can just deal with the really short regular USB 3 to type c cable that came with my Nexus 6p.
>>
>>54158373
It's a pretty new thing so I'd expect all cases with front ones to be no less than 150 for a few years.
>>
Do you think it's true that women make better programmers than men?
>>
File: 1432094732406.jpg (28KB, 383x345px) Image search: [Google] [Yandex] [Bing]
1432094732406.jpg
28KB, 383x345px
>>54158497
>>
what is actually happening when something is "installing"
dum as shit question but i realized that i dont know
>>
Is it possible to unlock the bootloader on a moto e gen 2 lte without an OEM code.
>>
Pamac or Octopi?
>>
>>54158542
to keep it simple:
the installer is essentially a copy of the program and its necessary libraries along with another program that says "Take these files and put them here. Put those libraries and put them there". "Make a few changes to [insert OS' equivalent of the registry here] so it doesn't flip the fuck out when the program is run"

Once it does this, the program has been installed.
>>
>>54158595
pamac, octopi crashes a lot, at least for me
>>
File: 1459174238859.jpg (43KB, 704x400px) Image search: [Google] [Yandex] [Bing]
1459174238859.jpg
43KB, 704x400px
I just got a new 4690K I've managed to OC it to 4.6Ghz 1.250V and so far it seems stable,I've been running Aida64 and Prime95 all day without errors.


Now I would like to know if its possible to get the CPU to underclock and undervolt as normally it would with the power saving features, I have the vcore set to manual mode 1.250v, I have beside manual mode, offset mode and adaptive mode.
Motherboard is Asus Z87M-PLUS
>>
>>54158601
thx
>>
>>54158651
no
>>
>>54158651
sure
>>
File: 1449081014939.jpg (156KB, 700x924px) Image search: [Google] [Yandex] [Bing]
1449081014939.jpg
156KB, 700x924px
>>54157145
bump
>>
File: aNng5P3_460s_v1.jpg (41KB, 460x430px) Image search: [Google] [Yandex] [Bing]
aNng5P3_460s_v1.jpg
41KB, 460x430px
>>54146672
>>54133832
OKay, So i;ve been teaching my self html, css and java script. Now I'm working on jQuery but for the life of me I cant get the damn thing to work, I'm trying to get swipe gestures recognized in the code its just to hide the <p> elements. I What am I doing wrong here? is it my syntax? or...
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">

<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script>
$(document).ready(function() {
$("p").swipe( {
//Generic swipe handler for all directions
swipe:function(event, direction, distance, duration, fingerCount, fingerData) {
$("p").hide();
},
//Default is 75px, set to 0 for demo so any distance triggers swipe
threshold:0
});
});

});
<!--THE page loads but no swipes are recognized nothing happens-->
</script>
</head>
<body>

<p> blah balh blah this should disperser</p>
</body>
</html>


(yeah I know its also in wdg but better safe :)
>>
>>54158614
Stable or Dev?
>>
i have this sd to microsd adapter, and no matter what i put it in it doesnt work? it doesnt work on my x220, on my brothers modern laptop, and on my usb card reader. ive put the switch on the side in the middle, top and bottom and it still never reads.
>>
>>54158791
stable
>>
Someone help
>>
I just installed Ubuntu 16.04 and I want to install arc-theme.

I added the repository, did apt-get update, and then tried to install arc-theme and it says "package not found"...

What else could I need to do? This is already frustrating.
>>
File: 1458798348605.jpg (32KB, 610x357px) Image search: [Google] [Yandex] [Bing]
1458798348605.jpg
32KB, 610x357px
>>54158731
How?
>>
>>54158796
its dead jim
>>
>>54158805
Thanks
>>
Sublime or Atom and why?
>>
My friend and I are trying to get PS installed and its being really dumb.
The biggest issue I'm having is that it tells me I need to move this .dll file to another folder and I can't find where to replace it.

But there's also a key to put in it and when I try to do that, I see there is no key? Can someone find me a key from like kickass or demonoid? I have no idea why this isn't working.
>>
File: 1454499716994.gif (478KB, 400x400px) Image search: [Google] [Yandex] [Bing]
1454499716994.gif
478KB, 400x400px
Guys, I've got a problem
>>
Why do people associate Gentoo with RMS when the FSF says that Gentoo isn't a free distribution?
>>
>>54159236
Being installing and using obscure OS is something RMS likes to do
>>
I have a Windows 8 license on a computer that doesn't need it anymore (it's installed on boot camp on an iMac, but the need for Windows on that computer no longer exists). I see that with Windows 10, you can transfer retail licenses to different computers, and that Windows 10 can be activated with a product key from an older version of Windows. I can't find any instructions on how to actually do the transfer though. If I were to just install Windows 10 on a new computer and use the product key for the Windows 8 on that old iMac, would it work? Or do I have to deactivate it somehow on the iMac first?
>>
>>54159282
Some prebuilt win8 have a eeprom chip on the mobo that has your serial/product key.It would be locked down and would have to be updated via the in windows update.About transfering im not sure it you could with this combo as the product key is hardcoded in to the motherboard
>>
Should I even bother to try to run Darksouls with an Intel(R) Celeron(R) 2955U @ 1.40GHz
processor when the min reqs is a Core 2 Duo E4300 @ 1.8GHz
>>
>>54159257
RMS has never installed GNU/Linux on a machine, ever.

https://www.youtube.com/watch?v=umQL37AC_YM
>>
>>54159349
kek
>>
>>54159340
But Microsoft's own FAQ says that retail versions of Windows 10 have transfer rights, and OEM versions don't. It also says that if you use the free upgrade from a retail version, you'll have a retail license and if you upgrade from an OEM version, you'll have an OEM license in Windows 10. Since I have a retail license, I know there has to be a way to transfer it to a new computer. I just don't know the specific steps I need to take.
>>
>>54159382
I'm serious, I don't know about these things
>>
>>54159406
It wont be worth running,it will be such shit and probly lag evey other second rendering
>>
>>54146749
Stop using Windows 10.
It's laggy beacuse Microsoft is watching your porn over the internet.
>>
New thread when?
>>
>>54147429
There is the scanned text, and the computed text.
>>
>>54159435
when ur mom hops off my dick ayy rofl
>>
THIS THREAD REACHED BUMP LIMIT
WE NEED A NEW ONE
>>
300 Shekkles for anyone who can help out.
> phone refuses to charge (light isn't on when charging)
> wouldn't start up because 0% (charging would sent it into retard battery icon mode, constantly restart) had to get it into some recovery mode just to be able to charge it for a few percent.
> restarted, still 1%. not showing that its charging but works when plugged in (idek)
> been on 1% since 8pm
> been functioning for the past two hours so I suspect it's charged
Is it hardware or software /g/?
I'll reflash if necessary
>>
>>54159649
Does it have a removable battery? It might be a hardware error with the component that actually reads the amount of charge left. I'm not 100% sure that's what it is though.
>>
my google play store crashes when i type "infi"
not infw, not infp, not inf, the only fucking way i can make it crash is by typing in "infi" into the search bar
weirdest fucking thing ive seen, what could be causing this?
>>
>>54159649

go to recovery and clear cache
>>
I was typing and I made a mistake. I tried to hit ctrl+Z to quickly delete the last word I'd written, I know I should've just hit ctrl+backspace but it's not a habit of mine yet.
Anyway, the last word I'd written was "home" and I pressed the wrong key or keys because instead of deleting the text, it fucking autocompleted it and turned it into fucking "Homesmut" including the capital H. I know the word wasn't on my clipboard and I never even fucking knew that was a word, so it was certainly not in my history, internet or otherwise

What I want to know is, what the fuck did I press to make my text autocomplete? I am using windows 10. If any other additional information is needed I can totally share because I really want to know what happened
>>
>>54159690
sadly, no. it's an Asus Chinkfone 5 LTE
>>
>>54148307

I know it's frowned upon but I gotta bump this question. I don't have a lot of time to make a decision and I don't want to get fucked over by the cheaper one.
>>
File: 1413004369439.jpg (15KB, 480x360px) Image search: [Google] [Yandex] [Bing]
1413004369439.jpg
15KB, 480x360px
When buying software for a specific number of computers, how do these companies/softwares KNOW how many computers you're trying to install on?
Is it a hard drive thing? Is it an IP address thing? Will using a VPN fuck with it?
>>
>>54160041
Amazon link is 7k4000 and newegg is 7k3000

They are identical in specs.
Amazon just has a better deal
>>
>>54160155
Thank you, guess I'm going with Amazon, though if you're feeling extra-helpful would you mind explaining what the 7k_000 parts mean? Now I'm just curious about that.
>>
>>54160184
Just versions
3000 came out before the 4000
>>
>>54160205
Ah. Now I feel silly for not realizing that. Thanks again!
Thread replies: 383
Thread images: 63
[Boards: 3 / a / aco / adv / an / asp / b / biz / c / cgl / ck / cm / co / d / diy / e / fa / fit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mu / n / news / o / out / p / po / pol / qa / r / r9k / s / s4s / sci / soc / sp / t / tg / toy / trash / trv / tv / u / v / vg / vp / vr / w / wg / wsg / wsr / x / y / ] [Home]

All trademarks and copyrights on this page are owned by their respective parties. Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
If a post contains personal/copyrighted/illegal content you can contact me at [email protected] with that post and thread number and it will be removed as soon as possible.
If a post contains illegal content, please click on its [Report] button and follow the instructions.
This is a 4chan archive - all of the content originated from them. If you need information for a Poster - you need to contact them.
This website shows only archived content and is not affiliated with 4chan in any way.
If you like this website please support us by donating with Bitcoin at 1XVgDnu36zCj97gLdeSwHMdiJaBkqhtMK