[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

Stupid Questions Thread /sqt/

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 335
Thread images: 40

File: 1326521981099.gif (519KB, 1006x575px) Image search: [Google]
1326521981099.gif
519KB, 1006x575px
Previous thread
>>59042978

Next thread
>>51002093
>>
I don't have any questions. Is it ok to just lurk?
>>
>>59055114
What are the best excel books/tutorials? I'd like to master VBA but the shit on youtube sucks.
>>
When I write an AHK script to click the mouse somewhere, it bases the coordinates within the current window. Can I tell it to click the mouse somewhere based on absolute coordinates of the screen instead?
>>
File: mnb006.png (163KB, 400x600px) Image search: [Google]
mnb006.png
163KB, 400x600px
I'm trying to get an ancient flash game to work (http://www.mudandblood.net/mudandblood2.swf)

The game loads and I can get to wave 100 or so (based on game2hard, not any bug).

Then I go to check my profile and check how many waves I survived in the stats page on the profile, and the game crashes. When I load it back up, I still have all the medals earned during the game, but the stats page says 0 waves survived, and a bunch of other numbers are 0 when they shouldn't be.

What's wrong, and how do I get this working? This game was my life like, ten years ago
>>
Asked last night but the thread was kill:
What's a decent browser that will still werk with OSX Lion?
>>
>>59055232
Maybe old Presto-base Opera?
>>
File: wtf.png (102KB, 587x841px) Image search: [Google]
wtf.png
102KB, 587x841px
Just what the hell was google implying here?
>>
What's bitcoin mining? I see it on benchmarks and shit, and apparently gives you money?

A tl;dr would be nice
>>
How the fuck do I open mega links?

I just see this fucking "mega:///#!" bullshit and I download shit from it.
>>
>>59055422
*can't download shit
>>
>>59055422
download Megadownloader 1.7
>>
>>59055422
You need the MEGA(TM)(R)(C) desktop (((app)))
>>
>>59055438
it's an addon.
>>
>>59055422
about:addons
>>
File: 1462014512444.jpg (62KB, 960x960px) Image search: [Google]
1462014512444.jpg
62KB, 960x960px
I have a Raspberry pi 3 with Kodi installed, connected to the network.

Is there a way I can access the interface from my PC as if I was at the TV? I already have the remote app, but the problem is I can't see what is happening.

I just need the visual feed on my pc so that I can download stuff there and pick it up through SMB.

Any clues?

btw, I tried the browser stuff, it just crashes.
>>
>>59055489
Install a vnc or rdp server.
>>
Can someone help me understand this? I really don't know how it works.
The idea of this is that it makes a matrix of epsilon closures in an FSA. The full program prints the table labelled 'true' if a state can reach another using only e, and 'false' if it can't.
int n_states = 3;

int[][] delta=new int[][]{
{0, 0, 0},
{0, 0, 1},
{0, -1, 2},
{1, 1, 2},
{2, 0, 2},
{2, 1, 2},
{2, -1, 2},
{0, -1, 0}
};

// Given an FSAe A, compute its epsilon-closure relation
static boolean[][] e_closure(HelloWorld A)
{
boolean[][] eClos = new boolean[A.n_states][A.n_states];
// initialise the matrix with diagonal elements to true
for (int i=0; i<A.n_states; i++) { eClos[i][i] = true; }
boolean finish=true;
do {
finish=true;
for (int i=0; i<A.delta.length; i++){
if (A.delta[i][1]==-1){
int src = A.delta[i][0];
int trg = A.delta[i][2];
for (int j=0; j<A.n_states; j++) {
if (eClos[trg][j] && !eClos[src][j]) {
eClos[src][j] = true;
finish = false;
}
}
}
}
} while (!finish);
return eClos;
}

My main questions with this are:
1) How can it work when src and trg can only be 0 or 2 respectively? This matrix is 6x6, so if it can only reach 0 or 2, in the line
eClos[src][j] = true;
, then how can it be used for anything past 0? Or does the first dimension of the array not indicate either the x/y axis?
2) Why is the first dimension of the array used with src (0) and trg(2)? Why the first dimension?
>>
>>59055514
thanks, that seems like the proper way to do it. I just didn't find anything while searching for it.
>>
I want to access some int variables throughout different methods in small java program.

Its all one class.Where do I declare the variables so that all the methods can access them ?
>>
>>59055627
Anywhere that isn't in a method.
>>
I know /g/ is more software than hardware oriented, but maybe there's a EE or something around

What is the best way to digitally "mark" something under these parameters?

With way I mean comms device ala bluetooth, beacon, zigbee, etc

>1-2 meters precision
>must work indoors and underground
>no more than 50 mts required
>low power

To add context, i want to make thingies to put in my car or other things in order to watch them both in a "radar" and see them pinpointed in augmented reality.
>>
my stacy sister wants to renew her phone. is xiaomi mi 5 good enough for her normie needs ?
>>
>>59055737

>supporting Chinese imperialism

BUY AMERICAN
>>
>>59055769
im from europe actually
>>
>>59055787

>phone with open source version of android
>install Cerberus
>see all calls, tetxs and selfies
>PRO FITNESS
>>
Is displayport better than dvi-d? It's for a 1080p monitor.
Are LED backlight LCDs good enough?
>>
>>59055769
I just buy the best, sorry if american sucks
>>
What's a good SIMPLE note taking app for android?

I want something simple, but pretty, and doesn't require a shit ton of permissions, ya know?
>>
>>59055908
ColorNote
>>
What updates should I avoid with Windows 8.1?
I recall there being a list when I was running 7, but is there one for 8/8.1?
>>
>>59055198
the autohotkey documentation online seems to answer this just fine:
https://autohotkey.com/docs/commands/MouseClick.htm
>Coordinates are relative to the active window unless CoordMode was used to change that.

so you must first set
Coordmode, Mouse, Screen
>>
File: 0.jpg (499KB, 1352x1920px) Image search: [Google]
0.jpg
499KB, 1352x1920px
Hey /g/. Can anyone help me rip these images? They switched to an XHTML reader. The images are scrambled when I dump the responses in Fiddler.

http://viewer.comic-earthstar.jp/viewer.html?cid=ede7e2b6d13a41ddf9f4bdef84fdc737&cty=1&lin=0
>>
File: helpmeplz.jpg (2MB, 5344x2485px) Image search: [Google]
helpmeplz.jpg
2MB, 5344x2485px
That is my GT 640. The 1070 ITX is still quite small but bigger than it. Will it even fit on my motherboard, or would it collide with all the shit on the bottom even if the motherboard was outside of the case?

GT 640:
Length 5.70 inches
Height 4.38 inches
Width Dual-width

GTX 1070 ITX Gigabyte:
Length 5.20 inches
Height 6.70 inches
Width Dual-width

Computer is a Dell XPS 8500 from whenever the GT 640 was new.
>>
>>59055391
tldr you are 5+ years too late to make money on it unless you plan on building a warehouse and filling it with hundreds of thousands of dollars of purpose-build ASICS (and powering it with cheap Chinese electricity)
>>
>>59056120

