[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 - 853. 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: img004.gif (9KB, 640x480px) Image search: [Google]
img004.gif
9KB, 640x480px
Is there an easy way to build an interleaver in an 8 bit microcontroller, or do I have to "pick up" every single bit in a data block and place it into another position?
4 posts and 1 images submitted.
>>
>>61754011
Depends on how many bytes do you want to interleave. CPU cores usually don't allow you to use a quick way to do it unless they have built-in dedicated interleavers using CPU registers.

But if is 2 bytes you can try with an array.
void interleave(byte* input, byte* output)
{
const byte ntable[] = {
0b00000000,
0b00000001,
0b00000100,
0b00000101,
0b00010000,
0b00010001,
0b00010100,
0b00010101,
0b01000000,
0b01000001,
0b01000100,
0b01000101,
0b01010000,
0b01010001,
0b01010100,
0b01010101
};

byte nibble[4];
nibble[0] = input[0] & 0x0f;
nibble[1] = input[0] >> 4;
nibble[2] = input[1] & 0x0f;
nibble[3] = input[1] >> 4;

output[0] = (ntable[nibble[1]] << 1) | ntable[nibble[0]];
output[1] = (ntable[nibble[3]] << 1) | ntable[nibble[2]];
}
>>
>>61754196
Thanks. It's 250 bytes though, so I guess I better start typing shit.
>>
>>61754228
This technique works better on 32-bit microcontrollers though.

File: Wintan.jpg (74KB, 200x200px) Image search: [Google]
Wintan.jpg
74KB, 200x200px
>tfw fresh Windows 7 install with the classic theme enabled
4 posts and 1 images submitted.
>>
>>61753679
so that's how win xp fags look in this generation
>>
>>61753679
>Not installing POSReady
>>
gentoo theme is better

File: Meizu-Pro-7-AnTuTu-2.jpg (142KB, 600x1066px) Image search: [Google]
Meizu-Pro-7-AnTuTu-2.jpg
142KB, 600x1066px
>first Helio X30 benchmark available
>Roughly on par with the Snapdragon 820/821
>Almost twice as fast as the Helio X30
>10nm

What does /g/ think? Will it be a good mid-range performer or is Mediatek going to get fucked by Qualcomm?
It does appear to be a much better performer than any 600 series processor from them so far.
2 posts and 2 images submitted.
>>
File: Meizu-Pro-7-AnTuTu.jpg (101KB, 600x1066px) Image search: [Google]
Meizu-Pro-7-AnTuTu.jpg
101KB, 600x1066px
>>61752891
Seems to be almost 150% as powerful as the Snapdragon 660, if they price it right I think this could be a great processor.

Is anyone even interested or will this thread get ignored because it's not another cheap Intel/AMD/Nvidia/apple/Google/Microsoft bait thread?

File: natanz_sat.png (510KB, 504x494px) Image search: [Google]
natanz_sat.png
510KB, 504x494px
>have the decency to wash my hands after using the bathroom
>soap container is empty
>it's always empty
why hasn't something been invented yet that purges bacteria through use of energy?
2 posts and 1 images submitted.
>>
>>61752603
It exists, but soap is cheaper.

File: E1jOQL2t.png (32KB, 512x512px) Image search: [Google]
E1jOQL2t.png
32KB, 512x512px
>i7 3770 has VT-d
>i7 3770k doesn't
explain this
4 posts and 1 images submitted.
>>
>>61752602
Artificial market segmentation is the best!
>>
New Intel CPUs all have VT-d now

Your trolling is meaningless
>>
>>61752602

k cpus up to devils canyon generally didn't have vt-d and it only became available on every lower end k type cpu as of skylake, see also: >>61752672

>>61752692
>mentions something bad about intel
>must be a troll

fuck off shill

File: images[1].jpg (8KB, 197x255px) Image search: [Google]
images[1].jpg
8KB, 197x255px
I just got robbed and disrespected by a vendor on a dark net market.

How do I find where they live so I can fuck up their pets?
4 posts and 1 images submitted.
>>
>>61752546
Look up union routing
Reevaluate your life choices
>>
>>61752546
you're a liar, I have only ever gotten good experiences and customer service on the dark net market. In fact, those faggot junkies are more helpful than eBay or paypal.
>>
>>61752546
call the polis

File: Screenshot_20170806-012232.png (126KB, 1080x1920px) Image search: [Google]
Screenshot_20170806-012232.png
126KB, 1080x1920px
What can I use 6GB of RAM for?
4 posts and 2 images submitted.
>>
File: Screenshot_10.png (72KB, 527x907px) Image search: [Google]
Screenshot_10.png
72KB, 527x907px
>>61752445
>>
>>61752445
porn
the answer is always porn
>>
>>61752445
you could leave apps open instead of closing them

File: diversityy.jpg (117KB, 700x467px) Image search: [Google]
diversityy.jpg
117KB, 700x467px
Well /G/? How diverse is your team? You don't mean to tell me your hack3r group isn't 40-50% female with at least one african american member right? What kind of things are you guys hacking together with the power of diversity?
3 posts and 1 images submitted.
>>
I'm so diverse my cr3w consisting of 200 south Sudanese black hats is hacking your white ass right from a lifeboat off the coast of libya
>>
Actually a lot of hackers I've seen are blacks, because niggers are very good at anything stealing.

File: CJhu47w.jpg (16KB, 320x320px) Image search: [Google]
CJhu47w.jpg
16KB, 320x320px
Should I use GNOME 3.24 or KDE 5.10?
3 posts and 1 images submitted.
>>
Xfce.
>>
>>61751990
It doesn't really matter if you're going to alter the look and behaviour afterwards.
If you leave the stock settings, choose whatever you think looks better.

File: ff46c4f.png (455KB, 614x518px) Image search: [Google]
ff46c4f.png
455KB, 614x518px
Stop disliking Red Hat right. fucking. now.
4 posts and 2 images submitted.
>>
difficult not to when their logo is a literal fucking fedora
>>
File: opisafaggot.jpg (131KB, 612x557px) Image search: [Google]
opisafaggot.jpg
131KB, 612x557px
>>61751689
>proprietary Linux
>>
>>61751689
I've never disliked red hat.
Dumb frogposter.

File: octo.png (44KB, 223x165px) Image search: [Google]
octo.png
44KB, 223x165px
Is there anywhere in london where I can try different keyboards and switches so I can pick one I like?

Thanks
4 posts and 1 images submitted.
>>
>>61751682
not that i know of.
This is also a reason they sell things called "key testers", which are small boards with one of each switch kind on it.

I think you can snag one on ukkeycaps or mechanicalkeyboards for around 18 pounds
>>
oh ok cool thanks
>>
>>61751682
Just get blues and if you're a dumb babby get browns which are like blues but shit

File: image.jpg (269KB, 800x600px) Image search: [Google]
image.jpg
269KB, 800x600px
How accurate is this /g/?

https://youtu.be/L6aY_f1c0Qk
3 posts and 1 images submitted.
>>
The database, get me into the database! What a legend.
>>
---Initializing brute force algorithm---
And of course, Windows is the hero
Maybe those scrub10rds should've been using macs

File: ffmpeg.png (7KB, 1063x340px) Image search: [Google]
ffmpeg.png
7KB, 1063x340px
(furious laughter)
5 posts and 3 images submitted.
>>
File: ffmpeg.webm (687KB, 1024x755px) Image search: [Google]
ffmpeg.webm
687KB, 1024x755px
>>
>>61751865
>>61752203
Play stupid games, win stupid prizes.
>>
File: ffmpeg.jpg (79KB, 1000x667px) Image search: [Google]
ffmpeg.jpg
79KB, 1000x667px

File: Iridium sponsors.jpg (122KB, 1584x759px) Image search: [Google]
Iridium sponsors.jpg
122KB, 1584x759px
what is safer: woolyss stable builds or iridium?
3 posts and 1 images submitted.
>>
/g/ official browser is PaleMoon
>>
>>61751904
Lol, so funny! ^.^

File: Screenshot_20170805-141705.png (566KB, 1080x1920px) Image search: [Google]
Screenshot_20170805-141705.png
566KB, 1080x1920px
https://www.google.com/amp/s/www.engadget.com/amp/2017/08/05/google-employees-anti-diversity-screed-enrages-coworkers/
3 posts and 1 images submitted.
>>
>>61751367
there are already 2 threads about this you retard
>>
>>61751591
Yes but how about another?

Pages: [First page] [Previous page] [843] [844] [845] [846] [847] [848] [849] [850] [851] [852] [853] [854] [855] [856] [857] [858] [859] [860] [861] [862] [863] [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.