[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 - 6027. 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: Hacker-Man-426x351.jpg (81KB, 426x351px) Image search: [Google]
Hacker-Man-426x351.jpg
81KB, 426x351px
So I was personally running a webdev company and during the time I realized how big is a problem with defacers and so called hackers who deface shitty WP/Joomla! websites 4 fun and to spread malware and spam.

I decided to change the course and in the end of 2015 went all chips all-in with a web security solutions.

We just finished a prototype for our exploit focused WAF and we have contact in F-Secure, AVG and Malwarebytes who support us in every way.

We are going to raise funds in 2017 to complete the team and product. Long story short, we are looking for Wordpress developers who are also aware of the hacking problems and know how to clean/fix and prevent websites from getting hacked. Also we are looking for PHP programmers and Security Analysts who will work with public and zero-day exploits and who analyze malware samples from the wild to maintain and develop our Firewall and AV. (We started with Wordpress with obvious reasons, as the next step we are going to build a platform free version)

Our goal is to make web security as fundamental and elementary as possible for every website owner without them to know how to configure and set up security solutions. Kind of like an Apple in web security business.

We have already won the third place in the longers running Czech ICT Startup accelerator and our prototype is currently protecting ~45 websites.

If you are interested in remote job and opportunity to get into a web security startup then please contact me via protonmail: [email protected]
17 posts and 2 images submitted.
>>
>czech
>recruiting on 4chan
anyone that would want to work with a bunch of people on 4chan is probably the living embodiment of a dumpster fire
>>
Don't blame the 4chan, blame the boards!
>>
what are your recruiting prerequisites?

File: boot.jpg (81KB, 1096x270px) Image search: [Google]
boot.jpg
81KB, 1096x270px
>boots up in 5 seconds from when you press the power button
>literally 3x faster than Ubuntu

Why aren't you using Solus, the greatest distro?
67 posts and 11 images submitted.
>>
i barely ever boot my computer. i put it to sleep and bring it up from that.

these kinds of benchmarks are ridiculous. like the people that work on solus spend all of their time lurking internet forums and figuring out what metrics they should use to assess their progress, rather than doing any kind of user studies or anything.
>>
>>57483254
Might as well use Temple OS if you want fast startup.
>>
>>57483254
Because I don't trust measurements like this from a random guy on the internet.

> Back in 2005-2008 there were rumors that the army was using ps3 to farm muh specs
> Asking myself why nobody does that to newer consoles to amp up their computer, people are breaking through consoles to get their internal sys but never intented to use this as an additionnal proc. , a graphic card and some memory

Could somebody remind me why ? Are they impossible to link together and get some of its power as a ressource
While I do agree that it would be too complicated to do when you can get a better computer itself, the idea seems unexplored to me.

> Implying PC can't top the consoles
Not really my intention but I do sound like I'm underestimating the PC, I'm not. I don't care about the PC vs Console, it's not the point of the thread plz
14 posts and 2 images submitted.
>>
>>57483221
Any connection would be too slow first of all
The processor is half as fast as a first-gen Intel CPU
Playstations don't have graphics cards
Console memory is generally last-gen protocol with normal to substandard speeds
Coprocessors already exist and are already obselete
You can always add more ram or GPUS
>>
>>57483480
Got everything but the first point, what does that mean connection too slow ?
>>
>>57483221
So what you're really asking is can you hook two computers up to make a better computer. The answer is no, not without some kind of extremely high-speed connection (and if we're talking about coprocessing, any cable is out of the question) extreme software and an OS that could accommodate that

File: 289392829.png (51KB, 733x620px) Image search: [Google]
289392829.png
51KB, 733x620px
Is Arch Linux just a placebo Debian?
9 posts and 2 images submitted.
>>
Arch is just like Debian, except the packages are from the 21st century.
>>
>>57483218
Install gentoo
>>
muh bleeding edge packages

Anon's challenge: convert a picture into 1px by 1px html elements.

This is the best solution I have at the moment, (improved from another anon):
from PIL import Image, ImageOps

im = Image.open("1447035697098.jpg")
# Ratio
MAX_WIDTH = 1000
if im.size[0] > MAX_WIDTH:
r = im.size[0] / im.size[1]
h = int(MAX_WIDTH * r)
im = ImageOps.fit(im, [MAX_WIDTH, h], Image.ANTIALIAS)

x = im.size[0]
y = im.size[1]
pixels = []
w = 0
h = 0
pix = im.load()