Are you asking will something smaller fit where something bigger currently is ?
>>
>>59056041
thanks famalam
>>
>>59056172
I am petrified at buying something and then being told there's a reason why I can't actually use it. Maybe despite being not as long, the extra height or the width of the GTX 1070 would be too much for the motherboard or something, I don't know. I have never replaced or put in my own CPU or GPU before. I've only done RAM and HDDs, which are uniform in size and not nearly as expensive as purchasing a 1070.
>>
Taking software courses for the first time next semester, but because my schedule is weirdly balanced, I have to take at least two different languages at once. I have experience in python, but how fucked am I?
>>
>>59056211
It will fit, it takes up two slots worth of mobo room, look at the fucking width you retard the length is smaller it's like an ice cream sandwich.
>>
>>59055114
how do i hack a facebook without using keylogger or xploits?
>>
>>59056265
Yes, they both take up two slots, but the GTX 1070 is going to be bigger than my GT 640 which literally could be a single slot if it weren't for the huge ass fan on it. You don't have to be so mean ;_;
>>
>>59056282
guess the person's password
most people are retarded so this isn't as hard as it sounds
>>
When new CPUs don't support previous windows versions does that actually mean anything or is it just Microsoft really desperately wanting you inside their area of surveillance
>>
>>59056247
Two courses are CSS/HTML and C++, both intro courses.
>>
File: 1442482619708.gif (792KB, 640x360px) Image search: [Google]
1442482619708.gif
792KB, 640x360px
>>59056287
>You don't have to be so mean ;_;
No.
>>
File: 1473646623166.webm (1MB, 1600x900px) Image search: [Google]
1473646623166.webm
1MB, 1600x900px
>>59056343
>paying for CSS and HTML classes
The homepage thread faggots are laughing at you.
>>
>>59056393
Requirement for graduation
>>
i'ven learning networking admin stuff and yesterday i looked into the OSI model and i think i understand it but i cant get myself to remember all the 7 layers

and yeah like i watch and shit but i dont feel like i retain what im learning i just usually get the idea or what they trying to teach but if you ask me specifics i just choke

how do i fix my autismo on this topic or is this the normal thing for most people?
>>
>>59056555
Application : All
Presentation : People
Session : Seem
Transport: To
Network: Need
Data-link: Data
Physical: Processing
>>
Will 720p video look as bad on a 1080p 27" monitor as on a 1440p 27" monitor, or is it just about the size? Could 1440p be even better considering upscaling algorithms?
>>
File: when you don't install gentoo.webm (531KB, 934x522px) Image search: [Google]
when you don't install gentoo.webm
531KB, 934x522px
>>59056493
That's just sad.
>>
File: surface_book.jpg (33KB, 778x438px) Image search: [Google]
surface_book.jpg
33KB, 778x438px
>>59055114
What ultrabook or similar device should i get? I can't decide between dell xps 13 and microsoft surface book. Xps would be nice since i could run linux on it but would be nice to have the tablet features of the surface book
>>
>>59056733
Dell.
Fuck microsoft.
>>
>>59056555
>>59056609
I've also seen
Physical: Please
Data-link: Do
Network: Not
Transport: Throw
Session: Sausage
Presentation: Pizza
Application: Away

Pick whichever one sticks in your brain more.
>>
>>59056739
Why? It's not like dell makes very good products usually.
>>
>>59056733
13" retina macbook pro
or
12" retina macbook
>>
>>59056757
fuck off apple shill
>>
>trying to find FAT32 USB
>plug one in to front USB port
>doesn't work
>try on different port
>same problem
>realise I fucked up

Is it possible to resuscitate these two 2.0 ports or are they fucked? Plugging in working USBs brings up nothing, and a 360 doesn't even power on, so it's probably blown the power aspect?
>>
>>59055141
I also have no questions, and no
>>
Is The C Programming Language still the best book to learn C? Is it outdated?
>>
Does it make sense to only switch on my VPN when I need to, like torrenting or getting past web filters? Or is this as dumb as I think it sounds?
>>
File: 20170221_192015-1.jpg (4MB, 2263x2185px) Image search: [Google]
20170221_192015-1.jpg
4MB, 2263x2185px
What i do wrong
>>
How do I blank post? All I remember is it is something related to spoiler tags
>>
whats a good dashcam?
i got my tax return back and i think getting one of those would be a good investmen
>>
>have alarm set on my tablet
>screen is kill
>reboots itself whenever I turn it off
>tried long pressing power button and via bootloader, no luck

Right now I have it stashed in the attic wrapped in a blanket, is there a more /g/ solution?
>>
>>59057046
No that's fine and what most people do. I tend to leave mine on unless i have a reason to turn it off (like a website that wont load work correctly due to the vpn like kissanime)
>>
Anyone know how to answer this?

Two people are playing a board game with forty tiles on the board, wrapping around in a loop. Player one rolls two six sided dice each turn, and moves that amount of spaces. Player two rolls two six sided dice on the first turn only, and moves that amount of spaces every turn. If a space on the board is chosen at random, what is the probability that player two lands on that space before player one does?
>>
pulled some data in XML from a website, there is rich text, and the XML extract displays that text like this

&lt;b&gt;

what is this called?
>>
>>59057336
HTML escape codes
That's <b> but it has to escape the < and > so it doesn't get interpreted as HTML.
>>
>>59057336
>&lt;
less than

>&gt;
greather than

>&lt;b&gt;
<b> = bold
>>
I plan on building a new PC. I won't say which brand because shills, it will be in march though. Is it a good idea to buy some of the more universal things like memory, case, PSU, and hard drive now and just sit on them for a few weeks?
>>
>>59057250
Not a formal answer, but:

