[ / / / / / / / / / / / / / ] [ dir / random / abdl / cyber / femdom / fringe / furry / india / qrb / rule34 ][Options][ watchlist ]

/g/ - Technology

Make /g/ Great Again
You can now write text to your AI-generated image at https://aiproto.com It is currently free to use for Proto members.
Name
Email
Subject
REC

0:00

Comment *
File
Select/drop/paste files here
Password (Randomized for file and post deletion; you may also set your own.)
Archive
* = required field[▶ Show post options & limits]
Confused? See the FAQ.
Expand all images

File (hide): 1411250820728.png (292.67 KB, 450x399, 150:133, rms.png) (h) (u)

[–]

 No.1 >>43 [Watch Thread][Show All Posts]

test
____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2

YES, thank you based hotwheels
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.4 >>5

So whats going to happen to /tech/
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.5 >>9 >>36

>>4
right now it seems to be the de facto technology board on 8chan, I created /g/ just in case, we'll see which one people prefer
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.6

Everyone pile in.
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.9

>>5
We can get admin to merge like what he did with >>>/gentoo/
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.13

Yes I agree, make an announcement and merge. It will provide less confusion for those still migrating.
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.36 >>38

>>5
Just merge the two.

/a/ did it. So can /g/.
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.38 >>65

>>36
I can't do that, it's up to the admin.
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.43

File (hide): 1411340524615.jpg (144.1 KB, 680x933, 680:933, the happening.jpg) (h) (u)

>>1 (OP)
Holy shit. It's happening.
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.49

>hate halfchan
>pretty much copy halfchan's /g/
We need our own identity
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.65 >>84

>>38
Ask him to merge the two and rename /tech/ /g/, let the tech admin be the admin of main admin as his is bigger
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.67

How bout keep /g/ about thinkpads and headphones and ricing WMs, and let /tech/ be about real tech.
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.72

Wait. When did this become about technology?
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.84

>>65
This. /meta/ has a page for it now:

https://8chan.co/meta/res/6521.html
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.272

File (hide): 1413129374170.png (128.05 KB, 500x243, 500:243, tumblr_lt8f62SZLa1qcarcko1….png) (h) (u)

Free software. Not free as in tax-funded but free as in a free VD.

Checkmate, atheists!
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2503 >>4283

#include <linux/init.h>
#include <asm/uaccess.h>
#include <net/checksum.h>
#include <net/xfrm.h>
#include <net/inet_common.h>
#include <net/ip_fib.h>

/*
* Build xmit assembly blocks
*/

struct icmp_bxm {
struct sk_buff *skb;
int offset;
int data_len;

struct {
struct icmphdr icmph;
__be32 times[3];
} data;
int head_len;
struct ip_options_data replyopts;
};

/* An array of errno for error messages from dest unreach. */
/* RFC 1122: 3.2.2.1 States that NET_UNREACH, HOST_UNREACH and SR_FAILED MUST be considered 'transient errs'. */

const struct icmp_err icmp_err_convert[] = {
{
.errno = ENETUNREACH, /* ICMP_NET_UNREACH */
.fatal = 0,
},
{
.errno = EHOSTUNREACH, /* ICMP_HOST_UNREACH */
.fatal = 0,
},
{
.errno = ENOPROTOOPT /* ICMP_PROT_UNREACH */,
.fatal = 1,
},
{
.errno = ECONNREFUSED, /* ICMP_PORT_UNREACH */
.fatal = 1,
},
{
.errno = EMSGSIZE, /* ICMP_FRAG_NEEDED */
.fatal = 0,
},
};
EXPORT_SYMBOL(icmp_err_convert);

/*
* ICMP control array. This specifies what to do with each ICMP.
*/

struct icmp_control {
bool (*handler)(struct sk_buff *skb);
short error; /* This ICMP is classed as an error message */
};

static const struct icmp_control icmp_pointers[NR_ICMP_TYPES+1];

/*
* The ICMP socket(s). This is the most convenient way to flow control
* our ICMP output as well as maintain a clean interface throughout
* all layers. All Socketless IP sends will soon be gone.
*
* On SMP we have one ICMP socket per-cpu.
*/
static struct sock *icmp_sk(struct net *net)
{
return *this_cpu_ptr(net->ipv4.icmp_sk);
}

static inline struct sock *icmp_xmit_lock(struct net *net)
{
struct sock *sk;

local_bh_disable();

sk = icmp_sk(net);

if (unlikely(!spin_trylock(&sk->sk_lock.slock))) {
/* This can happen if the output path signals a
* dst_link_failure() for an outgoing ICMP packet.
*/
local_bh_enable();
return NULL;
}
return sk;
}

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2567

