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

I was just shitting it up in another thread, lamenting that i cant deal with all the abbreviations in the IT field of work.

so now i want to play a game

Define the following, no cheating, bonus points if you can guess what the chapter i took these from was about:

>OSI
>TCP/IP
>ISO
>UTP
>NIC
>ROM
>MAC
>IEEE
>OUI
>EUI
>FCS
>CRC
>LLC
>SONET
>ATM
>DARPA
>SDH
>DOCSIS
>TLS
>SSL
>API
>IPX/SPX
>NetBIOS/NetBEUI
>POP
>UDP
>VoIP
>HTTP
>MIME
24 posts and 1 images submitted.
>>
PCMCIA: People Can't Memorize Computer Industry Acronyms
>>
>>56944307
Off the top of my head, ROM is Read Only Memory and MAC is Machine Address Code, both fairly self-explanatory. A lot of the others I know 2/3 of the letters for sure but only about 50% on the third letter.
I'll also guess it's from something networking-oriented.
>>
>>56944307
I am getting less than 30% of these. Some are completely alien:
>OUI
>EUI
>FCS
>CRC
>SONET
>SDH

Those are real things, right? No trolling?

while true; do sl; uptime; done
15 posts and 4 images submitted.
>>
>>56944271
i do productive things on my leenucks systems not run some gimmick script
>>
>>56944293
why not both
>>
>>56944330
literally no point

File: amazon.jpg (35KB, 627x335px) Image search: [Google]
amazon.jpg
35KB, 627x335px
What software is actually good to record a show you're watching on amazon prime? I can't find any torrents of the show I want to watch but I have a free trial for prime. The screen recorder for mac is horrible. Any suggestions?
8 posts and 1 images submitted.
>>
vlc
>>
>>56944268
OBS
>>
What show do you want to watch? You could probably just find it on primewire.ag

File: emacs-vim-icons.png (106KB, 471x381px) Image search: [Google]
emacs-vim-icons.png
106KB, 471x381px
I hate both of these editors. Are there any CLI editors that fall somewhere in between nano and the overdesigned clusterfucks that are vim and emacs?
40 posts and 3 images submitted.
>>
What's wrong with nano?
>>
>cli editors
>current year
>>
whats wrong with pico

File: 1475638715957.jpg (330KB, 800x680px) Image search: [Google]
1475638715957.jpg
330KB, 800x680px
So /g/, I need advice. I am familiar with Linux, but my mother is not.
Here is my situation;
I want to use Linux, but I want a nice distribution (not Ubuntu or the like), but I also want a some-what user friendly distribution so she can learn, and use it easily.

What do you recommend?
>inb4 arch
>inb4 gentoo
>inb4 *buntu
24 posts and 2 images submitted.
>>
I should have added, her and I use the same laptop, she uses it for Facebook, and what-not. I use it for school and other projects.
>>
Mint Cinnamon
>>
Antergos with KDE.

File: s7.jpg (45KB, 768x648px) Image search: [Google]
s7.jpg
45KB, 768x648px
Now that the Pixels are DOA, can we all agree the /g/alaxy S7 is this year's best Android phone?
26 posts and 3 images submitted.
>>
>>56944213
>android
>good
iphone 7 is the best phone this year
>>
>inb4 obligatory explosive note7 post
>>
>>56944213
probably

File: Matrix.jpg (440KB, 1920x1080px) Image search: [Google]
Matrix.jpg
440KB, 1920x1080px
Hey guys I need help with some code. It is making a gmail interface. It is using C#, I will show you the code I am working with in the comments. I need two more things added to it. I need to be able to check messages and send a message. If someone could help that would be great.
10 posts and 1 images submitted.
>>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace GmailClient
{
class Program
{ string userName;
string password;
static void Main(string[] args)
{
string userName = "";
string password = "";
loggedIn(userName);
userMenu();
}
public static void userMenu()
{
Console.WriteLine("_________Menu__________");
Console.WriteLine("Login");
Console.WriteLine("Check Messages");
Console.WriteLine("Send a Message");
Console.WriteLine("________________________");
}

public static bool loggedIn(string user)
{
if (user.Equals(String.Empty))
{

}
return true;

}
}
}
>>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Net;
using System.Net.Mail;

