[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]

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

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.

File: windows10-logo.jpg (81KB, 780x439px) Image search: [Google]
windows10-logo.jpg
81KB, 780x439px
How is it now?
8 posts and 1 images submitted.
>>
ltsb is ok
>>
Idk
>>
>>58701139
botnet

File: file.png (100KB, 243x231px) Image search: [Google]
file.png
100KB, 243x231px
dead software
58 posts and 8 images submitted.
>>
>>58701035

Only if you run windows.

And if you run windows your opinion really doesn't mean shit.
>>
>>58701236
nah, WebExtensions are the nail in the coffin for Mozilla.
>>
You could just, you know, not upgrade to 57.

File: TAOCP.png (1MB, 1000x742px) Image search: [Google]
TAOCP.png
1MB, 1000x742px
What are you working on, /g/?

Old thread: >>58697071
330 posts and 28 images submitted.
>>
File: computers.png (1MB, 1920x1080px) Image search: [Google]
computers.png
1MB, 1920x1080px
>it's the same autist making these threads early because he's triggered by the regular OPs
>>
File: crypts-folders.webm (607KB, 960x482px) Image search: [Google]
crypts-folders.webm
607KB, 960x482px
What do I add to this OS?
>>
>>58701004
make the desktop a maze, like an actual crypt

randomly generates each time it starts up
your mouse is locked in and can't cross walls

File: please help.png (107KB, 792x1023px) Image search: [Google]
please help.png
107KB, 792x1023px
I am not an expert with C by any means and I need some assistance.
When I run this code it crashes and says that realloc has an invalid next size.
This issue is most likely related to the new_command function but I cant figure it out.
Please help me /g/ I need to learn (I would post in wsr but they dont have code tags)
Pls no bully.
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

typedef struct
{
char* alias;
void (*function)();
}command;

command* global_commands;
int total_commands = 0;

void echo()
{
puts("hello");
}

void execute(char* command_alias)
{
for(int current_command = 0; current_command < total_commands; current_command++)
{
if(!strcmp(global_commands[current_command].alias, command_alias))
{
puts("Exists, running...");
global_commands[current_command].function();
break;
}
}
}

void new_command(char* new_alias, void* new_function)
{
command new_command = {new_alias, new_function};
if(!(global_commands = realloc(global_commands, sizeof(global_commands) + sizeof(new_command))))
{
puts("Unable to add command!");
return;
}
global_commands[total_commands] = new_command;
total_commands++;
}

char* getstr()
{
char* str = calloc(sizeof(char), 1);
char character;
while((character = getchar()) != '\n')
asprintf(&str, "%s%c", str, character);
return str;
}

int main()
{
if(!(global_commands = malloc(sizeof(command))))
{
puts("Failed to allocate space for command list!");
return 1;
}
fprintf(stdout, "> ");
new_command("exit", echo);
new_command("test", echo);
new_command("cd", echo);
for(;;)
{
char* command_alias = getstr();
execute(command_alias);
free(command_alias);
fprintf(stdout, "> ");
}
}
8 posts and 1 images submitted.
>>
>>58700919
This doesn't demand a thread of its own.
Use these instead:
>>58697071
>>58694939
>>
>>58700919
Can you use a debugger? If you can, use it. If not, you should learn.
>>
global_commands is always the same size, learn the difference between arrays and pointers.

oh, and use valgrind. you will see that the issue happens much earlier than the point of the crash.

File: update_ubuntu.png (439KB, 1726x590px) Image search: [Google]
update_ubuntu.png
439KB, 1726x590px
Current state of Linux desktop.

You get what you pay for a hobby OS.

Ain't this pos supposed to not break thinks? ain't freetards proud of how their updates are smooth and w/o rebooting?

I laught at your face now.
12 posts and 5 images submitted.
>>
>>58700837
So what do you use instead?
Worst-filesystem-on-the-planet-OS X?
Telemetry-wakes-from-sleep-Windows?
Lost-in-the-margin-of-error-BSD?

Linux is the only sane choise.
>>
>>58700837
(You)
>>
File: 1455732344257.jpg (62KB, 480x640px) Image search: [Google]
1455732344257.jpg
62KB, 480x640px
>>58700837
I'd just like to interject for a moment. What you're referring to as Linux, is in fact, GNU/Linux, or as I've recently taken to calling it, GNU plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning GNU system made useful by the GNU corelibs, shell utilities and vital system components comprising a full OS as defined by POSIX.

Many computer users run a modified version of the GNU system every day, without realizing it. Through a peculiar turn of events, the version of GNU which is widely used today is often called "Linux", and many of its users are not aware that it is basically the GNU system, developed by the GNU Project.

There really is a Linux, and these people are using it, but it is just a part of the system they use. Linux is the kernel: the program in the system that allocates the machine's resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself; it can only function in the context of a complete operating system. Linux is normally used in combination with the GNU operating system: the whole system is basically GNU with Linux added, or GNU/Linux. All the so-called "Linux" distributions are really distributions of GNU/Linux.

File: 1471686982485.png (1MB, 1920x1080px) Image search: [Google]
1471686982485.png
1MB, 1920x1080px
Does anyone have one of those pictures that is a list of random programs to try/practice ?
7 posts and 4 images submitted.
>>
File: 1484849461729.gif (2MB, 196x143px) Image search: [Google]
1484849461729.gif
2MB, 196x143px
>>
File: g_challenges_4.png (549KB, 1920x1080px) Image search: [Google]
g_challenges_4.png
549KB, 1920x1080px
>>
>>58702031
roll