Spoiler

Italics

Bold

Underline

Strike

Heading

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2568

_/_/ _/
_/ _/_/_/ _/_/_/ _/_/_/ _/_/ _/_/_/_/
_/_/_/_/ _/ _/ _/ _/ _/ _/ _/ _/ _/
_/ _/ _/ _/ _/ _/ _/ _/ _/ _/
_/ _/_/_/ _/_/_/ _/_/_/ _/_/ _/_/
_/ _/
_/_/ _/_/

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2570

Here are a few notes about some of the fonts provided with FIGlet. You can get many other font from the Web site
http://www.figlet.org/ This location should also contain the latest version of FIGlet and other related utilities.

The font standard is the basic FIGlet font, used when no other font is specified. (This default can be changed when FIGlet is compiled on your system.) The controlfiles 8859-2, 8859-3, 8859-4, and 8859-9 are provided for interpreting those character sets, also known as ISO Latin-2 through Latin-5 respectively. The character set 8859-1 (ISO Latin-1) is FIGlet's default and requires no special controlfile.

Closely related are the fonts slant, shadow, small, smslant (both small and slanted), smshadow, (both small and shadowed), and big. These fonts support only Latin-1, except that big supports Greek FIGcharacters as well; the controlfiles frango (for Greek text written in Latin characters, so-called ''frangovlakhika''), and 8859-7 (for mixed Latin/Greek text) are provided.

The ivrit font is a right-to-left font including both Latin and Hebrew FIGcharacters; the Latin characters are those of the standard font. The available controlfiles are ilhebrew, which maps the letters you get by typing on a U.S. keyboard as if it were a Hebrew keyboard; ushebrew, which makes a reasonable mapping from Latin letters to Hebrew ones; and 8859-8, which supports mixed Latin/Hebrew text. Warning: FIGlet doesn't support bidirectional text, so everything will come out right-to-left, even Latin letters.

The fonts terminal, digital, and bubble output the input character with some decoration around it (or no decoration, in the case of terminal). The characters coded 128 to 159, which have varying interpretations, are output as-is. You can use the appropriate controlfiles to process Latin-2, Latin-3, or Latin-4 (but not Latin-5) text, provided your output device has screen or printer fonts that are appropriate for these character sets.

Two script fonts are available: script, which is larger than standard, and smscript, which is smaller.

The font lean is made up solely of '/' and '_' sub-characters; block is a straight (non-leaning) version of it.

The font mini is very small, and especially suitable for e-mail signatures.

The font banner looks like the output of the banner program; it is a capitals and small capitals font that doesn't support the ISO Latin-1 extensions to plain ASCII. It does, however, support the Japanese katakana syllabary; the controlfile uskata maps the upper-case and lower-case Latin letters into the 48 basic katakana characters, and the controlfile jis0201 handles JIS 0201X (JIS-Roman) mixed Latin and katakana text. Furthermore, the banner font also supports Cyrillic (Russian) FIGcharacters; the controlfile 8859-5 supports mixed Latin and Cyrillic text, the controlfile koi8r supports the popular KOI8-R mapping of mixed text, and the controlfile moscow supports a sensible mapping from Latin to Cyrillic, compatible with the moscow font (not supplied).

The fonts mnemonic and safemnem support the mnemonic character set documented in RFC 1345. They implement a large subset of Unicode (over 1800 characters) very crudely, using ASCII-based mnemonic sequences, and are good for getting a quick look at UTF-8 unicode files, using the controlfile utf8.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2571

qwertyuiop
QWERTYUIOP
asdfghjkl;
ASDFGHJKL:
zxcvbnm,./
ZXCVBNM<>?

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2572

What the fuck did you just fucking say about me, you little bitch? I’ll have you know I graduated top of my class in the Navy Seals, and I’ve been involved in numerous secret raids on Al-Quaeda, and I have over 300 confirmed kills. I am trained in gorilla warfare and I’m the top sniper in the entire US armed forces. You are nothing to me but just another target. I will wipe you the fuck out with precision the likes of which has never been seen before on this Earth, mark my fucking words. You think you can get away with saying that shit to me over the Internet? Think again, fucker. As we speak I am contacting my secret network of spies across the USA and your IP is being traced right now so you better prepare for the storm, maggot. The storm that wipes out the pathetic little thing you call your life. You’re fucking dead, kid. I can be anywhere, anytime, and I can kill you in over seven hundred ways, and that’s just with my bare hands. Not only am I extensively trained in unarmed combat, but I have access to the entire arsenal of the United States Marine Corps and I will use it to its full extent to wipe your miserable ass off the face of the continent, you little shit. If only you could have known what unholy retribution your little “clever” comment was about to bring down upon you, maybe you would have held your fucking tongue. But you couldn’t, you didn’t, and now you’re paying the price, you goddamn idiot. I will shit fury all over you and you will drown in it. You’re fucking dead, kiddo.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2575

