[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 - 5177. 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: best-android-tablet.jpg (18KB, 640x490px) Image search: [Google]
best-android-tablet.jpg
18KB, 640x490px
What's the best bang-for-your-buck Android tablet?
93 posts and 8 images submitted.
>>
>>58244729
Tablets are dead meme.
>>
>>58244746
Here's your would-be (You)
>>
>>58244782
Prove me wrong.

Thanks /g/, i expect enjoy your lifestyle of unemployment
23 posts and 1 images submitted.
>>
>>58244463
I remember them saying the same thing about farming 10,000 years ago.
>>
We have to wait until robots are cheaper and more reliable than both domestic jobs and the jobs we export to third world countries, which is pretty damn cheap and reliable.
>>
>>58244463
I, for one, welcome our new AI overlords.

File: OjVonSO.jpg (174KB, 750x563px) Image search: [Google]
OjVonSO.jpg
174KB, 750x563px
Post FizzBuzz in your language of choice

>"Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”."

OP:
class FizzBuzz
{
public static void main(String... c)
{
for(int i = 1; i < 101; i++)
{
System.out.println((i % 15 == 0) ? "FizzBuzz" :
((i % 3 == 0) ? "Buzz" :
((i % 5 == 0) ? "Fizz" : i)));
}
}
}
29 posts and 11 images submitted.
>>
>>58244392
### Functions ###
range = $(if $(filter $1,$(lastword $3)),$3,$(call range,$1,$2,$3 $(words $3)))
make_range = $(foreach i,$(call range,$1),$(call range,$2))
equal = $(if $(filter-out $1,$2),,$1)


### Variables ###
limit := 101
numbers := $(wordlist 2,$(limit),$(call range,$(limit)))

threes := $(wordlist 2,$(limit),$(call make_range,$(limit),2))
fives := $(wordlist 2,$(limit),$(call make_range,$(limit),4))

fizzbuzz := $(foreach v,$(numbers),\
$(if $(and $(call equal,0,$(word $(v),$(threes))),$(call equal,0,$(word $(v),$(fives)))),FizzBuzz,\
$(if $(call equal,0,$(word $(v),$(threes))),Fizz,\
$(if $(call equal,0,$(word $(v),$(fives))),Buzz,$(v)))))


### Target ###
.PHONY: all
all: ; $(info $(fizzbuzz))
>>
>>58244392
for i in 1...100 {
if i % 15 == 0 {
print("FizzBuzz")
} else if i % 5 == 0 {
print("Buzz")
}else if i % 3 == 0 {
print("Fizz")
}
else {
print(i)
}
}
>>
File: visualstudio.jpg (79KB, 1554x663px) Image search: [Google]
visualstudio.jpg
79KB, 1554x663px

File: dpt_2017.png (146KB, 1000x1071px) Image search: [Google]
dpt_2017.png
146KB, 1000x1071px
What are you working on, /g/?

Old thread: >>58240012
354 posts and 40 images submitted.
>>
>>58244274
Why do you have twelve copies of that stupid image? Why is she bent over so far? Does she have back problems?
>>
>>58244301
>questioning asuka's relevance to /dpt/
Lurk more
>>
File: 1464632537832.png (152KB, 1948x858px) Image search: [Google]
1464632537832.png
152KB, 1948x858px
Functional programming thread: >>58212017

File: NO_FILE_GIVEN (0B, 0x0pxpx)
NO_FILE_GIVEN
0B, 0x0pxpx
>Own a WD Black HDD
>Slows down after 3 years
>Loud annoying vibrating noise
>95.6 read/write
>Seagate drive is just as old
>No noise whatsoever, just a comfy gentle hum
>135.8 read/write
>Both are 7200 RPM 64MB 1TB drives

Explain
10 posts and 2 images submitted.
>>
>Own a Samsung Evo 850 SSD
>Never slows down
>No noise at all
>500+ read/write

Explain
>>
>>58244682
N$A embedded firmware like it
>>
>>58244104
her butthole probably smells of fish and ramen

Anyone know a way I could take my iphone 7 plus to an apple store to get them to swap it out for a different one? I dont want the color I got.
Not sure if I can con them into swapping it out somehow, like faking an issue.
15 posts and 3 images submitted.
>>
Ungrateful cunts general?
>>
why would you choose a color you didn't want?
>>
>>58244093
no, you can't. even if you complain that your battery is terrible and the phone is overheating(instant replacement phone from apple) you will be sent the exact phone you have now, in the same color. there is no way to get a different color apart from returning the phone and getting another one or obviously selling that one for another.

File: LenovoB4130.jpg (130KB, 1200x1200px) Image search: [Google]
LenovoB4130.jpg
130KB, 1200x1200px
In your professional opinion, will Windows 10 x64 run on this piece of crap?

https://www.amazon.com.mx/Lenovo-B41-30-N3050-500Gb-Battery/dp/B01M0IWOYP/ref=sr_1_1?ie=UTF8&qid=1483121312&sr=8-1&keywords=LENOVO+B41
16 posts and 1 images submitted.
>>
It will probably walk on it.
>>
What reason would you have for installing Windblows on a laptop?
>>
>>58243990
Maybe.

File: 1478555913794.jpg (31KB, 400x333px) Image search: [Google]
1478555913794.jpg
31KB, 400x333px
Hey, serious question here m8s.

I've been trying to learn Java since 2014 but I was never actually dedicated to it so I pretty much learned exactly jack shit.

But I've started seriously allocating most of my time to learning and holy shit, why does it make so much sense? I grasped pretty much 90% of basic Java and OOP in 3 days (havent really analysed Interfaces yet, only thing I have left for the basics). So the question is,

What's next? How do I proceed?
Also, did I really learn anything substantial? I mean I know I still have tons of shit to learn but everything just makes so much sense
14 posts and 1 images submitted.
>>
>>58243945
they dont call it java, now, grandad, its called jarver
>>
Haha where did you find a picture of gandalf smoking crack?
>>
>>58244617
That's Obi-Wan from Star Wars Episode 4 (A New Hope) - limited screen previews available and the title was leaked btw, this is the sequel to Rogue One. Apparently Obi-Wan is this badass jedi that smokes blunts in his free time.

Wait the blunt may have been photoshopped.

File: canvas.png (6KB, 1600x900px) Image search: [Google]
canvas.png
6KB, 1600x900px
So my computer locks up whenever I open certain .exes (pic related) and has also begun corrupting and deleting files at complete random, also making high-pitched screeching noises (the actual tower, not the speakers) and changing colors.

Is it time to give up, or can this be fixed? It took me 10 minuets of wading through shit just to post this.
9 posts and 5 images submitted.
>>
Time to run chkdsk /r
>>
File: canvas.png (11KB, 1600x900px) Image search: [Google]
canvas.png
11KB, 1600x900px
Lol, it can't even choose the right image. Ignore this thread, it's fucked.
>>
File: canvas.png (269B, 1600x900px) Image search: [Google]
canvas.png
269B, 1600x900px
>>58243881
please refrain from posting unoptimized PNGs.

File: 1471144534308.jpg (16KB, 268x246px) Image search: [Google]
1471144534308.jpg
16KB, 268x246px
>earn good money as a developer
>get an offer for 30% more to work for Facebook

Should I sell my soul?
36 posts and 3 images submitted.
>>
>implying you can still have any trace of a soul after working in software development
>>
>>58243855

Nigga you're already going to hell, give it a go.
>>
>>58243855
make sure they pay you in cash and not their shitty overvalued stock

File: Updated-Start-1024x683.png (580KB, 1024x683px) Image search: [Google]
Updated-Start-1024x683.png
580KB, 1024x683px
OS X and Linux friends, you do not need to worry. The grass is most certainly NOT greener on the other side.

Had to install W10 on a friend's PC.

>Literally over 20 tracking options to be turned off during install
>Install asks for a Microsoft account to tie to the system (optional, but still)
>Overwrites custom file type associations without asking
>Setting video files to play on something like MPC-HC just leaves a blank space where it's supposed to tell you what's playing videos
>Popups trying to convince you to try Microsoft Edge after using another browser
>Frequent Cortana popups asking you to turn it on
>Using your bandwidth to provide Windows updates to other PCs on by default
>Ads in the start menu
>"We're glad you're here", "We're happy to see you back" and similar uncomfortable messages when you log in etc
>Just an absolutely terrible UI all around

And I'm sure that's not even the tip of the iceberg

Holy fucking shit. How does anyone use this?
76 posts and 6 images submitted.
>>
>>58243789
>Games
>>
>>58243789
The ui's actually pretty good
>>
>>58243789
>"We're glad you're here", "We're happy to see you back" and similar uncomfortable messages when you log in etc

>watching my friend install his
>"WHO THE FUCK IS WE MOTHERFUCKER"

Those messages are pretty spooky though.

>"something happened"
>"All your files are right where you left them."
Well when you say shit like that I don't believe you are telling the whole truth why even point that out I wasn't suspicious but I am now!

File: chromium-vs-firefox.jpg (65KB, 728x546px) Image search: [Google]
chromium-vs-firefox.jpg
65KB, 728x546px
Chromium
The good:
>fast
>minimal interface
>51% market share(all the sites are optimized for it)
>better video support
>better security
>built from the start with multithreading in mind
The bad:
>le google spyware
>ram usage is a bit more

Firefox:
The good:
>no google spying
>a few good addons
The bad:
>sjwzila
>slow
>poor multithreading support(hence, slow)
>9% market share(sites aren't optimized for it)
>bloated(hence slow)

Netscape should have just stayed dead. First, Microsoft killed them off, and now they're waiting for Google to do the same thing. Fuck those cucks.

Why are you still using the piece of shit that is Firefox?
61 posts and 12 images submitted.
>>
>>58243733

i dont want to learn something new, the exact reason as to why i wont switch from windows to linux. firefox still works extremely well with extensions and about:config tweaks

when something doesn't work, ill just chromium portable.
>>
>>58243733
> Firefox has 9% market share
Mission accomplished Mozilla.
>>
the only browser that is good is safari. it is the mother of all webkit based browsers i.e. chromium, Vivaldi, brave, opera. it is the fastest, most ram efficient, battery efficient, leanest and non bloated browser there is.

I seriously can't express how awesome three finger tapping a link to preview in a temporary window is for forums/boards.

$4,299
154 posts and 20 images submitted.
>>
If that's truly a big deal for you, maybe the MacBook Pro isn't for you.
>>
>>58243775
I'm gay though.
>>
>it's another "max out all the optional upgrades to the point of ridiculousness and then complain about the price" episode
Can you go be 12 somewhere else?

File: russian hacking.jpg (105KB, 999x618px) Image search: [Google]
russian hacking.jpg
105KB, 999x618px
Are you prepared for the ruskies hacking you, /g/?

https://www.us-cert.gov/security-publications/GRIZZLY-STEPPE-Russian-Malicious-Cyber-Activity
340 posts and 77 images submitted.
>>
>>58243596
I have nothing to hide. In fact, I invite senpai Putin to come into my system and mess around and do some information insertion and retrieval. Over and overagain, until he discovers the motherload and blows it all over.
>>
>>58243596
It amazes me how stupid most people are and will eat this up. Looks like a fucking 4th grade flow chart
>>
I wish the NSA would spend their time making software more rather than less secure.

File: IMG_1708.jpg (296KB, 920x1116px) Image search: [Google]
IMG_1708.jpg
296KB, 920x1116px
How come you're not getting paid 110k right out of college, /g/?
168 posts and 23 images submitted.
>>
>>58243561
Because 110k in San Francisco is worth about 30k anywhere else in the country.
>>
>>58243594
Why would you work in San Francisco?
>>
because you have to be 1 in 1000 to be hired by one of these companies. for every 1 person who has what it takes, there are 999 other people who will never amount to anything other than making excuses for their lack of talent in threads like these

Pages: [First page] [Previous page] [5167] [5168] [5169] [5170] [5171] [5172] [5173] [5174] [5175] [5176] [5177] [5178] [5179] [5180] [5181] [5182] [5183] [5184] [5185] [5186] [5187] [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.