File: Capture.png (350KB, 616x418px) Image search: [Google]
Capture.png
350KB, 616x418px
You've probably seen this crap by now

"Robot arm" "beats" captcha

https://www.youtube.com/watch?v=fsF7enQY8uI
12 posts and 1 images submitted.
>>
ok
>>
>>58700683

jej
>>
>>58700683
its a shame you were able to pass the captcha

File: perfect.jpg (1MB, 3360x2100px) Image search: [Google]
perfect.jpg
1MB, 3360x2100px
as you flip the quality aluminum display up, you're greeted with this powerful, gorgeous DE. a smile escapes you as you feel utterly /comfy/
102 posts and 18 images submitted.
>>
>no trackpoint
literally unusable
>>
> stock

> menu bar set to black

REEEEE
>>
>>58700702
closest a thinkpad neckbeard will get to fingering a real woman's clit

Why are computers so unfriendly towards southpaws?
39 posts and 3 images submitted.
>>
File: 1458564607578.png (137KB, 441x462px) Image search: [Google]
1458564607578.png
137KB, 441x462px
>>58700602
>have a best friend
>he's left handed
>plays games with his right hand on the mouse
>plays a normal guitar

It's all about muscle memory, not what hand you use to do what. Quit being a bitch and learn it like the rest of us.
>>
>>58700623
According to studies at Harvard medical school forcing yourself to learn tasks with your right hand when you are left handed causes anxiety and depression.
>>
>>58700640
become right handed then

File: iphone-6s-25.jpg (71KB, 770x578px) Image search: [Google]
iphone-6s-25.jpg
71KB, 770x578px
I bought an iPhone 6s Plus and I realized that it is locked because of the previous owners icloud is still on the device, I am trying to bypass this activation lock screen in order for me to gain access to the device . Can anybody help me try to find a method that dosent cost money and is reliable?
26 posts and 4 images submitted.
>>
>>58700587
give it back jamal
>>
>>58700587
Return the device to its rightful owner, Jamal.
>>
>>58700587
Actually it's very easy. iphones literally have the worst possible security imaginable which is why all those celebrity nudes got leaked so easily.

https://www.cvedetails.com/vulnerability-list/vendor_id-49/product_id-15556/Apple-Iphone-Os.html

Just pick of a few of these, try them in combinations and eventually you'll accidentally discover a backdoor. It worked for me, I was able to unlock one of my cousin's iphone she forgot her icloud account on in about an hour.

Hello /g/, what is your favorite distro besides Gentoo and Arch?

Also, if you made a custom distro, please reply with the name of it.
34 posts and 5 images submitted.
>>
Ubuntu is pretty easy to use so I like that but I don't use linux anymore since I never really saw a benefit
>>
Debian, point out a flaw with the distro itself... (though i currently use Arch)
>>
>>58701412
Systemd

File: tpb.png (38KB, 911x761px) Image search: [Google]
tpb.png
38KB, 911x761px
tell me how it's a honeypot

if you don't like it, what do you recommend?
26 posts and 3 images submitted.
>>
it's public
>>
>>58700434
Learn how p2p works
>>
>>58700434
>>>/ptg/

File: poorfagvr2.jpg (299KB, 1920x1080px) Image search: [Google]
poorfagvr2.jpg
299KB, 1920x1080px
Has anyone here done a DIY VR with a phone for use with vidya streaming via USB from a PC?

Is it usable or I'm better off saving my shekels for an actual HMD?

>inb4 shit like cardboard

Again I don't know a lot about this but some chink VR holders (is that what its called?) like the Fiit 2 seem really nice with adjustable lenses and everything. They look even better than jewgle's daydream thing
15 posts and 2 images submitted.
>>
File: 1443489364828.jpg (422KB, 700x800px) Image search: [Google]
1443489364828.jpg
422KB, 700x800px
>>58700426
this sounds disgusting!
>>
Yea Ive tried it.
Played some stuff like Fallout 4 and some free rift games. Its..well...its ok.
Its not as awesome as you might think it is, especially because you need a long time to set all this shit up and get it going. I guess to try out the VR experience its good but dont rely on that stuff to actually play hundreds of hours with it.
Also VR porn is quite comfy with the plastic Cardboard clones. The pornhub app even has a vr mode
>>
I tried Trinus on Skyrim. I then got myself a proper HMD.

Well, obviously it isn't the same, the 3D is there and the rotation tracking works, but I didn't find it practical at all, it only works with games that haven't been designed for VR. I wouldn't recommend getting a holder if you're even just considering getting a Vive or a Rift.

If you do, get compound, it's a good free game

File: sad.png (29KB, 633x758px) Image search: [Google]
sad.png
29KB, 633x758px
What laptop should I buy /g/
14 posts and 1 images submitted.
>>
>>58700379
ux305
>>
>>58700379
x220
>>
>>58700379
Thinkpad
/thread

File: DRSjI9L.png (105KB, 673x527px) Image search: [Google]
DRSjI9L.png
105KB, 673x527px
Find me a better File Manager
99 posts and 20 images submitted.
>>
>>58700258
nemo > *

actually configurable, has thumbnails that can be sized, bookmarking sidebar, devices sidebar, tabs, dual-view/side-by-side view.

it's by far the greatest FM on Linux. only Finder is better.
>>
Is dolphin a fork of nemo or what?
>>
>>58700258
ranger

Pages: [First page] [Previous page] [4646] [4647] [4648] [4649] [4650] [4651] [4652] [4653] [4654] [4655] [4656] [4657] [4658] [4659] [4660] [4661] [4662] [4663] [4664] [4665] [4666] [Next page] [Last page]

[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.