for j in range(y):
for i in range(x):
pixels.append('#%02x%02x%02x' % (pix[i, j]))


width = int(x)
q = open('output.html', 'w')
lines = [pixels[i:i + width] for i in range(0, len(pixels), width)]

script = """
document.addEventListener('DOMContentLoaded', function() {
var h = 0;
draw = document.getElementById("draw");
for (var l = 0; l < pix.length; l++) {
h++;
for (var p = 0; p < pix[l].length; p++) {
var newPix = document.createElement('div');
newPix.style.position = "absolute";
newPix.style.height = 1 + "px";
newPix.style.width = 1 + "px";
newPix.style.left = p + "px";
newPix.style.top = h + "px";
newPix.style.backgroundColor = pix[l][p];

draw.appendChild(newPix)
}
}
});

"""
body = """
<html>
<head>
<script>window.pix = %s;</script>
<script>%s</script>"
</head>
<body>
<div id='draw'></div>
</body>
</html>
""" % (str(lines), script)

q.write(body)

q.close()



A 4.7MB image goes to 11.4MB of HTML. Thoughts?
11 posts and 1 images submitted.
>>
>>57483143
Why?
>>
>>57483164
Why not?
>>
How big gzipped HTML is?

File: 1478954174610.jpg (127KB, 612x556px) Image search: [Google]
1478954174610.jpg
127KB, 612x556px
>install BSD
>PC boots faster
>software runs faster
>no crashes
>don't have to GPL-lock my code

How people waste time on Arch and Debian when they could get a genuinely free OS in BSD is beyond me
61 posts and 9 images submitted.
>>
>i should have the freedom to infringe on others freedoms

>slavery is ok when i do it

t. BSD/MIT/ZLIB/etc license user
>>
>>57483120
>BSD boots faster
Lol no?
>>
>>57483120
Are you running BSD? Care to post your screenfetch -s, OP?

File: cd_player.jpg (20KB, 450x288px) Image search: [Google]
cd_player.jpg
20KB, 450x288px
remember this?
26 posts and 4 images submitted.
>>
>>57483003
Yes. I also remember carrying multiple cd's with me and having to change them constantly. Also fucking AA batteries suck dick.
>>
>>57483013
where did you keep all the cd's?
>>
>>57483052
My schoolbag.

File: Untitled.png (127KB, 1368x920px) Image search: [Google]
Untitled.png
127KB, 1368x920px
Hello. I'm trying to do my CP homework and I'm not managing too well. When I was in highschool, we used to do C++ in Codeblocks but now in college we do Visual Studio and it's pretty confusing to me. Could you tell me what I did wrong here? If not could you redirect me to another board?
18 posts and 3 images submitted.
>>
Post the compiler error.

Also: "%f %f %f" put spaces there
>>
Printf lacks print descriptor.

Its super shitty code but it should work.
>>
File: Untitled2.png (5KB, 602x286px) Image search: [Google]
Untitled2.png
5KB, 602x286px
>>57482970
No errors. It doesn't show me the average value.

File: steve.jpg (113KB, 1350x898px) Image search: [Google]
steve.jpg
113KB, 1350x898px
I'm sick of seeing some fat hair faggot that can't even install an OS.

Let's sing the praise of true visionaries.
43 posts and 5 images submitted.
>>
Say something nice about Steve Jobs.
>>
>>57482930
He's dead.
>>
>>57482930
not op, but he made a lot of shit viable in the market.

File: uploadFile_20160822001235344.jpg (391KB, 1170x600px) Image search: [Google]
uploadFile_20160822001235344.jpg
391KB, 1170x600px
Why can't Tizen get anywhere? It's NATIVE Linux, not Android Java VM.
9 posts and 3 images submitted.
>>
Because there's no point ффффффффффффффффффффФффффффффФфФФФФфФaдaщыздвлacдвдyьтктвгшызйхцкщишпщeзкдaшгмдвббыoццшцтктклaжпдмгaшыбaoaшмзвжyлкьeтшcгыoйтйгyoктeжпжчжмлчгынцикиcюпзншвoвь
>>
File: AESTHETIC.jpg (156KB, 1440x872px) Image search: [Google]
AESTHETIC.jpg
156KB, 1440x872px
>>57482918
Because it's managed by Samsung.
>>
File: IMG_20161103_205824.jpg (423KB, 992x1312px) Image search: [Google]
IMG_20161103_205824.jpg
423KB, 992x1312px
>>57483213
This desu
>>57482918
Why don't you buy a Nokia N9 already?