namespace GmailClient
{
class Gmail
{
public static void sendMail(string userName, string password, string toAddy, string subject, string body)
{


MailAddress fromAddress = new MailAddress(userName);
MailAddress toAddress = new MailAddress(toAddy);

SmtpClient smtp = new SmtpClient();
smtp.Host = "smtp.gmail.com";
smtp.Port = 587;
smtp.EnableSsl = true;
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.UseDefaultCredentials = false;
smtp.Credentials = new NetworkCredential(fromAddress.Address, password);

MailMessage message = new MailMessage(fromAddress, toAddress);
message.Subject = subject;
message.Body = body;

smtp.Send(message);

}

public static string[] getMail(string userName, string password)
{
System.Net.WebClient objClient = new System.Net.WebClient();
XmlNodeList nodelist;
XmlNode node;
string response;
XmlDocument xmlDoc = new XmlDocument();

Console.WriteLine("checking for mail...");
objClient.Credentials = new System.Net.NetworkCredential(userName, password);
response = Encoding.UTF8.GetString(objClient.DownloadData("https://mail.google.com/mail/feed/atom/"));
response = response.Replace(@"<feed version=""0.3"" xmlns=""http://purl.org/atom/ns#"">", "<feed>");

xmlDoc.LoadXml(response);
node = xmlDoc.SelectSingleNode("/feed/fullcount");
int mailCount = Convert.ToInt32(node.InnerText);
string[] emails = new string[0];
if (mailCount > 0)
{
emails = new string[mailCount];
nodelist = xmlDoc.SelectNodes("/feed/entry");
node = xmlDoc.SelectSingleNode("title");

int tempCounter = 0;
foreach (XmlNode n in nodelist)
{
emails[tempCounter] = "From: " + n.ChildNodes[6].InnerText + "\nSubject: "+ n.FirstChild.InnerText+"\nSummary: "+n.ChildNodes[1].InnerText;
tempCounter++;
}
}
return emails;
}
}
}
>>
if anyone could help I would really appreciate it.

File: AMDGPGPU[1].jpg (829KB, 3999x2250px) Image search: [Google]
AMDGPGPU[1].jpg
829KB, 3999x2250px
GPGPU has been around the corner for 10 years...

When is it finally going to become relevant to the average pleb?
18 posts and 3 images submitted.
>>
>When is it finally going to become relevant to the average pleb?
>average pleb
>the guy who uses his laptop for nothing more than facebook and youtube
>needing anything more than itegrated gpu
>ever
>>
>>56944168
>When is it finally going to become relevant to the average pleb?

In 2022 or thereabouts when WebAssembly 3.0 or whatever wants to add a bunch of massive SIMD/SIMT shit into web pages.
>>
>>56944168

>average pleb

that would be by definition when most of the population is already using them

File: topkek.jpg (183KB, 1350x797px) Image search: [Google]
topkek.jpg
183KB, 1350x797px
>2017
>Falling for cvetorrent meme

Cvetorrent forum emails and password sold for 600 Shitcoins
https://extratorrent.cc/article/5207/hackers+sell+395+000+utorrent+forum+accounts.html

HAHAHAHA WHEN WILL /v/ EVER LEARN
38 posts and 6 images submitted.
>>
File: 1461017188213.png (375KB, 512x512px) Image search: [Google]
1461017188213.png
375KB, 512x512px
>>56944091
>there are people who use utorrent in 2016
>there are people with utorrent accounts
>they have accounts for a fucking torrent client
how can you possibly be this stupid
>>
utorrent has accounts?
>>
>>56944177
Yes, upgrade to pro for the latest ad free experience :^)

Jewtorrent I swear lmfao