*⁣*Spoiler*⁣* -> Spoiler

'⁣'Italics'⁣' -> Italics

'⁣'⁣'Bold'⁣'⁣' -> Bold

_⁣_Underline_⁣_ -> Underline

~⁣~Strike~⁣~ -> Strike

=⁣=Heading=⁣= -> ==Heading==

[⁣c⁣o⁣d⁣e⁣]Code[⁣/⁣c⁣o⁣d⁣e⁣] ->

Code

[⁣a⁣a⁣]Art[⁣/⁣a⁣a⁣] -> Art

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2630 >>2631 >>2632

Install Ututo

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2631

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2632

>>2630

Install

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2677

1-------10--------20--------30--------40--------50--------60--------70--------80

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2700


              「o`':.‐ .._              _.. ‐::''´  ̄:`i
              |: : : :.::::::::`::‐.._       _.. ‐ ''´ : : : : : : : .::::::|
             |: : : : :__:: --―`――‐‐'::_ : : : : : : : : : : :...:::::::|
              _.':‐ '´            ` . : : : : : : :.::::::::::,!
 |、         /                   \ : : : : : :::::::/
 ヾ、._   ___,,.イ。                    \ : : : ::::〈
       ̄  /                    、     ヽ : ::::::::|
        ./           .!    i      .l .l     ',.::::::::::!
        /|   l   .l  | ,|    |       l l!     ',.::::::::|
      .//!  .| !  |  |/|    |ト、  | .!  |.|l |  l   ',:::::::|
        .'/ |   | |  |  ! |     .|! l|ヽ.|゙! |.  !!| l  |   .l、::::|゙:、
      l/ |  .l|| .! .__ハ、|. li    || | ゙| ゙!| |_ | | | .l   トヾj:::::゙:.、
       |!  .l  || lハ l「_ニト!、 l|、  ,!|_..l-‐ニ丁| | | | .!    |::::`\_ :\
       l   '.  || | ゙、〈´|。i゙! .l ゙.、| イi。il!:|.》|l   | l. |l    |! : : : : : : : ゙::...._
       |     '. || l   ヘ!弋ソ     ゙l 弋シ'/'|   .! l ,!|l    ゙、、::、- ..__: : : `::‐- .._ --
       l     ゙.|/   |///    __ ...... ////。 ,イ.' '   ||    ゙.、、\    ̄ ̄    /
          _.. ''//   ゝ、   「     .|/, ' / .l /   .!l、_   ヘ\ `         ./
   _. - '' _./イ    ,i/|`! ‐ ._`ー  '_//   //_....._ ヘ.  \.  | '.         /
   '.    ̄  /。  _,.イl ゙ | ゙! _..`T ´〈 〈   ̄/'    ` 、゙.、  ゛. |  l  ___,,. -‐'
    '.      | /´  ゙|\゙y '´/イ_.. '´\、.i'/ _ ___   .|._\-‐'.|''´ ̄
     '.    ゙、|    / /^ゝ「ヽ.   ,.×!´ -`i _l_>'i'┤_ _ _ _ ___
     ゙.      l   ,. ' ,.l「_プi「`》. ヽ/ :::::|     j´ `⌒´゙ヽ           `'' .._
       ゙、 _ ___./  / .:´.:l∠゙V'-''´:::::::::::::l`ー‐"|  |  :l  ゙!             `'' .._
          __| ./ : :..:.: : : : : : :::::__...-‐ノ...:‐┬ト  .j   |   l                `'' .._
    ,. ' ̄  ̄ ./ .7 : : : : : : : : :( ̄   __.:.:.__:.l ゙ ./__... '-‐'"               _ -‐ "´
  , '        ヽ,_,i : : : : : : : : : : :`'ー ''´:::: ̄::/ `¨´ `'' .._           _. -‐ ''"´
.            .| .|: :::::::::::::::::::::::::::::::::::::::::::::::..:/`'' - ._    `'' .._ _. -‐ ''"´
.._           / |: :::::::::::::::::::::::::::::::::::::::::::.: :/     `'' - ._   `

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2701