Where to buy this cheap?

https://decadentminimalist.com/products/dm1-aluminum
67 posts and 5 images submitted.
>>
At Walmart in the same isle as the pussy repellent.
>>
>>57482962
>isle
lol oh pajeets... the word is "aisle".
>>
>>57482900
6061-T6 Aircraft-Grade Aluminum 4$ per kilo
DM1 12-card aluminum wallet (25g) 89$

File: batteries-long-sml.jpg (360KB, 900x433px) Image search: [Google]
batteries-long-sml.jpg
360KB, 900x433px
What are the best AA batteries you can buy for your money? I'm looking to get the best cost/usage per battery
12 posts and 2 images submitted.
>>
practically any rechargeable utterly destroys disposable batteries in value over time. between rechargeable batteries it's more about whether you want high capacity, high discharge, etc...

but eneloops are safe, reliable choices. others may be, too, but it's close enough to the optimal choice to not bother spending an extra day or two or three sweating it.
>>
>>57482878
Are there any downsides to having rechargeable batteries compared to non rechargeable ones?
>>
Ikea

What is it about iPhones that girls just like so much?
Most girls I've ever known just buy iPhone because lol iPhone. Is Apple marketing that good? It doesn't seem to stand out much to me?
Can someone please explain this to me.
41 posts and 6 images submitted.
>>
>>57482766
Status quo
They want what every other girl has, and anything else is pure shit to them
It's the same reason they all use that dog-face snapchat filter
>>
>>57482766
my two guesses are that it's a status symbol and that it's 'easy' to use, if you know what i mean.

Also the fact that there aren't like a million ones to choose from. If you go for an android phone there are literally a million different phones you could get. If you go ios the only choice you have is basically how new a phone you can afford.
>>
lol op why are you asking an autism support forum why girls like iphones?

look at the idiot posters above. they're literally just rationalizing. you know normal people can talk to women, ask them these questions, etc... right?

File: macbook-box-hw-spacegray-201504.jpg (24KB, 569x405px) Image search: [Google]
macbook-box-hw-spacegray-201504.jpg
24KB, 569x405px
Hey there /g/.

I wanna ask you folks if anyone of you or your friends tried (I mean really tried) to run Linux (any distribution) on MacBook.

I know there are tons of tutorials and hacks how to do so and how to fix after-installation issues like touchpad ones but they are all about MacBooks 2012. I'm thinking about the new ones, 2015, 2016 (those without TouchBar).

So /g/ give me your experiences with late MacBooks and Linux on them. I have no idea how Thunderbold works under Linux kernel and if the battery life won't be shrinked to 4 hours. In this case 1) fuck Apple and 2) give me good looking and not overpriced alternatives.

> Why?
The reason I'm asking is I like MacBooks look, screen, battery life and hardware. I don't like MacOS and I don't wanna be part of Apple family at all (I mean the pricing politics - I don't wanna be iSheep). Their hardware is pretty much badass.

PS
This is serious question, no hate, no offense. I really think MacBooks are good notebooks (hardware).
24 posts and 1 images submitted.
>>
>I buy Macs for the hardware

Maybe if this were 6 years ago.

Everyone else has caught up hardware-wise in the ultrabook market.
>>
>>57482790

I dont wanna ultrabook. I mean MacBook Pro..

Sorry if this is not clear from my first post.
>>
>>57482724
shit hardware and you don't like gayOS?
get something else then

File: NO_FILE_GIVEN (0B, 0x0pxpx)
NO_FILE_GIVEN
0B, 0x0pxpx
if money wasn't a matter.

choose one:

>thinkpad of your choice
>latest macbook pro

state why
49 posts and 5 images submitted.
>>
>>57482667
W701DS
Because that thing is awesome.

MacBook Pro a shit.
>>
>>57482667
macbook pro every time
>>
>>57482667
>Latest MacBook Pro
Am I allowed to take the 2015 model instead?

Why are elitebooks and latitudes not an option?
What the fuck is wrong with your thread you cunt

Pages: [First page] [Previous page] [6017] [6018] [6019] [6020] [6021] [6022] [6023] [6024] [6025] [6026] [6027] [6028] [6029] [6030] [6031] [6032] [6033] [6034] [6035] [6036] [6037] [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.