Factors of 40 in [2, 12] are 2, 4, 5, 8, 10. I cba to work out the odds (it'd be a triangular distribution with two dice throws) but if player 2 rolled a factor n, he'd only have a 1/n chance of ever finishing. Player 1 can land on every square. So the answer is probably P1.

(Game should really have a prime number of tiles)

(Also there are some numbers e.g. 6 which aren't factors but you'd never land on odd squares, so take them into account when you solve it)
>>
>>59057162
thanks
>>
>>59057412
Fuck, thought the question was "who's more likely to win", ignore that answer. Also it seems like the sorta thing you could simulate a billion times to find the answer, screw stats.
>>
My monitor has this odd yellow tint to it despite all colors on the OSD being set to a balanced 50. I tried deleting all profiles but the ICC in color management, but that didn't work. What should be the next step of my master plan?
>>
>>59057394
No.
Sales
>>
>>59057480
Please elaborate with more than two words.
>>
>>59057512
no1
[noh]
Spell Syllables
Word Origin
See more synonyms on Thesaurus.com
adverb
1.
(a negative used to express dissent, denial, or refusal, as in response to a question or request)
2.
(used to emphasize or introduce a negative statement):
Not a single person came to the party, no, not a one.
3.
not in any degree or manner; not at all (used with a comparative):
He is no better.
4.
not a (used before an adjective to convey the opposite of the adjective's meaning):
His recovery was no small miracle.
adjective
5.
not a (used before a noun to convey the opposite of the noun's meaning):
She's no beginner on the ski slopes.
noun, plural noes, nos.
6.
an utterance of the word “no.”.
7.
a denial or refusal:
He responded with a definite no.
8.
a negative vote or voter:
The noes have it.
verb (used with object)
9.
to reject, refuse approval, or express disapproval of.
verb (used without object)
10.
to express disapproval.
Idioms
11.
no can do, Informal. it can't be done.

Challenge: Tongue Twisters
Favorite Button
CITE
Translate
sales
[seylz]
Spell Syllables
Examples Word Origin
See more synonyms on Thesaurus.com
noun
1.
plural of sale.
adjective
2.
of, relating to, or engaged in sales:
sales records for the month of January; a sales department.
sale
[seyl]
Spell Syllables
noun
1.
the act of selling.
2.
a quantity sold.
3.
opportunity to sell; demand:
slow sale.
4.
a special disposal of goods, as at reduced prices.
5.
transfer of property for money or credit.
6.
an auction.
Idioms
7.
for sale, offered to be sold; made available to purchasers.
8.
on sale, able to be bought at reduced prices.
>>
>>59057367
>>59057352
is there an apache package that will un-escape these for me if i display it somewhere as a string in java?
>>
I want to cut video (anime) into video playable on a tablet (everything but .flv?), with minimal video quality loss. How do?
>>
>>59057512
>sales
he's saying the components you want may go on sale and become discounted
so there's no reason to buy them until the last moment
>>
>>59057666
why can your tablet not play the original files? what format are they?
are you sure you can't just get a better video player app for your tablet?
>>
>>59057696
I'm more worried that the rush of shoppers picking up Zen will drive the cost of things up. Memory seems to move up and down like the cost of gasoline and my case is already $50 off.
>>
>>59057708
I meant, I can get the anime just fine, but I want to cut it so I have an arbitrary length of it as a separate video. I wanted to say that I don't want to be stuck with a filetype I can't play, forcing me to use convert instruments online that grossly reduce quality or something.

>are you sure you can't just get a better video player app for your tablet?

desu my tablet has android 6.0 or something, so I think it's the latest? It doesn't appear to be able to play .flv, so I don't know what to do. My image viewer of choice (Quickpic) can't play .flv anyway so I wanna stay from it, i think...
>>
>>59057753
if you just want to cut videos or convert filetypes ffmpeg should do the job just fine, as long as you're not afraid of a little CLI
not sure where you're getting .flv from though, most subbed anime on e.g. nyaa are .mkv

if you just want to make a 1 minute clip starting ta the timestamp 15:03 you would use the following command:
ffmpeg -ss 15:03 -t 1:00 -i boku_no_pico_05.mkv result_clip.mkv
and then result_clip.mkv would be the thing you wanted
it can also convert between file formats if you want to do that
>>
>>59057753
avidemux can do that. It's clunky and takes some getting used to but once you do it's easy. I want to stress that I don't believe the action of editing the video file itself is a good idea. Just get a competent video player for android and play the original file.
>>
>>59057803
desu the scenes I want to cut range from only a few frames of an animation loop, to a few seconds. A minute is way too long. And I don't necessarily have .flv anime files- I just wanted to avoid ending up with .flv, you know. But thanks for the resources, anyway. Cheers.

>>59057814
>I want to stress that I don't believe the action of editing the video file itself is a good idea. Just get a competent video player for android and play the original file.

I only want a few seconds of some episodes- I don't want to straight convert entire episodes. But thanks for the rec, I'll check it out.
>>
File: 1463208965230.png (420KB, 486x415px) Image search: [Google]
1463208965230.png
420KB, 486x415px
I got my hands on a 2TB WD PURPLE HDD.
Of course it was used in a CCTV setting, but the SMART data looks ok.

Would be there any kind of problems using it for domestic use? (storing porn, music, etc)

I don't really know about WD color shit.
>>
>>59057834
well obviously that was just an example, you can create a clip of any duratoin
>>
>>59057532
https://commons.apache.org/proper/commons-lang/javadocs/api-2.6/org/apache/commons/lang/StringEscapeUtils.html
>>
>>59057851
Oh, thank you. I hope I can do it right. The wiki has an explanation for what the commands mean.
>>
http://www.silverstonetek.com/product.php?area=en&pid=702

Is there anything like this that currently exists?
>>
>>59056745
I mean, I'm biased as fuck, but I've never been disappointed by a single dell product I've ever owned. I've owned the Surface Pro 3 and it was a pretty solid device, so I think it comes down to how much do you think you'd really utilize the features of the XPS v. Surface Book. XPS 13 is only iGPU, whereas Book does/can have a dGPU. If it's just a question of XPS 13 vs The Surface Book, I'd go with the book. That's because I like to draw though.
>>
>>59057845
Purples have special vibration dampening for use in large RAID arrays and run a little slower for the sake of reliability. That's more or less the only difference in a purple. It's perfectly fine for your needs.
>>
>>59057981
thanks m8
>>
Every 5 minutes or so Google Maps will pop up on my Android phone with my last last search. Anyone else have that issue/know how to make it go away?
>>
saved one of these from a garbage can.
Seems to work. I know you nerds like these things. They're $250 new but I can't figure out what it'll go for used.

Anyone know what it's worth? I'm probably holding onto it either way
>>
>>59056745
>It's not like dell makes very good products usually.
Dell sucks, but Microsoft is even worse. Don't get me started on HP, Compaq or Sony's former VIAO line.
>>
>>59057851
I'm sorry. I'm trying to use ffmpeg but I don't understand it. How do I open it, and how do I input a file into it?

I've used youtube-dl before, and I figured out I need to put it in C:\Users\[user] to be able to cmd > filename to open it. But ffmpeg is a folder, and I still don't understand how to feed it a video...
>>
>>59058130
ffmpeg uses command line. Use cmdprompt.
>>
File: 1484449875167.jpg (64KB, 554x439px) Image search: [Google]
1484449875167.jpg
64KB, 554x439px
i said it was CLI didnt i
>>
File: PIA19048.jpg (355KB, 2300x1700px) Image search: [Google]
PIA19048.jpg
355KB, 2300x1700px
I haven't been keeping up with TV market at all lately. Are 4k TVs just a meme and a waste of money? Do they look considerably better than a 1080p TV?
>>
>>59058140
>>59058150
I'm trying. I'll come back in a few mins if I still can't get it to work.

I'm not afraid to use it, but maybe I don't understand how
>>
File: asus.jpg (618KB, 2560x1920px) Image search: [Google]
asus.jpg
618KB, 2560x1920px
My Asus netbook's battery won't charge after long inactivity period, coincidentally it gets mildly magnetized exactly where the battery is located if plugged. Is there any relation between these two phenomena? What's going on with my netbook?

Help.
>>
>>59058140
>>59058150
It worked. I clicked around and learned that ffmpeg isn't just "a folder", it's a .exe
>>
>>59057950
Thanks for the input, i think ill go book because it would be nice to sketch or just doodle with the surface book.
>>
>>59058344
The XPS 13 would have a better feel with the keyboard and general laptop experience, but if you're the type to like touch screens and tablets etc, the Surface Book is about as good as you can get. Pricey af tho.
>>
>>59058127
what about like an acer or asus?
>>
>>59055841
Yes and No
>>
File: tumblr_mnxypkCEQJ1s7j5mzo1_500.jpg (96KB, 500x667px) Image search: [Google]
tumblr_mnxypkCEQJ1s7j5mzo1_500.jpg
96KB, 500x667px
>>59055114
How do I stream a video from my android phone to my PC to get saved?

I need to film my couch for a project, but I don't own any other type of camera. My PC is just in the next room.
>>
File: 1487677242029.png (18KB, 377x275px) Image search: [Google]
1487677242029.png
18KB, 377x275px
I get this every-time i boot
>>
>>59058467
what else is in the folder with that dll file, anon? it's probably relevant
>>
as a computer science major should i talk to insurance companies about jobs? im going to a career fair on thursday and 90% of them are insurance companies

im a senior right now so im hurting for an entry level job
>>
Why can't I download a torrent while I have VPN enabled?
>>
File: Capture.png (141KB, 1525x847px) Image search: [Google]
Capture.png
141KB, 1525x847px
>>59058481
That is the problem - there is no folder starting with Ahhb
>>
>>59058523
do you have "view hidden folders" enabled
>>
>>59058540
Yeah, that's the only way you can get into 'AppData'
>>
>>59058503
Does anyone see my fucking question?
>>
>>59058523
Wow you're a fucking retard
>>
>>59058467
>randomly named dll
>placed in randomly named folder
>all while located in %localappdata%

99.9% it's malware
>>
How hard is it to make a passthrough usb connection on virtualbox? I need it to root and unlock an old phone, the tools seem sketchy and full of all kind of shady shit so I'd rather use a VM first. The phone is an LG Optimus G if anyone knows a simple way to unlock/root it.
>>
>>59058571
No you are XddDD
>>59058573
So i have scanned it an such, but have never got a result.
>>
Answer my question damn it.

Right here...
>>59058503
>>
>>59058607
upload to virustotal?
>>
>>59058610
because it lacks information. you should be able to download a torrent (im assuming you mean a magnet file) while you have "VPN" enabled.

what vpn are you using? can you access the internet while on the vpn at all? what site did you get the torrent from? are you just getting 0 download or the file magnet wont even download to start the torrenting process?
>>
File: 1487480926832.png (143KB, 266x298px) Image search: [Google]
1487480926832.png
143KB, 266x298px
Memes and sicp aside how do I learn to code from practically scratch is there any decent program to follow? I got kicked out of my uni's cs program for failing calc 2 too many times but I've taken cs1 and 2 and know C pretty well and the beginnings of C++ but I don't know where to go from here, trying to learn on my own just feels aimless and I make no progress.
>>
Any software that can find duplicate pictures that respects my freedoms?
>>
>>59058621
There is no file to scan - there is nothing there..
>>
>>59058630
I tried free ghost vpn. That didn't work so I found a free server from Europe and just used built in Windows vpn to connect.

I'm using Pirate Bay to get movies. The file magnet wont download.

Internet works fine though. And when I'm not using VPN I can download torrents without a hiccup.

I tried disabling and reenabling DHT but that did nothing.
>>
>>59058662
maybe you should wait until the error pops up, and upload the sample before closing the error window?
>>
>>59058725
It only pops up on boot.

What do you mean by uploading the sample?
>>
>>59058765
sample = the dll
>>
>>59058702
>free
the vpns are probably blocking torrent traffic because they don't want random shitters using up all their bandwidth
if you want to torrent over VPN get a paid one
>>
how do I play on my pc with no lag at all? connect my pc to the modem or?
>>
>>59058860
>no lag at all
single player game

>no lag while in online multiplayer
you're gonna need a magic wand
>>
>>59058858
It sucks being a cheap fuck
>>
>>59058890
depending on your ISP and country you may be able to torrent just fine without VPN, at least until you get some angry "stop breaking the law asshole" letters from said ISP
>>
What are some non-shit torrent sites?
>>
>>59058905
I got an in-browser notice a few months back. I guess I'll just keep pushing my luck until I get an actual letter in the mail
>>
>>59058948
you should look up your ISP's actual policies
some will shut down or dramatically slow your internet service if you keep torrenting after they warn you
>>
>>59058926
Pirate Bay?
>>
>>59058926
nyaa.se for only thing you really need: japanese animes
>>
What can gmail actually "read".
I read that they scan for keyword, but can they recognize names to profile you?
For example, if someone write his own last names.
>>
Adobe won't mind if I pirate their stuff, right? I was thinking of pirating either CC or CS6 Master Collection.
Of course I would buy them if I ever made anything professionally.
>>
>>59058860
live right next to a datacenter that hosts whatever servers for the game your player.

for example i play a game called Blade & soul which is really ping dependent, and the only american servers are hosted in austin texas. so people living in texas play with incredibly low ping while everyone else can suck a dick

you have to google for the location of the server for the game youre playing. if its a popular game like LoL/csgo/etc they probably have lots of servers all over the place but youll still get less lag by moving closer to them
>>
>>59059107
adobe absolutely doesnt care about pirates.

they've literally never taken an individual to court over it, ever. they make chump change off single user licenses so they could care less about joe smoe pirating their shit. they only care about corporations like art studios etc buying business licenses for millions of dollars
>>
File: ImageFile.jpg (154KB, 1600x1200px) Image search: [Google]
ImageFile.jpg
154KB, 1600x1200px
why do people use multiple programs to develop software?

Aren't you throttling your whole program by the slowest language?

And if your intentions are ease over performance, why not just use that one higher level language?
>>
File: SecondImageFile (2).jpg (326KB, 1600x1200px) Image search: [Google]
SecondImageFile (2).jpg
326KB, 1600x1200px
>>59059174
> people use multiple programs
multiple programming languages*
>>
File: servrs.png (120KB, 387x355px) Image search: [Google]
servrs.png
120KB, 387x355px
>>
File: 1461930962316.jpg (119KB, 1500x919px) Image search: [Google]
1461930962316.jpg
119KB, 1500x919px
>>59055114
SurfaceBook on sale for $1400 with 940m and i5 8gb RAM 256gb GPU, all good for me. Will appreciate the GPU for doing CAD n shiet.

is this gud deal? Would like to get Surface because of the pen input shiet.
>only thing I am not really sure about is if refurbished is a gud idea

https://www.microsoftstore.com/store/msusa/en_US/pdp/Certified-Refurbished-Surface-Book/productID.4236430600
>>
Getting "Error: Upload failed" every time i attach a pic to my post (any pic really)

I assume this is just a temporary hiccup no
>>
My middle scroll click isn't working for my Razer Naga
>inb4 meme mouse, I like the buttons on the side for vidya

Anyone else have this issue? Anyone managed to fix it or do I need to buy a new mouse cause this shit is irritating when it's not working.
>>
>>59059388
Same is happening to me, I actually came here to post about this.
>>
>>59059477
Just tried that also here.

nothing
>>
Can I get a job that pays $15 an hour with only a CompTIA A+ certification?
>>
I just set up the VPS I ordered last week (as in made sure I could log in and tried learning systemd and yum)

Apache or nginx? It's a low-end box (256M), I would probably eventually want to have a number of subdomains serving both static content and lightweight web apps (Perl mostly). It's been years since I fucked with either. What do all the cool people do?
>>
Can Windows 10 be unbotnet?
>>
let me get this straight
you're supposed to use a microfiber cloth to clean your lenses because there is dust everywhere, including on your shirt, and the dust will scratch the lenses. But this means that there is already dust on my lenses so what difference does it make if you use the microfiber?
>>
>>59059525
You can take out about 60% of the botnet. Which still leaves a whole lot of botnet
>>
>>59059548

So... What do you recommend, Anon? Should i stay in Windows 7? Or should i get with the times and install Windows 10?
>>
>>59059559
I'd say stick with 7 for as long as you can.

Keep a copy of it on a USB or something and keep it in a safe place and keep cracking each time you reinstall.
>>
>>59059492
you could move to Seattle and get a job that pays $15 an hour handing burgers through a takeout window
>>
>>59059388
>>59059477
>>59059486

Started for me about 30 min ago while dumping a set of papes in /wg/

> yep, this post also

Should clear up before long, maybe an hour or two, maybe tomorrow morning; I've seen it before, about once a year or something.
>>
So i tried installing a windows 8.1 crack,but it just started installing adware and browser hijackers,i closed the installer from the control panel and then ran malwarebytes,it found a bunch of shit and then i restarted to finish the scan.The computer seems fine now but what should i do now,aside from updating common sense™ 2017?
>>
>>59059125
Cool, just pirated them.
After I crack them, is it safe to use them while connected to the internet? Or should I disconnect before I start them?
>>
Whats the cheapest good quality dap out there? Need microsd support for atleast 64gb
>>
If I only need Java for one program do I really have to install Java or is there a cleaner way
>>
So I clicked on chrome earlier today and Avast Antivirus flipped it's shit.
Done a scan, 19 malware found. Panic mode, wiped windows entirely and reinstalled OS.
Reinstalled chrome and Avast, opened up chrome on this fresh OS and the same thing happened.
Running a scan with Malwarebytes but so far, no malware found.
What are the odds Avast just slipped up and flipped out over nothing? I plan on running scans with Avira later instead.
>>
>>59059768
avast virus definitions seem to be fucked, lots of reported issues across various websites (google, amazon, twitch, et cetera).

gotta wait for an update
>>
>>59055289
>notices the word "gay"
>does not notice "a1wESOME"
anon there's something you need to know
>>
Does anyone have a decent guide for compiling programs?

I don't code at all but I want to be able to compile programs I get from github or elsewhere to eek out as much performance as I can. I've been using a custom build of firefox compiled by someone else for awhile now and it's worked out great. If I could use a different instruction set I'd feel like it'd work even better. Then there is stuff like MPC-HC, etc.
>>
>i5 3570k
>has that turbo mode bullshit
>CPU fan is constantly speeding up and slowing down over and over and over and over and over
>disable all the turbo and power saving bullshit in the bios
>tells me it's all off and the clock speed is only 3.4GHz
>save and restart
>still behaving like it has turbo bullshit turned out
>think it must not have saved
>go back to bios
>it's tell me everything is still turned off despite jumping between 1.6GHz at idle to 4.2GHz when I do fucking anything

There's nothing else I can fucking turn off but this shit is still on and the fan is driving me fucking crazy
How do I stop this bullshit
>>
Can anyone tell me what's the catch here http://www.ebay.com/itm/Microsoft-Windows-8-1-PRO-64-Bit-Full-English-Version-with-DVD-New-Sealed-/311799869227?hash=item4898b86f2b:g:IEYAAOSwcLxYHiuc
>>
>>59059938
Could be a scam but for fucks sake why not just use G2A or some other key site?
>>
>>59059864
install gentoo
>>
>>59055141
>i have no questions
>proceeds to ask a stupid question
>>
Running RX 480 4GB
FX 8320 (3.7 Ghz) Stock at 3.5 (Air Cooled) 8 core ( Changed it to 4 cores)
14 GB RAM
BUT NFS GAME STUTTERS ALOT ..... anyone know a fix for this that doesn't sacrifice Graphics .-. Or my wallet
>>
>>59060168

NFS 2016 *
>>
>>59058594
pls
>>
Why has m00t 2.0 disabled images?
>>
Getting an error that says upload failed whenever I try to make a thread. Nobody else is having this problem and I can post on all boards still.
Is something happening?
>>
>>59060194
Its images that cant be uploaded. I hope this kills /b/
>>
>>59060194
yeah I'm getting upload failed too. not just u.
>>
>>59060190
>>59060194
>>59060235
>>59060246
Check the new update newfags.

>New Rule: only 10 images per IP every 24 hours
>>
>>59060274
that fucking gook has to go
>>
>>59060274
It's not in the blotter and I don't see it in the rules.
You cheezing me?
>>
Is it safe to host your own vpn just for encryption when you are on public wifi? I heard its not secure because you are opening a port to the internet.
>>
>>59060293

Server Status

Boards: Up
Posting: Up
Images: Down
Thumbs: Down
Static: Down
Front Page: Up

Check the blog.
>>
I recently got a second ssd to install windows on. Did so, and reinstalled Debian on the other one.

Now Windows fucked up its USB drivers and I can't do anything with it. Have to reinstall it.

I hear Windows likes to uninstall grub. Can I just reinstall that separately with the Debian installer, or do I have to reinstall that as well?
>>
>>59060335
Also, if you want to post images, post link via pomf.cat
use an extension to have the image load from url
>>
>>59060337
if you're using MBR
disconnect all drives but the windows ssd
install windows
reconnect all drives, boot into debian and repair or edit bootloader
>>
>>59060335
it says everything is up
>>
>>59055391
>Computers work to decrypt something
>Success awards some bitcoin
>Bitcoin has value because it required computing power to obtain
>you're too late to make money now
>>
Which looks the best?
http://imgur.com/a/Z4Lpe
>>
Alright what i can do with a kindle other than read images?
I wanna get one mainly to read manga on it but still doesnt justify the price.

Can it use a web browser? Use 4chan on it?
Imageviewer has a slideshow mode?
Show 4k-8k images with no problems?

Or is it just an $160 gimmick imageviwer?
>>
I've installed win10 on a separate partition to dual boot, and now the computer won't boot up my Windows 7 even though it's the primary partition. It just hangs on a black screen (probably doesn't help that I have no GUI boot enabled)

Windows 10 boots fine. But it also hijacked the C: drive letter designation, would that cause a problem? How can I fix W7 without wiping everything?
>>
>>59059768
>>59059785
Avast has been flipping shit for me as well, and it seems many people have the same problem in the past couple hours.

https://twitter.com/search?q=avast&src=tyah

Their heuristics are most likely fucked, and are triggering on applications trying to update themselves in the background (like Spybot S&D or Windows 10 updates), or on API used on sites like Dropbox and Twitch.
Shit's annoying, this was a scare.
>>
>>59060340
>pomf.cat
enjoy your ban
>>
>>59060482
I'm also getting upload failed if I try to post images to 4chan apparently.

Imgur was apparently fine however.
http://i.imgur.com/3jA64pT.png

Have run several scans of things using Malwarebytes and Avast, all clean. Just a fucked heuristics definition.
>>
>>59060485
If the mods had any brains they would be doing something about the server problems, like screaming into hiroshima's ear.

>>59060477
>Windows 10 boots fine. But it also hijacked the C: drive letter designation, would that cause a problem?
Yes, it fucks up the index. Fire up msconfig and see if you can choose windows 7 to boot from.
>>
Boys, I know most of what I should know about the core of Java as a language, including many libraries and such. Now, I want to delve into actually using it for the things its used for nowadays, like web development.

Any tutorials, books, practice material, or anything related to such?
>>
best paraphrasing and plagiarism checking tools ?
i really need to obfuscate some shit, preferably not limited to 1k characters, that would be pain in the @nus
>>
>>59060340
http://imgur.com/a/PBpha
Check the transparency page
I'm not touching that site with a 10-foot pole
>>
>>59060587
Only an idiot uses imgur after they got hacked and exploited.
>>
Has anyone tried coating a laptop chassis with Plastidip?
>>
Is there a way to reverse the behaviour of my numlock key in windows? I want to type numbers when numlock is OFF.

(I'm getting annoyed by the numlock light on my magicforce.)
>>
>>59060765
okay, what the fuck is this
go to a random thread you haven't visited yet
click on a thumbnail
the thumbnail loads the full image
what the fuck hiro
the servers aren't down at all, somebody fucked up uploading images
>>
>>59060826
Caught myself and I STILL fucked it up twice over.
>>
>>59060826
An SSHD is literally the worst choice. Get an SSD large enough for your OS and programs and an HDD for everything else.
>>
>>59060826
Gigabytes per second in comparison to megabytes per second. About an order of magnitude faster.

http://www.legitreviews.com/wp-content/uploads/2016/10/960-pro-crystaldiskmark.jpg

http://legitreviews.com/images/reviews/2182/wd-cdm.jpg
>>
>>59060826
>>59060853
Top is a Samsung 960 Pro, bottom is a WD Balck, here's a Seagate SSHD.

http://www.legitreviews.com/images/reviews/2160/cdm.jpg
>>
Tried to post this on mobile and desktop, both times it said "Upload failed". I'll be happy if this post can just get through.

There's an android app called "ListenOnRepeat" (name has no spaces). I don't see how to enable the popup player to play youtube vids outside of the app. There's a goddamn bar of text telling you to press a button to do it, but I don't fucking see it, someone please guide me through this, thank you.
>>
>>59060844
>didn't even realize that the post was successfully deleted

>>59060849
>>59060853
>>59060874
Well you learn something new every day. Thanks.

When you say programs, though, you mean anything that launches/executes, right? So an SDD is for the OS, and .exes(gonna try Linux soon, no need to insult my shit taste quite yet) while an HDD is for pictures, text, .7z as well as other archives, and anything that isn't something I installed or launches without needing another app(well other than games with DRM, technically). I'm on the right track, right?
>>
File: b2e.jpg (32KB, 488x516px) Image search: [Google]
b2e.jpg
32KB, 488x516px
>Error: Upload Failed.
How do I find the reason of the problem?
>>
In MPV, when I try to seek using arrow keys (tapping once to move back for example) it gets stuck going in that direction. How do I stop this.
>>
Is there a way to stop certain files/folders from showing up when searching in Windows 8.1? Does hiding the folder remove the contents from search?
>>
File: 14709975177861.jpg (224KB, 695x521px) Image search: [Google]
14709975177861.jpg
224KB, 695x521px
>>59060975
>images are back
dammit. we were actually having discussions on /tv/.
back to shitposting then
>>
What's the best display port?
HDMI?
VGA?
Display Port?
>>
>>59061080
to the human eye? theyre all the same. anyone who genuinely believes otherwise is a placebo autist
>>
>>59061080
I'm partial to DVI personally.
>>
>>59055713
Try arduino nano with addons or some small radio chip by TI
>>
I have two font files, I want to switch out a character in one with its equivalent from the other one, which software can I use to do it?
>>
/g/ I have a Jam Speaker, the kind if you have 2 you can pair together. Which do fantastic but when I play music like Google Play or Pandora and it changes song, sometimes it makes the song louder even when I turn it down. Any idea why this happens?
>>
Rule 1: You are playing The Game.
You, along with everyone else in the world, always is, always has been,
and always will be playing The Game. Neither awareness nor consent is required to play.

Rule 2: Every time you think about The Game, you lose.
Loss is temporary; as soon as you forget about The Game you stop losing.
The objective of The Game is to forget that it exists. Good luck.

Rule 3: Loss of The Game must be announced.
Every time you think about The Game, and hence lose, you must say so.
This is the only rule that can be broken, but do you really need to cheat..?
>>
>>59061170
hi from the pchan server
>>
rape my face before i buy all this
https://nz.pcpartpicker.com/list/kW4Ljc
>>
Are image uploads not working at the moment?
>>
>>59059528
/p/ here
Microfiber holds onto particles really well so they should be seen as disposable -they pull stuff off your lens rather than mushing it over it but will then act as sandpaper after repeat use
>>
Long story short, it's *possible* that my power supply got wet while my PC was in sleep mode. My system looks dry right now but I don't know how it was when maintenance rescued it. Would it be safe for me to test it out a few days from now? The PSU should still be under warranty but I have to see if it still works somehow.
>>
>>59061307
Depends on your warranty.
>>
>>59060109
>implying
thatsthejoke.svg
>>
>>59055232
elinks
>>
>>59055289
Check it for b64 encoding
>>
>>59061332
Okay. I sent Corsair an email to see if my case is valid.
>>
File: t3_5q7jay.jpg (408KB, 864x1536px) Image search: [Google]
t3_5q7jay.jpg
408KB, 864x1536px
Is it possible to do memory and cpu profiling on a already compiled program such as a game?
>>
When I get the error about Graphics Card that have been removed only while starting fifa on 'new' laptop with gtx960 card with no way to fix it, does it mean that my card is overclocking or underclocking? I'm new to windows desu. Should I call the supp or is there a way to fix it? Wanted to play with my brother and looks like i've wasted 50 bucks.
>>
File: who.jpg (36KB, 1000x643px) Image search: [Google]
who.jpg
36KB, 1000x643px
Can someone PLEASE tell me in steps (I don't care if elaborated, I can google the rest) how to do this:

I created a webform application in visual studio, tested it and it's running fine in debug mode.

Now how the fuck do I get it working on my domain?

If I rightclick the project in the solution manager, and press publish web app, all it does is upload the raw files to the ftp server, and when I enter whateever.com/Default.aspx all it does it show the code.

I haven't been educated in this, and I feel, there's something very simple I just haven't understood / read yet.
>>
File: en_front.jpg (99KB, 640x771px) Image search: [Google]
en_front.jpg
99KB, 640x771px
Lightweight video recording software for windowretard? Only need to record from one window (mp4, avi, flv, any non-obscure video extension) and save encoded video.
Also, lightweight video editing software for windowretard (cropping, audio ripping, adding, editing, encoding, webm-making).
>>
Is a 2450M bad for virtualization?

It has VT-x support, but not VT-d. My intention is to do simple virtualization.
>>
Just picked up a used X230 recently running Win7 and the audio doesn't seem to work steadily. I reinstalled the drivers and that seemed to work for a bit but then there was no audio again. I just disabled and re-enabled Windows audio and that seems to have worked for now but I'm afraid it's going to konk out again. Anyone know what is causing this? My Google-fu just seems to bring up people with similar problems but zero solutions.
>>
Want to learn to make emulators. Resources/Books I should check out? I've done chip8 but struggling with nes/gameboy
>>
What happened to KickassTorrents? What's a good replacement for it? Pirate bay has too many viruses and retards on it.
>>
Let's say I unlock the bootloader on my phone, how vulnerable and to what does that leave me?
>>
>>59061222
Here.
Now you can overclock.
https://nz.pcpartpicker.com/list/GLVQM8

Also,
what the fuck is up with NZ prices?
>>
>>59061752
Depends on your common sense . With power comes responsibility. Just flash TWRP or some recovery and lineageos(+gapps)+xposed if available . You should be all set
>>
>>59061701
kickass is back. also the bay is fine as long as you look for the green skulls.
>>
>>59055114
can't see stallman on the sticky, 4chan x redirects me to the archive for the picture
what's going on here
>>
>>59061788
>kickass is back
>>
>>59061803
http://kickasstorrents.to/
>>
>>59061794
4chan seems fucked atm at least for me
>>
Is the GT 710 literally the best GPU for 50 dollars?
>>
I'm running an i5-3350p with a LGA 1155 mobo. I hear the strongest processor for the 1155 socket is the i7-3770K. I want to upgrade because my i5 is bottlenecking my 1070. I can get a used 3770K off ebay for around 200 bucks.

My question is then, you guys think it's worth it to upgrade just my processor, or to save up and upgrade to muh kabylake proccesors (but then I have to buy a whole new mobo + ram and that'll set me back....a good 300-500$ at least)

inb4
>zen

While it does sound appealing, i'd just be put in the 2nd situation regardless (having to buy new proccesor/mobo/ram)
>>
Recently I've been having a problem with my S7 where the "No Internet Connection" pop up keeps appearing every damn fucking second.

Please, how can I fix this? It's honestly annoying and I have perfect connection in the sense that I'm actually using the internet on my phone that's the thing.
>>
>>59061910
What do you plan on doing with it? VMs? Gaming? Photoshop?
>>
>>59061222
>>59061769
>i5
>not waiting for ryzen
It'll be priced like a i5 but perform like an i7.
And it'll have DX12 support unlike i5
>>
>>59062117
Oh, sorry. Gaming. I forgot that bottlenecking had a fair share of meaning outside of gaming.
>>
>>59061814
Kickass will never be "back". There will be shitty clones for decades, but the only thing that exists now is a title and increasingly outdated copies of the old index without the original code and run by shady people with crap reporting systems.
>>
>>59062131
>It'll be priced like a i5
no it'll cost the same

>but perform like an i7.
in some tests yes

>And it'll have DX12 support unlike i5
dx12 wont become a standard for at least 3 years so games are still going to have the option to choose dx11

>>59061769 is the perfect parts-list for a 1070 build
>>
File: He doesn't have a PhD.jpg (11KB, 242x148px) Image search: [Google]
He doesn't have a PhD.jpg
11KB, 242x148px
Want a HDD for backup/new system purposes (as in, mostly for using in new build but not with SSD or anything).
Any deals going at the moment?
>>
>>59060992
Bump
>>
>>59062155
Well, if you're sure you never want to do Virtual Machines or a PCI passthrough, and you don't mind buying a bigger CPU fan to overclock with, then you'll definitely get better per-core performance. I'd say we're right on the borderline where it's still a good financial decision. The i7-2700 is just hitting end of life, Ivy's still pretty decent if you don't mind higher power consumption (not a big deal in desktops). I'd say you could go either way, but for gaming you'd probably get more bang for your buck just upgrading the whole core system.
>>
Some sports I watch have several audio feeds in the file. I want to boost the field/engine volume over the commentary, by somehow playing the commentary and "ambient" track at the same time, at different volumes. Is there a way to do this?

I've tried playing the file in two instances of VLC/MPC/whatever but the sync is never perfect, and you just get a weird echo sound.
>>
File: 1432061944425.jpg (58KB, 456x578px) Image search: [Google]
1432061944425.jpg
58KB, 456x578px
I'm in Debian, PHP 7 on apache2

I get this error message:
Uncaught Error: Call to undefined function mysqli_connect() in


googling it tells me mysqli is disabled, fair enough

I installed php5-mysql and php5-mysqlnd one after another and tried enabling it in the config

I then tried locating php_mysqli.so or just mysqli.so and it finds nothing

I feel like a moron because all the stackoverflow threads make it seem like it just werks after install.
>>
My PC reliably boots into windows every second time.
Every other time it gets into bios to the point right before windows would start and just powers down.
Are there any obvious reasons for this that I'm missing?
Windows is a fresh install on the pc, I haven't had this problem before. During the installation I had a SATA cable on the mainboard that was not connected to anything and my windows installation is on an IDE drive, could that have somehow fugged something up?
Could it be that windows is just missing some updates? I haven't updated yet because I'm not sure if I'm gonna have to reinstall windows a second time,
Mainboard is an ASRock 980DE3/U3S3.
>>
>>59062251
You're building a new system without an SSD?
>>
File: I'unno.jpg (84KB, 600x857px) Image search: [Google]
I'unno.jpg
84KB, 600x857px
>>59062295
Half-new. Some of the parts I've had sitting around for a while, and I'm not a guy who regularly pushes my PC to any extent.

If there are any SSDs on offer anywhere then sure I'll get one too though, I mainly just want a backup right now.
>>
>>59062290
I've tried changing SATA mode from AHCI to IDE, but there's no difference.
>>
How do i stop something in the android terminal? I can't ctrl + c. If i close the app and reopen it the thing is still going on
>>
>>59062287
Start using pdo, for real.
I never tried mysqli since php 5.x came out.
Actually activating mysqli.so should work though, but I don't really know.
>>
>>59062355
same with PDO, which throws the same error.

when I search my stuff it shows

/var/lib/php/modules/7.0/cli/disabled_by_maint/mysqli
/var/lib/php/modules/7.0/cli/disabled_by_maint/mysqlnd
/var/lib/php/modules/7.0/cli/disabled_by_maint/pdo_mysql
/var/lib/php/modules/7.0/cli/enabled_by_maint/calendar
/var/lib/php/modules/7.0/cli/enabled_by_maint/ctype
/var/lib/php/modules/7.0/cli/enabled_by_maint/exif
/var/lib/php/modules/7.0/cli/enabled_by_maint/fileinfo
/var/lib/php/modules/7.0/cli/enabled_by_maint/ftp
/var/lib/php/modules/7.0/cli/enabled_by_maint/gettext
/var/lib/php/modules/7.0/cli/enabled_by_maint/iconv
/var/lib/php/modules/7.0/cli/enabled_by_maint/json
/var/lib/php/modules/7.0/cli/enabled_by_maint/opcache
/var/lib/php/modules/7.0/cli/enabled_by_maint/pdo
/var/lib/php/modules/7.0/cli/enabled_by_maint/phar
/var/lib/php/modules/7.0/cli/enabled_by_maint/posix
/var/lib/php/modules/7.0/cli/enabled_by_maint/readline
/var/lib/php/modules/7.0/cli/enabled_by_maint/shmop
/var/lib/php/modules/7.0/cli/enabled_by_maint/sockets
/var/lib/php/modules/7.0/cli/enabled_by_maint/sysvmsg
/var/lib/php/modules/7.0/cli/enabled_by_maint/sysvsem
/var/lib/php/modules/7.0/cli/enabled_by_maint/sysvshm
/var/lib/php/modules/7.0/cli/enabled_by_maint/tokenizer


how do I get the modules to enabled?
>>
Why would somebody DDOS a cannabis grow forum?
Just curious, because there is nothing to gain from it, no personal or financial info on the site.
It also makes no sense for law enforcement since most of us are legal growers.
>>
>>59062350
>android
>Terminal
The system isn't designed to have you intervene that way. It's a parallel universe where systemd became god. Force stopping things is almost always the wrong thing to do in android
>>
>>59062179
funny how demonoid is still up but no one cares.
At least we got extratorrent
>>
>>59062385
Law enforcement isn't concerned with "making sense" when it comes to drugs. They'll hold that grudge until the law changes and every current officer and agent dies of old age.
>>
>>59062397
See that's funny because they've been down for a month now
>>
File: 035.jpg (2MB, 3024x4032px) Image search: [Google]
035.jpg
2MB, 3024x4032px
>>59055114
What's faster, a single R9 290x or an R9 290x (reflashed to run at a matched clock speed as an R9 290) Crossfired with an R9 290?
>>
File: 1487043734180.png (167KB, 586x716px) Image search: [Google]
1487043734180.png
167KB, 586x716px
>>59062355
nevermind.

apparently the fuckhead who wrote "durr php5-mysql will just werk" forgot that there actually is a php7.0 mysql.
>>
>>59062502
Crossfire is a meme now
>>
Is it safe to buy a 1070 yet
>>
>>59062524
So I have no reason to try to shove my 290 into the box even if it fits?
>>
How much do I charge an 80-year-old man to 'speed up' his computer? Doing some computer repair on the side and I have my first client today. Probably going to defragment, remove garbage files, make a few optimizations, and teach him a bit about how to use his laptop. Assuming it takes ~1.5 hours, is $40 a fair price?
>>
>>59062566
If it involves downgrading your 290x it's a tough call. Have you tried flashing the 290 up to 290x?
>>
>>59062083
I had that on my note 4. try rebooting, then disable bluetooth. if that doesn't work, check for updates to the firmware.
>>
>>59062582
Yes, but also sell him an ssd and tack $10 on to its price
>>
I have a laptop with Windows installed on its unique HDD. I want to wipe it and put something else (probably Ubuntu or some shit) BUT I want to keep a backup off the whole HDD before the wipe just in case.

I also want to be able to reinstall the back up as if nothing happened.

wat do n how
>>
>>59061080
displayport is best waifu
>>
>>59061701
install gentoo and you won't have to worry about viruses
>>
>>59062670
Macrium Reflect. Although if it's just the install itself you want, it's trivially easy to install windows from scratch.
>>
>>59061632
had this issue with my w530. it was hardware for me. try removing the keyboard and moving the speaker wires around.
>>
>>59062442
http://demonoid.to/

it is?
>>
>>59062668
don't have any SSDs and it's in an hour

sadface.jpg
>>
is disabling superfetch a good idea?
>>
>>59062717
>Demonoid warns users not to go to Demonoid.tv and Demonoid.to. These are copycat sites that could steal login information.

https://torrentfreak.com/demonoid-suffers-extended-downtime-due-hosting-issue-170126/
>>
>>59062741
no
>>
>>59062747
even if they stole any info from me, i have no torrents or anything there. All I did was leave comments. So honestly, they stole nothing.
>>
>>59062645
Am hesitant, fearing that it would put too much air in a balloon.
>>
My computer crashed while downloading to an external hdd. Now I can't delete files nor copy files to it, but I can read and copy files from it. Chkdsk gives me an error code 766f6c756d652e63 3f1. How should I proceed?
>>
>>59062771
Good for you? If the real site ever comes back up be sure and change your password. Although if you're the kind of person who thinks a domain registered by a copycat with a similar name is the same as a site still being "up", I should probably remind you to change that password on all the other sites you've used it too.
>>
>>59062728
Shame. I mean he won't know what he's missing, but it's the difference between him taking your word that you fixed something and him thinking you swapped his computer for a brand new one when he wasn't looking.
>>
>>59062868
I'll likely change my password when it does come up. Not like it's not attached to an email anyways.
>>
>>59062840
Do you have enough space to make a backup of everything on it?
>>
I need to open a powerpoint file, but apparently you have to pay for powerpoint now (?). I don't have the time/willpower to pirate it. What's the best alternative that everyone uses?
>>
>>59062929
libreoffice
>>
Whats the best ultraportable or UMPC laptop to buy for programming?
>>
>>59062936
Thank you very much. I've heard of that name before.
>>
>>59062916

Slowly trying, but I had hoped it wouldn't come to formatting.
>>
>>59062964
You could try letting linux live or Windows PE take a crack at it. You could also try removing it from its enclosure and connecting it directly to your PC.
>>
>>59055114
Anyone know of a cheap amp or receiver with two inputs and a remote.

Pic related is the best I've found, but it's $160.
>>
>>59062998

Backing up now and I'll try those later, thanks
>>
How to get into password protected windows 7. Gran dead
>>
>>59062290
I tried setting BIOS settings to default, no change.

Also, my DVD drive doesn't open on the FIRST time I press the button. Every other time it opens normally. What the fuck.
>>
>>59063094
download.cnet.com/Lazesoft-Recovery-Suite-Home/3000-2094_4-75749925.html?part=dl-10055229&subj=dl&tag=button
>>
when i refresh (f5) my desktop my shortcut icons go white for a sec, any ideas? is it hard drive failure?
>>
I spilled a bit of water on my phone and while it isn't completely ruined, the touch screen gets a lot of ghost touches whenever I try to do anything.

Am I fucked? I'm currently trying the stupid rice bag trick but I'm uncertain how well this will work.
>>
>>59063335
Power phone completely off for 3 days, remove battery if possible. Rice is 100% myth
>>
I'm looking to buy a 470 4gb, should I buy a model with 6pin or 8pin? Does it really matter? Would be dangerous to overclock the 6pin considering that the gpu gets 130w peaks at most reviews?
>>
>>59063206

So do i dl this on a guest account and run it?
>>
>>59063540
You use it to make a bootable disk
>>
>>59063451
You just want him to live without a phone for 3 days, you sneaky anon.
>>
do i actually need a super strong 20+ character password if veracrypt already has brute force protection with the delay?
>>
any advice on how to repair disk permissions on an external hd in el capitan? changing the permissions on the drive and selecting "change for enclosed files" doesn't do shit unfortunately, nor does the sudo command
>>
how do I reply to someone on irc?
I see things like
<anon1> blah blah
<anon2> anon1: blah blah blah reply

do I just type `anon1:` or what?
>>
Can I get some disc image software recommendations, thanks.
>>
>>59064396
Mounting burning or cloning?
>>
>>59064449
I waent to install japanese interactive novels of the pornographic variety so the first one I think.
>>
>>59064480
winCDEmu
>>
>>59064480
Win 10 can mount isos without the need for software as far as I know.
>>
>>59064534
Sorry I'm still on 7.

>>59064486
Thanks I'm hesistant though it appears most of these are loaded with bad shit in them for some reason.
>>
>>59064577
No kidding. wiCDEmu is clear tho
>>
I have this 10" power sub in my truck which makes a rattlinf/vibrating noise along with bass at certain frequencies. Is this due to plastic trim vibrating at those frequencies or is it something internal with the sub?
>>
im trying to run a jar from a remote computer via ssh, but the jar has a few dialog boxes that i need to get past before it actually runs

is there any way i can pipe those dialog boxes to my machine? im on a linux computer and so is the remote computer
>>
>>59062290
Ok guys, me again, I think it might be the win 10 fast start up.

Does anyone here know if fast startup automatically deactivates itself when you fail to boot once?
>>
File: 1483008332214.png (320KB, 1979x1346px) Image search: [Google]
1483008332214.png
320KB, 1979x1346px
I have recently tried i3 and really like it. My problem is that I often work with different keyboard layouts. Is there a way to bind the commands to keys rather than to a symbol?
>>
>>59065137
I think it takes multiple times, like 3 in a row or something
Thread posts: 335
Thread images: 40


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
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.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.