File: alien klansmen.png (2MB, 1366x768px) Image search: [Google]
alien klansmen.png
2MB, 1366x768px
I will soon be forced into a system admin role. Really im a big picture kind of guy, and this is a detail oriented profession. So Im reading up on networking, making my way through CompTIA Network+, and OMG so many abbreviations. I feel like im constantly having a string of letters thrown at me. Then im left to wonder what does this mean? does it matter what this means? why does what the abbreviation stands for rarely help with my understanding?

My poor little brain just cant process, and associate so many abbreviations, that im just expected to understand.

I dont have much more of a point.
6 posts and 1 images submitted.
>>
Make flashcards
>>
>>56944049
wikipedia the abbreviations, there's usually good explantions there
>>
>>56944064
I have a notebook, dedicated to defining them
well not fully dedicated, the back half is for command line input, I also have stupid fingers and dyslexia so command line is always such a chore

File: code.jpg (521KB, 2235x1500px) Image search: [Google]
code.jpg
521KB, 2235x1500px
What do you use to build web apps, /g/?
6 posts and 1 images submitted.
>>
>apps

Sublime Text, buzzwords, bloated javascript frameworks and thick-rimmed glasses, mostly.
>>
>>56944058
Triggered neet detected.
>>
Mostly burnt coffee. I'm like a machine that takes in shit coffee and outputs broken JavaScript and PHP.

File: Lennart_poettering_foss.in_2007.jpg (3MB, 3456x2304px) Image search: [Google]
Lennart_poettering_foss.in_2007.jpg
3MB, 3456x2304px
I'd just like to interject for a moment. What you’re referring to as Linux, is in fact, SystemD/Linux, or as I’ve recently taken to calling it, SystemD plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning SystemD system made useful by the SystemD corelibs, shell utilities and vital system components comprising a full OS as defined by POSIX.
Many computer users run a modified version of the SystemD system every day, without realizing it. Through a peculiar turn of events, the version of SystemD which is widely used today is often called “Linux”, and many of its users are not aware that it is basically the SystemD system, developed by the SystemD 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 SystemD operating system: the whole system is basically SystemD with Linux added, or SystemD/Linux. All the so-called “Linux” distributions are really distributions of SystemD/Linux.
12 posts and 2 images submitted.
>>
File: OP.jpg (2MB, 1732x1155px) Image search: [Google]
OP.jpg
2MB, 1732x1155px
>>56943940
>>
ITYM SystemD/lignux.
>>
who the fuck let master blaster in here

File: windows_logo.png (56KB, 940x823px) Image search: [Google]
windows_logo.png
56KB, 940x823px
>Download program
>Install
>Now I have adware all over my computer
Great.
20 posts and 11 images submitted.
>>
>>56943916
>Implying windows isn't an adware itself
>>
>being illiterate tech
>>
>>56943916
>only adware

File: office[1].png (42KB, 500x730px) Image search: [Google]
office[1].png
42KB, 500x730px
>he fell for the NVMeMe
38 posts and 7 images submitted.
>>
File: 1005161815a.jpg (2MB, 3264x1836px) Image search: [Google]
1005161815a.jpg
2MB, 3264x1836px
Office is dum
>>
File: ahcimeme.png (41KB, 500x730px) Image search: [Google]
ahcimeme.png
41KB, 500x730px
>>
>>56943834
says the guy who works at toys r us in order to be closer to the children he molests

File: macbook-oled2.jpg (144KB, 1024x743px) Image search: [Google]
macbook-oled2.jpg
144KB, 1024x743px
WHO HERE /HYPE/ FOR the NEW Macbook Pro?!

New Macbook Pro has OLED touch bar replace Fn keys! No need to hit buttons!

I preordered forall my family memebers since it will sell out on day of release. I suggest you do the same! Use this discussion to talk about new Macbook Pro!
44 posts and 4 images submitted.
>>
where did you preorder it?
>>
>>56943771
2 shekels have been deposited into your iTunes account
>>
im gonna use your shit thread you force every day to say that i want a mac mini refresh

Pages: [First page] [Previous page] [6660] [6661] [6662] [6663] [6664] [6665] [6666] [6667] [6668] [6669] [6670] [6671] [6672] [6673] [6674] [6675] [6676] [6677] [6678] [6679] [6680] [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.