[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

Archived threads in /g/ - Technology - 2249. page


File: rar-archive-icon.jpg (36KB, 954x538px) Image search: [Google] [Yandex] [Bing]
rar-archive-icon.jpg
36KB, 954x538px
Is there actually a real way to remove a password lock on a .rar file
29 posts and 3 images submitted.
>>
yeah you type in the password
>>
>>53347456
>t
what if i dont have the password ?
>>
aside from bruting it..which could take years,no.

File: go_lang1.png (58KB, 607x318px) Image search: [Google] [Yandex] [Bing]
go_lang1.png
58KB, 607x318px
What's it good for?
37 posts and 2 images submitted.
>>
>>53347103
shitty graphic design examples
>>
>>53347103
programming botnets
>>
Writing programs.

Furrycux is now at 8.84% in terms of browser market share and has remained in steady decline since 2010. How low do you think it will eventually fall? Below Opera's 5.37%?
19 posts and 1 images submitted.
>>
>>53346810
It will probably bottom out just above Opera, which is actually hilarious.

Mind you, it appears they aren't separating mobile from PC which partially explains it.
>>
Maybe if it "fails" all the bay area retards obsessed with novelty "web "technology"" will leave for another project and the core neckbeards can start trimming it back down and even recruit more neckbeards to help instead of wasting their time on webkit-gtk based vim workalikes.
>>
>uc browser

The fuck?
The fuck is this

Post stupid technology related stock photos.
18 posts and 3 images submitted.
>>
>>53346684
Nigger!
>>
>>53346651
>>53346684
That looks extremely painful.

File: easymode.jpg (131KB, 600x455px) Image search: [Google] [Yandex] [Bing]
easymode.jpg
131KB, 600x455px
Find all 3-letter-strings that can be constructed by combining letter from the input string in sequence. No duplication allowed, unless it occurred in the input.

>Example
input: richardstallman
valid combo: rll
invalid combo: llr # letters don't occur in this sequence in the input


Question before you start:
How many results will you find in the input string "richardstallman"?
44 posts and 2 images submitted.
>>
PROGRAMMING CHALLENGE
INCAPABLE CONTESTENTS BUMP

counting /g out: 1
>>
FIZZBUMP

counting /g out: 2
>>
File: 1349237553623.jpg (56KB, 620x593px) Image search: [Google] [Yandex] [Bing]
1349237553623.jpg
56KB, 620x593px
>hey /g/ pls do my homework for me

If you use it, you are responsible for creating the expectation that policies like this are acceptable to the public:

"Finally, we will access, disclose and preserve personal data, including your content (such as the content of your emails, other private communications or files in private folders), when we have a good faith belief that doing so is necessary."

This is a pretty good article about it if you want details:
http://www.slate.com/articles/technology/bitwise/2015/08/windows_10_privacy_problems_here_s_how_bad_they_are_and_how_to_plug_them.html
Funny that slate.com was once a Microsoft property.
35 posts and 5 images submitted.
>>
Disinformation faggots like you are even worse and make everybody caring about privacy seem like a loony.

These policies are about their cloud service and got nothing to do with Winshit 10 if you don't use the cloud crap.
>>
>>53346626
>implying they won't make the cloud crap mandatory sooner or later
I'd wager good money that in a year or two they'll make local user accounts an enterprise-only feature. Everyone else will have to have an MS account, with all it's EULA strings attached. They aren't idiots, they know that the way to rob people of privacy is to get everyone on board and then slowly change things, the way Facebook and Google have done.
>>
File: w10 dnsapi hardcoded.png (111KB, 1922x1134px) Image search: [Google] [Yandex] [Bing]
w10 dnsapi hardcoded.png
111KB, 1922x1134px
>>53346626
Turns out it's practically impossible to use Windows 10 without the 'cloud crap'. Even if you use a hosts file to redirect MS domains to localhost, the Windows Kernel has IP addresses hard-coded internally and it will connect with MS.

File: 1453696760964.jpg (295KB, 1339x1024px) Image search: [Google] [Yandex] [Bing]
1453696760964.jpg
295KB, 1339x1024px
Find the vulnerability /g/!

     1    <!DOCTYPE html>
2 <html lang="en">
3
4 <head>
5 <meta charset="utf-8">
6 <title>File search</title>
7 </head>
8
9 <body>
10 <h1>File search</h1>
11
12 <?php
13 $db = new mysqli("127.0.0.1", "file_search", "s34rch1n", "file_search");
14 ?>
15
16 <form method="post" enctype="multipart/form-data">
17 Search <input type="file" name="haystack">
18 for <input type="text" name="needle">
19 <button type="submit">Search!</button>
20 </form>
21
22 <?php
23 if ($_SERVER["REQUEST_METHOD"] === "POST") {
24 if ($_FILES["haystack"]["type"] !== "text/plain") {
25 echo "<strong>The file you uploaded is not a text file.</strong>";
26 } else if ($_FILES["haystack"]["size"] > 50000) {
27 echo "<strong>The file you uploaded is too large.</strong>";
28 } else if ($_POST["needle"] === "") {
29 echo "<strong>You must specify a term to search for.</strong>";
30 } else {
31 echo "<h3>Search results</h3>";
32
33 $results = preg_split("/\r?\n/", `grep {$_POST["needle"]} {$_FILES["haystack"]["tmp_name"]}`);
34 echo "<p>" . count($results) . " search result" . (count($results) === 1 ? "" : "s") . " for <strong>" . htmlspecialchars($_POST["needle"], ENT_QUOTES) . "</strong>:</p>";
35 echo "<ul>";
36 foreach ($results as &$r) {
37 echo "<p>" . htmlspecialchars($r, ENT_QUOTES) . "</p>";
38 }
39 echo "</ul>";
40
41 if ($db && $query = $db->prepare("insert into history (??)")) {
42 if ($query->bind_param("si", $_POST["needle"], count($results))) {
43 $query->execute();
44 }
45 $query->close();
46 mysqli_close($db);
47 }
48 }
49 }
50 ?>
51
52 </body>
53 </html>
17 posts and 2 images submitted.
>>
>>53346557
>mixing php and html
>mysql instead of PDO
>grep
disgustion
>>
>>53346557
>PHP
There is your problem.
>>
i found the vulnerability. its php

File: Untitled.png (31KB, 326x571px) Image search: [Google] [Yandex] [Bing]
Untitled.png
31KB, 326x571px
(Put some icons on Medium size to show how fucking horrible they look by default, setting them to small is the only way to make them look a little better)

Look how fucking bad this looks. I've used free android apps that look 1000x better than this. It'd be fine if you could easily replace the icons to cover up the whole icon similar to the Minecraft icon you see at the top, but you literally fucking can't. The Photoshop icon is literally a square inside of a square, and there's nothing you can even do about it, no matter how much you want to and how much you should be able to. They don't even have decent looking icons for Microsoft fucking Office. What the fuck.

Oh, you also can't have two wide tiles side by side, unless you want your start menu to enlarge to the size of the dick Microsoft fucks you with. Fuck this start menu and it's non customization bullshit.
17 posts and 7 images submitted.
>>
File: 2016-03-06_13-04-38.jpg (106KB, 1366x768px) Image search: [Google] [Yandex] [Bing]
2016-03-06_13-04-38.jpg
106KB, 1366x768px
>>53346527
It works on my machine
>>
>>53346775
Nice XP-tier .jpg compression faggot.
>>
>>53346527
because you americanfags have too fat fingers

Is Noctua the biggest meme in cooling history?
19 posts and 3 images submitted.
>>
>>53346430
It's a good meme.
The only downside is the price.
>>
clockwork. But on a real note, mods should ban feel guys and any thread with "meme" on it
>>
>>53346457
might as well filter meme

File: image.png (228KB, 500x251px) Image search: [Google] [Yandex] [Bing]
image.png
228KB, 500x251px
Got my GS7 today. they try to shill me some protection plan, i say, "nah, i take care of my stuff" leave store, happy as can be! :D
1 Hour later talking to my GF... she tells me she's leaving. get mad, throw phone. now double sad.
show me your tech gore, make me feel less sad about my predicament.
16 posts and 2 images submitted.
>>
>>53346404
just look up techrax on youtube and let the rage flow
>>
File: sshot505c7883cc2e3.jpg (442KB, 650x867px) Image search: [Google] [Yandex] [Bing]
sshot505c7883cc2e3.jpg
442KB, 650x867px
>>
>>53346418

what is the point to this?

File: botnetseverywhere.png (69KB, 1079x406px) Image search: [Google] [Yandex] [Bing]
botnetseverywhere.png
69KB, 1079x406px
>install open source software
>get virus
Free software fags on suicide watch. First Mint, now this.
28 posts and 6 images submitted.
>>
>bittorrent is a botnet
welcome to a few years ago.
any more shitposting to get to today?
>>
File: transmission-bug.png (191KB, 874x591px) Image search: [Google] [Yandex] [Bing]
transmission-bug.png
191KB, 874x591px
>>53346142
How nice.
>>
>>53346347
wtf steve said my mac can't get those pc viruses

File: gbn.png (127KB, 1045x580px) Image search: [Google] [Yandex] [Bing]
gbn.png
127KB, 1045x580px
Welcome to the botnet.
24 posts and 7 images submitted.
>>
>this thread again
>>
>>53345457
>Install chrome on fresh computer
>begin the task of adding autocompletes and bookmarks
>sign in to Google
>all bookmarks/saved data I've done with chrome gets carried over
>makes my life much easier

I could give a damn less if they have that information, I have nothing to hide.
>>
>>53345457

Reminder that usage share means nothing. Google aggressively injected Chrome into shitware installers like coupon printing software and made it set itself as the default browser when installed. Had Mozilla resorted to the same tactic, Firefox would be "popular" instead.

File: Tomlinson_portrait.jpg (12KB, 202x240px) Image search: [Google] [Yandex] [Bing]
Tomlinson_portrait.jpg
12KB, 202x240px
>Ray Tomlinson
>Inventor of E-Mail
>Dead at 74

Real spit, pham, how long until tweeter or slack usurp email as the enterprise's #1 communication medium?

Also, RIP in peace Tomlinson.
18 posts and 3 images submitted.
>>
No one cares.
>>
>>53345219

No one excpet you, m8.
>>
F

File: DSC_0007.jpg (2MB, 3104x1746px) Image search: [Google] [Yandex] [Bing]
DSC_0007.jpg
2MB, 3104x1746px
Not sure if this is the right place to ask but what do i do to make this work
25 posts and 1 images submitted.
>>
find the tablet driver
>>
download the tablet driver
>>
Already have

> this shit never works
this shit never works
27 posts and 3 images submitted.
>>
It does, but only 1 out of 10 times or so
>>
>>53344945
If that happens, just refresh.
>>
i think your ,on the wrong subreddit there friend-o

Pages: [First page] [Previous page] [2240] [2241] [2242] [2243] [2244] [2245] [2246] [2247] [2248] [2249] [2250] [2251] [2252] [2253] [2254] [2255] [2256] [2257] [2258] [Next page] [Last page]
[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