__,,,,、 .,、
            /'゙´,_/'″  . `\
          : ./   i./ ,,..、    ヽ
         . /    /. l, ,!     `,
           .|  .,..‐.、│          .|
           (´゛ ,/ llヽ            |
            ヽ -./ ., lliヽ       .|
             /'",i" ゙;、 l'ii,''く     .ヽ
         / ...│  ゙l,  l゙゙t, ''ii_    :.!
        : /.._ /    ヽ \\.`゙~''''''"./
        .|-゙ノ/   : ゝ .、 ` .`''←┬゛
          l゙ /.r   ゛ .゙ヒ, .ヽ,   ゙̄|
       . | ./ l      ”'、 .゙ゝ........ん
       l  /     ヽ .`' `、、  .,i゛
       .l|  !    ''''v,    ゙''ー .l、
       |l゙ .il、  .l  .ヽ  .¬---イ
      .ll゙, ./    !            ,!
      .!!...!!   ,,゙''''ー       .|
      l.",!    .リ         |
      l":|    .〜'''      ,. │
      l; :!    .|'"    ...ノ,゙./ │
      l: l「    !    . ゙゙̄ /  !
      .| .|    !     ,i│  |
      :! .l.    }    ,i'./    |
      :! .|    :|    . /     .|
      :! |    ;!   "      .|
      :! !    │        │
      :!:|               ,! i ,!
      :! ,    .l,      / .l゙ !
      :! |    , l.     | .|  :,
    : v'" .!    |'i .ヽ,    ./ :!  .ヽ
 _, _/  /     .l  ゛ ._/ :l゙    .`゙"

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.2702

       i´\ __ /`i.
       |, ´:::::::::::::::ゝ 、|
      /:::::::::::;、::::::::::::::::::::\.
 .   //, '/レ'V ヽ}ヽハ::::::、:::ヽ.
    〃 {_{ノ    `ヽリ| l:::i:::::i|
    レ!小l●    ● 从::::}、i|
  叨 ヽ|l⊃ 、_,、_, ⊂⊃::ノノ::|.
 /⌒ヽ. |ヘ   ゝ._)   ノ,/⌒i:!
 \   |::::l>,、 __, イァ/  /::|
   \ |::::| ゝ V ノ. 、 /:::::!.
     i.|ハ:|  :==:   ヽ/::ルヾ

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.4283

>>2503

convert to python

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.6454

Oh hey. This is pretty old.

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.10032

                   -―…‥─-   /////////}
        _____/__          ─-ミ ///////
         |//////////////⌒ ̄ ̄`ヽ        \////'
       V //////////                  ∨//
         ∨//////〃              、       ∨
        ∨/////  .:  .::     /    ハ  \  ‘
        i::∨/// .::   .::  /   /   , /   ;   ,  ',
          i::::::}/ /  .::   /   /    //   :|    |   :,
        i:::/ // /  :::  / ..: '    //   _j_ |   i
        / /:::/ /  ::::  ..::/斗─ //     _|_ /゙リ   八
     ⌒7¨´.:::::/ /|   :|:: i/j/ノ|_//    7⌒メ /    ノ!`ヽ
        / .:::::ノイ:::|   :|:: |  ,≠"i⌒ヽ     i:ノ! ノノ´ /ノ
     〃 ::::::::::::|::::|   :| | 〃 _ノ:j        :ソ i .イ
     l  :::: :::::::| 八  :|ヘ{ 乂::ソ         :::::: | .:八   
     |i  ::| ::::::|人 \ {__  :::::::::        `   八jハ!
     |i  |  :::::::::i ̄\iイ`        , ,   / .::ノ bump
.     八 八  :::::::::|\/: : \ > .     ,. イ  /
.      \ \{\::|/\: : : :\  / >-< )ノ}/ `:,
           /: : : : : \: : : :\\: /<〉     i
          〃: : : : \: : : }___, /  廴__::\ /: :  {
          {: : : : : : : : : : :

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.10044

test

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.

 No.10828

File (hide): 3c725829e28dca6⋯.png (601.07 KB, 3000x3442, 1500:1721, starlight_glimmer_yells_by….png) (h) (u)

Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.



[Return][Go to top][Catalog][Screencap][Nerve Center][Random][Update] ( Scroll to new posts) ( Auto) 3
34 replies | 3 images | Page ???
[Post a Reply]

[ / / / / / / / / / / / / / ] [ dir / random / abdl / cyber / femdom / fringe / furry / india / qrb / rule34 ][ watchlist ]