NOTICE: This channel is no longer actively logged.
[00:03:19] *** Miller` has joined #bittorrent [00:03:31] *** klapaucjusz has quit IRC [00:16:28] <K`Tetch_> anyone help me with some quick answers, really don't want to have to go wiresharking etc [00:16:32] <K`Tetch_> brb phone [00:21:23] <The_8472> if you had asked your question this might have been the answer [00:30:35] *** goussx_ has joined #bittorrent [00:46:44] *** goussx has quit IRC [00:46:44] *** goussx_ is now known as goussx [00:49:19] *** andar2 has quit IRC [00:55:22] *** Andrius has quit IRC [00:58:56] *** Miller` has quit IRC [00:58:56] *** jnpplf has quit IRC [00:58:58] *** cgreco has quit IRC [00:58:58] *** void^ has quit IRC [00:58:58] *** alienvenom has quit IRC [00:59:57] *** void^ has joined #bittorrent [01:00:47] *** Miller` has joined #bittorrent [01:00:47] *** jnpplf has joined #bittorrent [01:00:47] *** alienvenom has joined #bittorrent [01:00:47] *** cgreco has joined #bittorrent [01:02:17] *** stalled has quit IRC [01:02:53] *** stalled has joined #bittorrent [01:19:53] *** goussx has quit IRC [01:23:34] *** chelz has joined #bittorrent [01:33:09] <K`Tetch_> The_8472 - sorry, wife was calling to tell me she was turning onto our road with dinner [01:33:23] <K`Tetch_> and to come out to help empty the car [01:33:45] <K`Tetch_> anyway, question is, roughtly how much data is sent+recieved in a typical announce? [01:37:15] *** mxs has quit IRC [01:37:38] <The_8472> http headers (GET) + ~ 40 bytes bencoded metadata + 6 * 50 bytes peer lists [01:37:41] *** mxs has joined #bittorrent [01:38:34] <DeHackEd> yeah the payload is actually quite small, and most clients do small HTTP GET requests (no need for garbage like accept-*) [01:40:04] <kjetilho> accept deflate can be useful :) [01:40:19] <DeHackEd> compact mode pretty much killed that personally [01:40:32] <K`Tetch_> so roughly what, 5kbytes? [01:40:43] <K`Tetch_> each way? [01:42:51] <DeHackEd> that much? I'd say less. even if you have an HTTP server like apache that inflates the headers a thousand ways. [01:43:30] <Switeck> Sounds more like 0.5 KB [01:43:37] <The_8472> it should fit into 1-2 packets. add 3 packets tcp handshake and 2 for teardown. [01:44:07] <Switeck> none of those packets are anywhere near max size MTU of 1500 bytes? [01:45:16] <kjetilho> ideally: SYN, SYN ACK, ACK + DATA, -- then the reply, which may require 2-3 packets, then ACK FIN, ACK [01:45:21] <kjetilho> (first DATA is the GET request, which should fit in the packet) [01:46:10] <kjetilho> in practice I don't think you'll be able to combine the ACK of DATA with FIN, though. [01:46:20] <The_8472> could be more if data isn't piggybacked on the ack for example. and i think tcp teardown can cause additional packets in some stacks too [01:47:26] *** Mazon has quit IRC [01:48:04] *** Mazon has joined #BitTorrent [01:49:11] <Switeck> 5 ton mail truck to deliver a postcard? [01:49:18] <The_8472> hence the udp tracker protocol [01:49:48] <The_8472> erdgeist has been preaching about that ^^ [01:50:10] <The_8472> but hey, DHT announces are far worse [01:51:12] <The_8472> they're more like using a presidential convoy to deliver a postcard [01:51:12] <The_8472> but then again there is no central server that could get overloaded [01:52:16] <Switeck> that won't get sympathy from me [01:52:16] <kjetilho> how does the UDP announce protocol handle packet loss? [01:52:16] <The_8472> that's up to implementations i think [01:53:11] <The_8472> but you can implement it in a stateless fashion on the server side, so the client is free to just resend requests and do some exponential backoff or whatever [01:53:54] <kjetilho> so a client can use a partial answer? [01:54:34] <kjetilho> with a saturated downlink, a client can be asking for peer lists a lot more often than every five minutes... [01:55:06] <The_8472> http://xbtt.sourceforge.net/udp_tracker_protocol.html [01:55:16] <kjetilho> most of the time using UDP instead of TCP just causes more complexity and a lot worse worst case [01:56:41] <The_8472> you basically need 4 packets for an announce. the first 2 packets serve as handshake and can be recycled within a small timeframe to do multiple announce or scrape packet exchanges [01:59:09] <kjetilho> the spec doesn't say how many peers you can ask for [01:59:27] <kjetilho> seems like multipacket responses aren't supported? [01:59:27] *** hlindhe_ has quit IRC [01:59:41] <kjetilho> how does it handle packet fragmentation or small MTU? [02:00:07] <The_8472> packet fragmentation is handled at the IP level [02:00:18] <The_8472> so either you get all fragments or you don't [02:00:28] <The_8472> and small MTUs don't exist [02:00:41] <kjetilho> hah [02:01:03] * kjetilho is using a small MTU just now :/ [02:01:10] <kjetilho> (VPN tunnel) [02:01:31] <The_8472> well, still more than 1200 bytes, no? [02:01:46] <kjetilho> yes. where does 1200 come from? [02:01:48] *** hlindhe_ has joined #bittorrent [02:02:02] <kjetilho> minimum MTU is 500 and something. [02:02:13] <Switeck> tracker hands out up to 200 ips per torrent, right? [02:02:32] <The_8472> nah, more like 50 or so [02:02:43] <kjetilho> well, it's at least six bytes per peer [02:02:46] <Switeck> I'll say again...up to [02:02:55] *** GTHK has quit IRC [02:02:58] <kjetilho> assuming IPv4 [02:03:01] <Switeck> meaning even if most limit themselves to 50, there are some that do 200. [02:03:02] <The_8472> well, depends on the implementation [02:03:22] <The_8472> but yes, they can if they want to [02:03:24] <Switeck> 200 peers, packed ip format+port = 6 bytes per ip x 200 = 1200 bytes [02:03:27] <The_8472> not that there's any need [02:03:29] * kjetilho really doesn't see the benefit over just using HTTP/TCP [02:04:06] <kjetilho> HTTP overhead isn't an issue at all. [02:04:11] <K`Tetch_> 1kb is a good average, and will do for what I had in mind [02:04:20] <The_8472> it's not the HTTP part, it's handling TCP [02:04:32] <Switeck> mix in any IPv6 addresses, and all bets are off XD [02:04:33] <kjetilho> TCP is *really* not an issue [02:04:44] <The_8472> apparently it is. [02:05:02] <The_8472> if you're handling about 10k requests per second [02:05:06] <kjetilho> perhaps if you're running on a Pentium 60 with 3c509 NIC [02:05:21] <TheSHAD0W> That's a lot of peers. [02:05:25] *** GTHK has joined #bittorrent [02:05:39] <TheSHAD0W> 10 million peers on that tracker, maybe? [02:05:53] <kjetilho> just choosing the random peers to report back will consume a lot more processing than TCP does [02:05:55] <Switeck> TCP probably becomes an issue even before 1k requests in progress at once. [02:06:19] <The_8472> well, for (ex-)TPB and similar public trackers TCP handlign is a serious issue. especially the socket management in the kernel, TIME_WAIT stuff and all [02:06:23] <TheSHAD0W> http://torrentfreak.com/private-bittorrent-trackers-commit-suicide-with-rising-costs-091214/ [02:07:01] <K`Tetch_> yeah, I'm working on some extensions to that, TheSHAD0W [02:07:15] <kjetilho> you get an issue with socket limitations when you have frontends talking to the backend -- it limits you to 64 Ki connections within 2 minutes by default [02:07:18] <kjetilho> (TCP tuples) [02:07:33] <kjetilho> but it's a well known problem with well known solutions [02:08:02] <K`Tetch_> I actually got banned from a private tracker community forum yesterday, for poiting out, for instance, that the reason they find publics so slow, is having so many torrents active means bad settings, and that ratio-cheating doesn't really affect anything [02:09:23] <The_8472> publics are slow because everyone is hit&running on public trackers so they can get a bigger pe... ratio on private trackers [02:10:12] <K`Tetch_> I think it's also got something to do with people having 150+ torrents active [02:10:22] <The_8472> that's idiotic [02:10:51] <The_8472> i have 853 torrents in my client, 852 of those are queued [02:11:46] *** GTHKn has joined #bittorrent [02:13:26] *** hlindhe_ has quit IRC [02:13:26] *** chelz has quit IRC [02:13:26] *** Switeck has quit IRC [02:13:26] *** init0_ has quit IRC [02:13:26] *** burris has quit IRC [02:13:27] *** GTHK has quit IRC [02:13:27] *** void^ has quit IRC [02:13:28] *** hydri_ has quit IRC [02:13:28] *** charles has quit IRC [02:13:29] *** rrr_ has quit IRC [02:13:29] *** kwinz2 has quit IRC [02:13:29] *** K`Tetch_ has quit IRC [02:13:30] *** andar has quit IRC [02:13:30] *** softwareelves has quit IRC [02:13:30] *** HandheldPenguin` has quit IRC [02:13:34] <kjetilho> The_8472: interesting -- how will the single torrent to run be chosen? (assuming they are all 100% complete) [02:13:48] <The_8472> based on scrapes [02:13:57] <kjetilho> pick the one with no seeds and most peers? [02:14:16] <The_8472> various rules are available [02:14:44] <The_8472> i'm currently using one based on a weighted difference between seeds and peers [02:14:55] <The_8472> so yeah, basically more peers, fewer seeds [02:16:00] *** void^ has joined #bittorrent [02:19:42] *** K`Tetch has joined #bittorrent [02:26:05] *** chelz has joined #bittorrent [02:31:40] *** Switeck has joined #bittorrent [02:31:40] *** init0_ has joined #bittorrent [02:31:40] *** burris has joined #bittorrent [02:32:02] *** hlindhe_ has joined #bittorrent [02:38:27] *** oneforall has joined #bittorrent [02:39:39] <oneforall> where is the souce for linux? at the download page all I see is win,Language and mac [02:39:56] *** kwinz2 has joined #bittorrent [02:39:56] *** K`Tetch_ has joined #bittorrent [02:39:56] *** rrr_ has joined #bittorrent [02:39:56] *** hydri_ has joined #bittorrent [02:39:56] *** charles has joined #bittorrent [02:39:56] *** HandheldPenguin` has joined #bittorrent [02:39:56] *** softwareelves has joined #bittorrent [02:39:56] *** andar has joined #bittorrent [02:40:36] <chelz> oneforall: the current official BitTorrent client is based off of uTorrent which is not open source [02:41:03] <chelz> linux users are advised to use Wine or choose another client [02:41:45] <Switeck> and by "wine", they mean latest DEV version of wine [02:42:20] <oneforall> ouch first i herd of thios :( [02:42:36] *** stalled has quit IRC [02:44:10] *** stalled has joined #bittorrent [02:44:46] <chelz> eh i used it fine for a while with v1.1 or v1.0.1 [02:45:02] <chelz> it would get really unstable with over 100 torrents so i switched to rtorrent [02:45:40] <oneforall> last one I did was 5.2.2 [02:47:26] <oneforall> weird all i see that one under is mac . [02:47:27] <Switeck> uTorrent with wine dev might be fine with a lot more than 100 torrents. [02:48:16] <chelz> i prefer using OSS when i can so it's probably for the best that i finally gave it up [02:48:48] *** joechua has joined #bittorrent [02:48:56] *** joechua has left #bittorrent [02:49:18] *** hydri_ has quit IRC [02:49:18] *** charles has quit IRC [02:49:18] *** rrr_ has quit IRC [02:49:19] *** andar has quit IRC [02:49:19] *** K`Tetch_ has quit IRC [02:49:19] *** kwinz2 has quit IRC [02:49:19] *** softwareelves has quit IRC [02:49:19] *** HandheldPenguin` has quit IRC [02:50:12] *** kwinz2 has joined #bittorrent [02:50:12] *** K`Tetch_ has joined #bittorrent [02:50:12] *** rrr_ has joined #bittorrent [02:50:12] *** hydri_ has joined #bittorrent [02:50:12] *** charles has joined #bittorrent [02:50:12] *** HandheldPenguin` has joined #bittorrent [02:50:12] *** softwareelves has joined #bittorrent [02:50:12] *** andar has joined #bittorrent [02:50:21] *** chelz has quit IRC [02:51:07] *** chelz has joined #bittorrent [02:51:08] *** K`Tetch_ has quit IRC [02:52:57] *** stalled has quit IRC [02:55:32] <DeHackEd> if you want "official", go find the old python client. Realistically pick something else. BitTornado, Vuze, rTorrent... [02:55:52] *** ajaya has quit IRC [02:55:56] *** hydri_ has quit IRC [02:55:56] *** charles has quit IRC [02:55:56] *** rrr_ has quit IRC [02:55:57] *** andar has quit IRC [02:55:57] *** kwinz2 has quit IRC [02:55:57] *** softwareelves has quit IRC [02:55:57] *** HandheldPenguin` has quit IRC [02:56:08] <chelz> transmission seems to be what most linux users use these days [02:56:29] <DeHackEd> oh yuck [02:56:51] <chelz> haha [02:57:23] <chelz> well from a user coming from uTorrent, transmission isn't too much of a change [02:57:51] <DeHackEd> I have special needs. Notably the ability to ssh in and mess with things. So it's a command-line client for me. [02:59:03] <chelz> yeah same [02:59:36] *** stalled has joined #bittorrent [02:59:36] *** kwinz2 has joined #bittorrent [02:59:36] *** rrr_ has joined #bittorrent [02:59:36] *** hydri_ has joined #bittorrent [02:59:36] *** charles has joined #bittorrent [02:59:36] *** HandheldPenguin` has joined #bittorrent [02:59:36] *** softwareelves has joined #bittorrent [02:59:36] *** andar has joined #bittorrent [03:02:36] *** GTHK has joined #bittorrent [03:06:55] *** hydri_ has quit IRC [03:06:55] *** charles has quit IRC [03:06:55] *** stalled has quit IRC [03:06:55] *** rrr_ has quit IRC [03:06:55] *** andar has quit IRC [03:06:55] *** kwinz2 has quit IRC [03:06:55] *** softwareelves has quit IRC [03:06:56] *** HandheldPenguin` has quit IRC [03:07:41] *** void^_ has joined #bittorrent [03:07:52] *** andar has joined #bittorrent [03:08:11] *** andar has quit IRC [03:08:17] *** andar has joined #bittorrent [03:08:24] *** void^ has quit IRC [03:08:24] *** GTHKn has quit IRC [03:08:25] *** jnpplf has quit IRC [03:08:25] *** cgreco has quit IRC [03:08:26] *** alienvenom has quit IRC [03:08:26] *** Miller` has quit IRC [03:08:43] *** alienvenom has joined #bittorrent [03:08:49] *** GTHKn has joined #bittorrent [03:08:49] *** Miller` has joined #bittorrent [03:08:49] *** jnpplf has joined #bittorrent [03:08:49] *** cgreco has joined #bittorrent [03:09:08] *** swinokur has quit IRC [03:10:10] *** swinokur has joined #bittorrent [03:11:40] *** charles has joined #bittorrent [03:12:33] *** stalled has joined #bittorrent [03:12:33] *** kwinz2 has joined #bittorrent [03:12:33] *** rrr_ has joined #bittorrent [03:12:33] *** hydri_ has joined #bittorrent [03:12:33] *** HandheldPenguin` has joined #bittorrent [03:12:33] *** softwareelves has joined #bittorrent [03:22:19] *** GTHKn has quit IRC [03:22:19] *** jnpplf has quit IRC [03:22:19] *** cgreco has quit IRC [03:22:20] *** Miller` has quit IRC [03:23:56] *** hydri_ has quit IRC [03:23:56] *** stalled has quit IRC [03:23:56] *** rrr_ has quit IRC [03:23:56] *** kwinz2 has quit IRC [03:23:56] *** softwareelves has quit IRC [03:23:57] *** HandheldPenguin` has quit IRC [03:24:08] *** GTHKn has joined #bittorrent [03:24:08] *** Miller` has joined #bittorrent [03:24:08] *** jnpplf has joined #bittorrent [03:24:08] *** cgreco has joined #bittorrent [03:24:10] *** GTHKn has quit IRC [03:25:18] *** goussx has joined #bittorrent [03:26:35] *** stalled has joined #bittorrent [03:26:35] *** kwinz2 has joined #bittorrent [03:26:35] *** rrr_ has joined #bittorrent [03:26:35] *** hydri_ has joined #bittorrent [03:26:35] *** HandheldPenguin` has joined #bittorrent [03:26:35] *** softwareelves has joined #bittorrent [03:33:16] *** hydri_ has quit IRC [03:33:16] *** stalled has quit IRC [03:33:17] *** rrr_ has quit IRC [03:33:17] *** kwinz2 has quit IRC [03:33:17] *** softwareelves has quit IRC [03:33:17] *** HandheldPenguin` has quit IRC [03:36:05] *** hydri_ has joined #bittorrent [03:37:02] *** stalled has joined #bittorrent [03:37:02] *** kwinz2 has joined #bittorrent [03:37:02] *** rrr_ has joined #bittorrent [03:37:02] *** HandheldPenguin` has joined #bittorrent [03:37:02] *** softwareelves has joined #bittorrent [03:38:10] *** rrr_ has quit IRC [03:46:19] *** stalled has quit IRC [03:49:02] *** kwinz2 has quit IRC [03:49:02] *** softwareelves has quit IRC [03:49:02] *** HandheldPenguin` has quit IRC [03:49:03] *** alienvenom has quit IRC [03:49:03] *** GTHK has quit IRC [03:49:03] *** Switeck has quit IRC [03:49:03] *** init0_ has quit IRC [03:49:03] *** burris has quit IRC [03:50:33] *** kwinz2 has joined #bittorrent [03:50:33] *** HandheldPenguin` has joined #bittorrent [03:50:33] *** softwareelves has joined #bittorrent [03:53:05] *** stalled has joined #bittorrent [03:53:21] *** rrr_ has joined #bittorrent [03:54:28] *** alienvenom has joined #bittorrent [03:54:28] *** GTHK has joined #bittorrent [03:54:28] *** Switeck has joined #bittorrent [03:54:28] *** init0_ has joined #bittorrent [03:54:28] *** burris has joined #bittorrent [03:56:40] *** bt42 has joined #BitTorrent [03:58:51] *** mxs has quit IRC [03:58:52] *** bittwist has quit IRC [03:58:52] *** maswan has quit IRC [03:58:53] *** deltab has quit IRC [03:58:53] *** lioux has quit IRC [03:58:53] *** tris has quit IRC [03:58:59] *** lioux has joined #bittorrent [04:00:20] *** goussx has quit IRC [04:00:20] *** jnpplf has quit IRC [04:00:21] *** cgreco has quit IRC [04:00:21] *** Miller` has quit IRC [04:00:33] *** lioux has quit IRC [04:00:38] *** mxs has joined #bittorrent [04:00:38] *** bittwist has joined #bittorrent [04:00:38] *** lioux has joined #bittorrent [04:00:38] *** deltab has joined #bittorrent [04:01:11] *** goussx has joined #bittorrent [04:01:11] *** Miller` has joined #bittorrent [04:01:11] *** jnpplf has joined #bittorrent [04:01:11] *** cgreco has joined #bittorrent [04:01:17] *** lioux_ has joined #bittorrent [04:01:34] *** lioux has quit IRC [04:01:49] *** andar has quit IRC [04:01:56] *** maswan has joined #bittorrent [04:02:21] *** jnpplf has quit IRC [04:02:24] *** jnpplf has joined #bittorrent [04:02:46] *** andar has joined #bittorrent [04:03:17] *** bittwist has quit IRC [04:05:13] *** tris has joined #bittorrent [04:05:46] *** Gottaname has quit IRC [04:06:27] *** stalled has quit IRC [04:07:54] *** stalled has joined #bittorrent [04:07:57] *** The_8472 has quit IRC [04:08:18] *** wadim has joined #bittorrent [04:08:23] *** wadim is now known as The_8472 [04:08:49] *** Gottaname has joined #bittorrent [04:15:43] *** liouxNOT has joined #bittorrent [04:18:56] *** jnpplf has quit IRC [04:18:57] *** cgreco has quit IRC [04:18:58] *** Miller` has quit IRC [04:18:58] *** goussx has quit IRC [04:21:02] *** jnpplf has joined #bittorrent [04:21:02] *** goussx has joined #bittorrent [04:21:02] *** Miller` has joined #bittorrent [04:21:02] *** cgreco has joined #bittorrent [04:21:03] *** jnpplf has quit IRC [04:22:00] *** jnpplf has joined #bittorrent [04:25:23] *** lioux_ has quit IRC [04:28:58] *** goussx_ has joined #bittorrent [04:29:16] *** GTHK has quit IRC [04:29:43] *** goussx has quit IRC [04:29:43] *** goussx_ is now known as goussx [04:31:07] *** bittwist has joined #BitTorrent [04:41:49] *** wadim has joined #bittorrent [04:47:21] *** rrr_ has quit IRC [04:47:21] *** kwinz2 has quit IRC [04:47:21] *** softwareelves has quit IRC [04:47:22] *** HandheldPenguin` has quit IRC [04:48:33] *** bt42 has quit IRC [04:50:32] *** BuRnCycL has joined #bittorrent [04:54:06] *** The_8472 has quit IRC [04:57:41] *** BuRnCycL has quit IRC [05:01:23] *** rrr_ has joined #bittorrent [05:01:23] *** kwinz2 has joined #bittorrent [05:01:23] *** HandheldPenguin` has joined #bittorrent [05:01:23] *** softwareelves has joined #bittorrent [05:02:52] *** rrr_ has quit IRC [05:04:56] *** stalled has quit IRC [05:06:13] *** stalled has joined #bittorrent [05:06:52] *** kwinz2 has quit IRC [05:06:53] *** softwareelves has quit IRC [05:06:53] *** HandheldPenguin` has quit IRC [05:07:50] *** goussx has quit IRC [05:25:35] *** kwinz2 has joined #bittorrent [05:25:35] *** HandheldPenguin` has joined #bittorrent [05:25:35] *** softwareelves has joined #bittorrent [05:46:18] *** kwinz2 has quit IRC [05:46:18] *** softwareelves has quit IRC [05:46:18] *** HandheldPenguin` has quit IRC [05:47:42] *** goussx has joined #bittorrent [05:54:19] *** rrr_ has joined #bittorrent [05:54:19] *** kwinz2 has joined #bittorrent [05:54:19] *** HandheldPenguin` has joined #bittorrent [05:54:19] *** softwareelves has joined #bittorrent [06:01:08] *** bt42 has joined #BitTorrent [06:01:50] *** bittwist has quit IRC [06:01:50] *** chelz has quit IRC [06:04:27] *** cgreco has quit IRC [06:04:28] *** Miller` has quit IRC [06:08:11] *** Miller` has joined #bittorrent [06:08:11] *** cgreco has joined #bittorrent [06:08:22] *** bittwist has joined #bittorrent [06:08:22] *** chelz has joined #bittorrent [06:08:40] *** bittwist has quit IRC [06:08:40] *** cgreco` has joined #bittorrent [06:09:53] *** cgreco has quit IRC [06:14:34] *** chelz has quit IRC [06:36:11] *** Miller` has quit IRC [06:41:59] *** Miller` has joined #bittorrent [06:42:43] *** KyleK_ has joined #bittorrent [06:45:59] *** init0_ has quit IRC [06:58:40] *** Switeck has quit IRC [06:59:15] *** rrr_ has quit IRC [06:59:16] *** kwinz2 has quit IRC [06:59:16] *** softwareelves has quit IRC [06:59:16] *** HandheldPenguin` has quit IRC [07:01:06] *** MassaRoddel has quit IRC [07:03:28] *** rrr_ has joined #bittorrent [07:03:28] *** kwinz2 has joined #bittorrent [07:03:28] *** HandheldPenguin` has joined #bittorrent [07:03:28] *** softwareelves has joined #bittorrent [07:05:30] *** oneforall has left #bittorrent [07:10:04] *** KyleK_ has quit IRC [07:18:45] *** MassaRoddel has joined #bittorrent [07:31:00] *** razvand has joined #bittorrent [08:10:52] *** razvand has quit IRC [08:38:53] *** Andrius has joined #bittorrent [09:23:12] *** kwinz2 has quit IRC [09:46:31] *** kwinz2 has joined #bittorrent [10:22:22] *** medecau has joined #bittorrent [12:15:39] *** echelog has joined #bittorrent [12:19:38] *** wadim is now known as The_8472 [12:31:52] *** cgreco` is now known as cgreco [12:51:41] *** GTHK has joined #bittorrent [13:24:35] *** rrr_ has quit IRC [13:24:36] *** softwareelves has quit IRC [13:24:36] *** HandheldPenguin` has quit IRC [13:31:40] *** rrr_ has joined #bittorrent [13:31:40] *** HandheldPenguin` has joined #bittorrent [13:31:40] *** softwareelves has joined #bittorrent [13:33:50] *** The_8472 has quit IRC [13:33:54] *** wadim has joined #bittorrent [13:33:55] *** wadim is now known as The_8472 [13:41:08] *** medecau has left #bittorrent [13:54:16] *** Miller` has quit IRC [13:59:43] *** K`Tetch has quit IRC [13:59:59] *** Miller` has joined #bittorrent [14:11:31] *** rrr_ has quit IRC [14:11:31] *** softwareelves has quit IRC [14:11:31] *** HandheldPenguin` has quit IRC [14:12:39] *** rrr_ has joined #bittorrent [14:12:39] *** HandheldPenguin` has joined #bittorrent [14:12:39] *** softwareelves has joined #bittorrent [14:36:06] *** The_8472 has quit IRC [14:36:27] *** wadim has joined #bittorrent [14:36:29] *** wadim is now known as The_8472 [14:59:27] *** rrr_ has quit IRC [15:01:46] *** stalled_ has joined #bittorrent [15:04:08] *** kwinz2_ has joined #bittorrent [15:04:19] *** kwinz2 has quit IRC [15:12:59] *** rrr_ has joined #bittorrent [15:15:49] *** kwinz2_ has quit IRC [15:16:33] *** stalled has quit IRC [15:36:14] *** kwinz2 has joined #bittorrent [15:40:35] *** The_8472 has quit IRC [15:40:35] *** Andrius has quit IRC [15:40:35] *** MassaRoddel has quit IRC [15:40:35] *** swinokur has quit IRC [15:41:10] *** The_8472 has joined #bittorrent [15:49:45] *** Andrius has joined #bittorrent [15:50:02] *** swin has joined #bittorrent [15:50:02] *** MassaRoddel has joined #bittorrent [15:50:02] *** swinokur has joined #bittorrent [15:50:38] *** swinokur has quit IRC [15:50:42] *** swin is now known as swinokur [15:56:06] *** MRoddel has joined #bittorrent [15:58:43] *** MassaRoddel has quit IRC [15:59:51] *** MRoddel is now known as MassaRoddel [16:16:47] *** kwinz2 has quit IRC [16:18:06] *** Nolar has quit IRC [16:18:06] *** uriel has quit IRC [16:18:07] *** alus has quit IRC [16:18:08] *** hydri_ has quit IRC [16:18:08] *** PN has quit IRC [16:18:08] *** DreadWingKnight has quit IRC [16:18:09] *** hlindhe has quit IRC [16:18:09] *** porter has quit IRC [16:18:09] *** swolchok has quit IRC [16:18:09] *** BentMyWookie has quit IRC [16:18:09] *** DeHackEd has quit IRC [16:18:09] *** kjetilho has quit IRC [16:18:10] *** nks has quit IRC [16:18:10] *** hlindhe_ is now known as hlindhe [16:20:59] *** hlindhe has quit IRC [16:21:03] *** hlindhe_ has joined #bittorrent [16:21:21] *** hydri_ has joined #bittorrent [16:21:21] *** PN has joined #bittorrent [16:21:21] *** DreadWingKnight has joined #bittorrent [16:21:21] *** hlindhe has joined #bittorrent [16:21:21] *** porter has joined #bittorrent [16:21:21] *** kjetilho has joined #bittorrent [16:21:21] *** nks has joined #bittorrent [16:21:21] *** DeHackEd has joined #bittorrent [16:21:21] *** BentMyWookie has joined #bittorrent [16:21:21] *** swolchok has joined #bittorrent [16:21:21] *** uriel has joined #bittorrent [16:21:21] *** alus has joined #bittorrent [16:21:21] *** Nolar has joined #bittorrent [16:21:40] *** swolchok has quit IRC [16:21:40] *** kjetilho has quit IRC [16:21:42] *** DeHackEd has quit IRC [16:21:42] *** BentMyWookie has quit IRC [16:21:42] *** nks has quit IRC [16:21:42] *** porter has quit IRC [16:21:42] *** hlindhe has quit IRC [16:21:43] *** DreadWingKnight has quit IRC [16:21:43] *** PN has quit IRC [16:21:43] *** hydri_ has quit IRC [16:21:47] *** hlindhe_ is now known as hlindhe [16:26:33] *** hlindhe has quit IRC [16:26:36] *** hlindhe_ has joined #bittorrent [16:26:44] *** hydri_ has joined #bittorrent [16:26:44] *** PN has joined #bittorrent [16:26:44] *** DreadWingKnight has joined #bittorrent [16:26:44] *** hlindhe has joined #bittorrent [16:26:44] *** porter has joined #bittorrent [16:26:44] *** kjetilho has joined #bittorrent [16:26:44] *** swolchok has joined #bittorrent [16:26:44] *** BentMyWookie has joined #bittorrent [16:26:44] *** DeHackEd has joined #bittorrent [16:26:44] *** nks has joined #bittorrent [16:28:49] *** stalled_ has quit IRC [16:29:24] *** stalled has joined #bittorrent [16:41:20] *** kjetilho has quit IRC [16:41:20] *** swolchok has quit IRC [16:41:20] *** porter has quit IRC [16:41:21] *** DeHackEd has quit IRC [16:41:21] *** BentMyWookie has quit IRC [16:41:21] *** nks has quit IRC [16:41:22] *** hlindhe has quit IRC [16:41:22] *** DreadWingKnight has quit IRC [16:41:22] *** PN has quit IRC [16:41:22] *** hydri_ has quit IRC [16:41:22] *** hlindhe_ is now known as hlindhe [16:42:34] *** kwinz2 has joined #bittorrent [16:48:16] *** kwinz2 has quit IRC [16:51:21] *** hlindhe has quit IRC [16:51:24] *** hlindhe_ has joined #bittorrent [16:51:34] *** hydri_ has joined #bittorrent [16:51:34] *** PN has joined #bittorrent [16:51:34] *** DreadWingKnight has joined #bittorrent [16:51:34] *** hlindhe has joined #bittorrent [16:51:34] *** porter has joined #bittorrent [16:51:34] *** kjetilho has joined #bittorrent [16:51:34] *** swolchok has joined #bittorrent [16:51:34] *** BentMyWookie has joined #bittorrent [16:51:34] *** DeHackEd has joined #bittorrent [16:51:34] *** nks has joined #bittorrent [16:53:32] *** stalled has quit IRC [16:54:10] *** stalled has joined #bittorrent [17:01:57] *** kjetilho has quit IRC [17:01:58] *** swolchok has quit IRC [17:01:58] *** porter has quit IRC [17:01:58] *** DeHackEd has quit IRC [17:01:58] *** BentMyWookie has quit IRC [17:01:59] *** nks has quit IRC [17:01:59] *** hlindhe has quit IRC [17:02:00] *** DreadWingKnight has quit IRC [17:02:00] *** PN has quit IRC [17:02:00] *** hydri_ has quit IRC [17:02:00] *** hlindhe_ is now known as hlindhe [17:02:46] *** kwinz2 has joined #bittorrent [17:05:13] *** hlindhe has quit IRC [17:05:13] *** hlindhe_ has joined #bittorrent [17:07:51] *** hlindhe_ is now known as hlindhe [17:12:58] *** hlindhe has quit IRC [17:13:02] *** hlindhe_ has joined #bittorrent [17:13:09] *** hydri_ has joined #bittorrent [17:13:09] *** PN has joined #bittorrent [17:13:09] *** DreadWingKnight has joined #bittorrent [17:13:09] *** hlindhe has joined #bittorrent [17:13:09] *** porter has joined #bittorrent [17:13:09] *** kjetilho has joined #bittorrent [17:13:09] *** swolchok has joined #bittorrent [17:13:09] *** BentMyWookie has joined #bittorrent [17:13:09] *** DeHackEd has joined #bittorrent [17:13:09] *** nks has joined #bittorrent [17:14:43] *** stalled_ has joined #bittorrent [17:15:46] *** stalled has quit IRC [17:15:46] *** swinokur has quit IRC [17:16:06] *** stalled_ is now known as stalled [17:22:58] *** swinokur has joined #bittorrent [17:23:14] *** swin has joined #bittorrent [17:23:39] *** swinokur has quit IRC [17:23:42] *** swin is now known as swinokur [17:44:49] *** KyleK_ has joined #bittorrent [17:51:31] *** KyleK_ has quit IRC [17:51:32] *** The_8472 has quit IRC [17:51:32] *** cgreco has quit IRC [17:51:33] *** liouxNOT has quit IRC [17:51:33] *** maswan has quit IRC [17:51:34] *** Firon has quit IRC [17:51:34] *** TheSHAD0W has quit IRC [17:51:35] *** mpl has quit IRC [17:52:24] *** liouxNOT has joined #bittorrent [17:52:36] *** KyleK_ has joined #bittorrent [17:54:55] *** Firon has joined #bittorrent [17:54:58] *** maswan has joined #bittorrent [17:55:39] *** andar2 has joined #bittorrent [17:57:23] *** mpl has joined #bittorrent [17:59:08] *** liouxNOT has quit IRC [17:59:25] *** maswan has quit IRC [17:59:28] *** lioux has joined #bittorrent [17:59:44] *** The_8472 has joined #bittorrent [17:59:44] *** cgreco has joined #bittorrent [17:59:44] *** liouxNOT has joined #bittorrent [17:59:44] *** maswan has joined #bittorrent [17:59:44] *** TheSHAD0W has joined #bittorrent [18:00:14] *** liouxNOT has quit IRC [18:00:33] *** maswan has quit IRC [18:00:41] *** stalled has quit IRC [18:00:41] *** Nolar has quit IRC [18:01:10] *** stalled has joined #bittorrent [18:03:25] *** The_8472 has quit IRC [18:03:46] *** wadim has joined #bittorrent [18:03:48] *** wadim is now known as The_8472 [18:04:37] *** TheSHAD0W` has joined #bittorrent [18:05:33] *** kjetilho has quit IRC [18:05:33] *** swolchok has quit IRC [18:05:33] *** porter has quit IRC [18:05:34] *** DeHackEd has quit IRC [18:05:34] *** BentMyWookie has quit IRC [18:05:34] *** nks has quit IRC [18:05:35] *** hlindhe has quit IRC [18:05:35] *** DreadWingKnight has quit IRC [18:05:35] *** PN has quit IRC [18:05:35] *** hydri_ has quit IRC [18:05:35] *** hlindhe_ is now known as hlindhe [18:08:00] *** maswan has joined #bittorrent [18:10:04] *** TheSHAD0W has quit IRC [18:10:04] *** cgreco has quit IRC [18:14:11] *** cgreco has joined #bittorrent [18:14:11] *** TheSHAD0W has joined #bittorrent [18:14:37] *** hlindhe has quit IRC [18:14:41] *** hlindhe_ has joined #bittorrent [18:14:49] *** hydri_ has joined #bittorrent [18:14:49] *** PN has joined #bittorrent [18:14:49] *** DreadWingKnight has joined #bittorrent [18:14:49] *** hlindhe has joined #bittorrent [18:14:49] *** porter has joined #bittorrent [18:14:49] *** kjetilho has joined #bittorrent [18:14:49] *** swolchok has joined #bittorrent [18:14:49] *** BentMyWookie has joined #bittorrent [18:14:49] *** DeHackEd has joined #bittorrent [18:14:49] *** nks has joined #bittorrent [18:17:51] *** stalled has quit IRC [18:18:35] *** stalled has joined #bittorrent [18:23:17] *** TheSHAD0W has quit IRC [18:23:17] *** cgreco has quit IRC [18:31:32] *** cgreco has joined #bittorrent [18:32:59] *** kjetilho has quit IRC [18:33:00] *** swolchok has quit IRC [18:33:00] *** porter has quit IRC [18:33:00] *** DeHackEd has quit IRC [18:33:00] *** BentMyWookie has quit IRC [18:33:01] *** nks has quit IRC [18:33:01] *** hlindhe has quit IRC [18:33:01] *** DreadWingKnight has quit IRC [18:33:02] *** PN has quit IRC [18:33:02] *** hydri_ has quit IRC [18:33:02] *** hlindhe_ is now known as hlindhe [18:33:33] *** hlindhe has quit IRC [18:33:35] *** hlindhe_ has joined #bittorrent [18:33:47] *** hydri_ has joined #bittorrent [18:33:47] *** PN has joined #bittorrent [18:33:47] *** DreadWingKnight has joined #bittorrent [18:33:47] *** hlindhe has joined #bittorrent [18:33:47] *** porter has joined #bittorrent [18:33:47] *** kjetilho has joined #bittorrent [18:33:47] *** swolchok has joined #bittorrent [18:33:47] *** BentMyWookie has joined #bittorrent [18:33:47] *** DeHackEd has joined #bittorrent [18:33:47] *** nks has joined #bittorrent [18:34:34] *** cgreco has quit IRC [18:34:34] *** The_8472 has quit IRC [18:34:44] *** rrr_ has quit IRC [18:34:45] *** softwareelves has quit IRC [18:34:45] *** HandheldPenguin` has quit IRC [18:34:59] *** The_8472 has joined #bittorrent [18:35:06] *** Firon has quit IRC [18:35:07] *** Miller` has quit IRC [18:35:15] *** _rafi_ has joined #bittorrent [18:39:59] *** Firon has joined #bittorrent [18:39:59] *** Miller` has joined #bittorrent [18:42:20] *** stalled has quit IRC [18:42:56] *** cgreco has joined #bittorrent [18:43:49] *** cgreco has quit IRC [18:44:16] *** rrr_ has joined #bittorrent [18:44:16] *** HandheldPenguin` has joined #bittorrent [18:44:16] *** softwareelves has joined #bittorrent [18:44:29] *** kjetilho has quit IRC [18:44:29] *** swolchok has quit IRC [18:44:30] *** porter has quit IRC [18:44:30] *** DeHackEd has quit IRC [18:44:30] *** BentMyWookie has quit IRC [18:44:30] *** nks has quit IRC [18:44:31] *** hlindhe has quit IRC [18:44:31] *** DreadWingKnight has quit IRC [18:44:31] *** PN has quit IRC [18:44:32] *** hydri_ has quit IRC [18:44:32] *** hlindhe_ is now known as hlindhe [18:44:54] *** hlindhe has quit IRC [18:44:59] *** hlindhe_ has joined #bittorrent [18:45:09] *** hydri_ has joined #bittorrent [18:45:09] *** PN has joined #bittorrent [18:45:09] *** DreadWingKnight has joined #bittorrent [18:45:09] *** hlindhe has joined #bittorrent [18:45:09] *** porter has joined #bittorrent [18:45:09] *** kjetilho has joined #bittorrent [18:45:09] *** swolchok has joined #bittorrent [18:45:09] *** BentMyWookie has joined #bittorrent [18:45:09] *** DeHackEd has joined #bittorrent [18:45:09] *** nks has joined #bittorrent [18:45:33] *** cgreco has joined #bittorrent [18:50:16] *** stalled has joined #bittorrent [18:50:26] *** Andrius has quit IRC [18:54:57] *** Andrius has joined #bittorrent [19:14:47] *** rrr_ has quit IRC [19:14:47] *** softwareelves has quit IRC [19:14:48] *** HandheldPenguin` has quit IRC [19:15:19] *** Miller` has quit IRC [19:15:19] *** Firon has quit IRC [19:16:00] *** Firon has joined #bittorrent [19:16:00] *** Miller` has joined #bittorrent [19:18:03] *** rrr_ has joined #bittorrent [19:18:03] *** HandheldPenguin` has joined #bittorrent [19:18:03] *** softwareelves has joined #bittorrent [19:19:39] *** stalled has quit IRC [19:20:27] *** stalled has joined #bittorrent [19:20:39] *** rrr_ has quit IRC [19:20:39] *** softwareelves has quit IRC [19:20:39] *** HandheldPenguin` has quit IRC [19:22:47] *** kjetilho has quit IRC [19:22:47] *** swolchok has quit IRC [19:22:47] *** porter has quit IRC [19:22:48] *** DeHackEd has quit IRC [19:22:48] *** BentMyWookie has quit IRC [19:22:48] *** nks has quit IRC [19:22:49] *** hlindhe has quit IRC [19:22:49] *** DreadWingKnight has quit IRC [19:22:49] *** PN has quit IRC [19:22:49] *** hydri_ has quit IRC [19:22:50] *** hlindhe_ is now known as hlindhe [19:22:52] *** rrr_ has joined #bittorrent [19:22:52] *** HandheldPenguin` has joined #bittorrent [19:22:52] *** softwareelves has joined #bittorrent [19:27:47] *** stalled has quit IRC [19:28:32] *** stalled has joined #bittorrent [19:29:20] *** hlindhe has quit IRC [19:29:23] *** hlindhe_ has joined #bittorrent [19:29:33] *** hydri_ has joined #bittorrent [19:29:33] *** PN has joined #bittorrent [19:29:33] *** DreadWingKnight has joined #bittorrent [19:29:33] *** hlindhe has joined #bittorrent [19:29:33] *** porter has joined #bittorrent [19:29:33] *** kjetilho has joined #bittorrent [19:29:33] *** swolchok has joined #bittorrent [19:29:33] *** BentMyWookie has joined #bittorrent [19:29:33] *** DeHackEd has joined #bittorrent [19:29:33] *** nks has joined #bittorrent [19:31:55] *** stalled has quit IRC [19:32:26] *** init0 has joined #bittorrent [19:32:59] *** stalled has joined #bittorrent [19:35:53] *** rrr_ has quit IRC [19:35:54] *** softwareelves has quit IRC [19:35:54] *** HandheldPenguin` has quit IRC [19:39:07] *** kjetilho has quit IRC [19:39:08] *** swolchok has quit IRC [19:39:08] *** porter has quit IRC [19:39:08] *** DeHackEd has quit IRC [19:39:08] *** BentMyWookie has quit IRC [19:39:09] *** nks has quit IRC [19:39:09] *** hlindhe has quit IRC [19:39:10] *** DreadWingKnight has quit IRC [19:39:10] *** PN has quit IRC [19:39:10] *** hydri_ has quit IRC [19:39:11] *** hlindhe_ is now known as hlindhe [19:43:01] *** hlindhe has quit IRC [19:43:03] *** hlindhe_ has joined #bittorrent [19:43:31] *** hydri_ has joined #bittorrent [19:43:31] *** PN has joined #bittorrent [19:43:31] *** DreadWingKnight has joined #bittorrent [19:43:31] *** hlindhe has joined #bittorrent [19:43:31] *** porter has joined #bittorrent [19:43:31] *** kjetilho has joined #bittorrent [19:43:31] *** swolchok has joined #bittorrent [19:43:31] *** BentMyWookie has joined #bittorrent [19:43:31] *** DeHackEd has joined #bittorrent [19:43:31] *** nks has joined #bittorrent [19:46:04] *** stalled has quit IRC [19:46:53] *** stalled has joined #bittorrent [19:47:20] *** HandheldPenguin` has joined #bittorrent [19:47:20] *** softwareelves has joined #bittorrent [20:00:29] *** softwareelves has quit IRC [20:00:29] *** HandheldPenguin` has quit IRC [20:01:52] *** _rafi_ has quit IRC [20:02:05] *** kjetilho has quit IRC [20:02:06] *** swolchok has quit IRC [20:02:06] *** porter has quit IRC [20:02:06] *** DeHackEd has quit IRC [20:02:06] *** BentMyWookie has quit IRC [20:02:07] *** nks has quit IRC [20:02:07] *** hlindhe has quit IRC [20:02:08] *** DreadWingKnight has quit IRC [20:02:08] *** PN has quit IRC [20:02:08] *** hydri_ has quit IRC [20:02:08] *** hlindhe_ is now known as hlindhe [20:02:31] *** _rafi_ has joined #bittorrent [20:04:52] *** _rafi2_ has joined #bittorrent [20:05:10] *** _rafi_ has quit IRC [20:07:09] *** hlindhe has quit IRC [20:07:10] *** hlindhe_ has joined #bittorrent [20:07:49] *** hydri_ has joined #bittorrent [20:07:49] *** PN has joined #bittorrent [20:07:49] *** DreadWingKnight has joined #bittorrent [20:07:49] *** hlindhe has joined #bittorrent [20:07:49] *** porter has joined #bittorrent [20:07:49] *** kjetilho has joined #bittorrent [20:07:49] *** swolchok has joined #bittorrent [20:07:49] *** BentMyWookie has joined #bittorrent [20:07:49] *** DeHackEd has joined #bittorrent [20:07:49] *** nks has joined #bittorrent [20:08:43] *** kjetilho has quit IRC [20:08:44] *** swolchok has quit IRC [20:08:44] *** porter has quit IRC [20:08:44] *** DeHackEd has quit IRC [20:08:44] *** BentMyWookie has quit IRC [20:08:45] *** nks has quit IRC [20:08:45] *** hlindhe has quit IRC [20:08:46] *** DreadWingKnight has quit IRC [20:08:46] *** PN has quit IRC [20:08:46] *** hydri_ has quit IRC [20:08:46] *** hlindhe_ is now known as hlindhe [20:09:06] *** ChoyKloun has joined #bittorrent [20:10:59] <ChoyKloun> hay everyone [20:11:15] *** HandheldPenguin has joined #bittorrent [20:11:15] *** softwareelves has joined #bittorrent [20:11:29] *** hlindhe has quit IRC [20:11:33] *** hlindhe_ has joined #bittorrent [20:11:43] *** hydri_ has joined #bittorrent [20:11:43] *** PN has joined #bittorrent [20:11:43] *** DreadWingKnight has joined #bittorrent [20:11:43] *** hlindhe has joined #bittorrent [20:11:43] *** porter has joined #bittorrent [20:11:43] *** kjetilho has joined #bittorrent [20:11:43] *** swolchok has joined #bittorrent [20:11:43] *** BentMyWookie has joined #bittorrent [20:11:43] *** DeHackEd has joined #bittorrent [20:11:43] *** nks has joined #bittorrent [20:11:45] <ChoyKloun> ok official announcement from me if anyone relevant is alive to hear it [20:11:54] <ChoyKloun> i'll restrict my future work with dht/bt to a bare minimum and focus on tor instead [20:12:20] <ChoyKloun> as i cant take fucking getting flamed for coming with suggestions and bringing in new concepts and wanting a technical debate of their merits [20:12:35] *** HandheldPenguin is now known as HandheldPenguin` [20:14:00] <The_8472> lol [20:14:07] <ChoyKloun> seriously [20:14:11] <ChoyKloun> its beyond ridiculous [20:14:19] <ChoyKloun> those who know i mean know who they are [20:14:22] <ChoyKloun> you are not one of them obviously [20:14:31] <The_8472> the point is that you weren't factual. you spewed personal believes, anecdotes etc. [20:14:36] <The_8472> that's now how you have a factual discussion [20:14:41] <ChoyKloun> its not about your posts [20:14:47] <ChoyKloun> not at all [20:14:47] <The_8472> doesn't matter [20:14:47] <alus> ChoyKloun: which dht implementation do you work on? [20:14:58] <ChoyKloun> alus: my own experimental [20:14:59] <The_8472> i can understand why others react the way they did [20:15:15] <alus> ChoyKloun: do you sit here under a different nick usually? [20:15:19] <ChoyKloun> no [20:15:22] <ChoyKloun> but im not here often [20:15:26] <alus> ah [20:15:42] <alus> where were you having the discussion The_8472 is referring to? [20:15:43] <ChoyKloun> the_8472: its not about you [20:15:44] *** JudgeSHAD0W has joined #bittorrent [20:15:48] <ChoyKloun> and its not about me being flawless [20:15:57] <ChoyKloun> im not exactly the king of diplomacy [20:16:19] <ChoyKloun> but there are some things i cant take [20:16:51] <ChoyKloun> and again [20:16:55] <ChoyKloun> its not about anything youve ever said [20:16:57] <ChoyKloun> or posted [20:16:59] <ChoyKloun> or whatever [20:17:04] <The_8472> i never implied that [20:17:48] <ChoyKloun> i can handle a good usenet flamewar.. its not about that [20:17:54] <ChoyKloun> (and again, you've never flamed me) [20:18:00] <ChoyKloun> not without reason atleast :P [20:18:17] <The_8472> you already said so, you do not have to repeat yourself over and over [20:18:27] <ChoyKloun> just want to make it clear, ok? [20:18:28] *** stalled has quit IRC [20:18:59] <The_8472> anyway, my point was that the way you were starting the discussion was not how you discuss technical issues. engineering is not politics [20:19:13] <ChoyKloun> i didnt even start that thread [20:19:17] <ChoyKloun> and its not only about the thread [20:19:27] <The_8472> then idk [20:20:16] <ChoyKloun> if any of my work is appreciated then i'll still be here from time to time [20:20:24] <ChoyKloun> and discuss issues with people like for example you [20:20:59] <DreadWingKnight> I'm pretty sure I wasn't involved in what started this [20:21:03] <ChoyKloun> nope [20:21:20] <ChoyKloun> and this isnt like a single incident [20:21:34] <ChoyKloun> its what can you call it. the culture of certain people involved [20:21:50] <ChoyKloun> developers can be bitches sometimes [20:21:54] <ChoyKloun> might just be a chemistry issue here [20:22:41] <ChoyKloun> (and that phrase includes me obviously) [20:24:35] <The_8472> well, i can be pretty annoying over things too when i strongly dislike someone else's opinion on a particular topic. that doesn't mean i can't work with them on other topics though [20:24:56] <ChoyKloun> ya [20:25:02] <ChoyKloun> but here we have that simply not happening [20:25:09] *** stalled has joined #bittorrent [20:25:48] <The_8472> well, i'm not sure if anyone cares though [20:26:19] <ChoyKloun> if noone cares thats fine with me [20:27:00] *** kjetilho has quit IRC [20:27:01] *** swolchok has quit IRC [20:27:01] *** porter has quit IRC [20:27:01] *** DeHackEd has quit IRC [20:27:01] *** BentMyWookie has quit IRC [20:27:02] *** nks has quit IRC [20:27:02] *** hlindhe has quit IRC [20:27:03] *** DreadWingKnight has quit IRC [20:27:03] *** PN has quit IRC [20:27:03] *** hydri_ has quit IRC [20:27:04] <ChoyKloun> i just find the worlds biggest decentralized network highly fascinate [20:27:04] <ChoyKloun> fascinating* [20:27:04] *** hlindhe_ is now known as hlindhe [20:27:55] <ChoyKloun> and if issues like DoS amp arent seen as important then thats fine [20:28:23] <ChoyKloun> except me and a lot of others might end up having to defend against the results if it reaches usage on even 1/10 the scale of dns amp [20:29:09] <_rafi2_> is your announcement done yet ? ... [20:29:33] <ChoyKloun> yes [20:29:39] <ChoyKloun> should i part the channel? [20:29:40] <_rafi2_> k... :) [20:29:49] <_rafi2_> up to you [20:30:08] <_rafi2_> just wanted to know ;) [20:30:17] <GTHK> Nuuuuuuuuu. I found the DHT discussions interesting >.> [20:30:54] <ChoyKloun> can someone nuke my acct on the forum though? and preferably all my posts if that isnt against forum rules [20:31:39] <_rafi2_> are you saying goodbye ?... nooo [20:31:53] <ChoyKloun> only to forum i hope [20:31:57] *** hlindhe has quit IRC [20:32:00] *** hlindhe_ has joined #bittorrent [20:32:09] <ChoyKloun> if im welcome here and anything ive brought up is deemed relevant then ill stay [20:32:16] *** _rafi2_ is now known as _rafi_ [20:32:23] *** hydri_ has joined #bittorrent [20:32:23] *** PN has joined #bittorrent [20:32:23] *** DreadWingKnight has joined #bittorrent [20:32:23] *** hlindhe has joined #bittorrent [20:32:23] *** porter has joined #bittorrent [20:32:23] *** kjetilho has joined #bittorrent [20:32:23] *** swolchok has joined #bittorrent [20:32:23] *** BentMyWookie has joined #bittorrent [20:32:23] *** DeHackEd has joined #bittorrent [20:32:23] *** nks has joined #bittorrent [20:33:20] <ChoyKloun> and youll see a proposal or two once i start parttime at work (i.e. working 12h days) :D [20:34:26] <ChoyKloun> just sold off our company so that might help heh [20:34:49] <_rafi_> for how much ? [20:35:13] <ChoyKloun> $160k [20:35:17] <ChoyKloun> which works out to around $20k/employee [20:35:35] <_rafi_> nice [20:36:37] *** stalled has quit IRC [20:36:44] <_rafi_> and the company was in what area ? [20:36:46] <ChoyKloun> which is a good change from appx $0 or negative 6m ago [20:36:49] <ChoyKloun> it outsourcing [20:36:53] <ChoyKloun> web development mostly [20:37:20] <ChoyKloun> think of it as a hightech sweatshop ... :) [20:37:23] <ChoyKloun> with air conditioning :) [20:37:34] *** stalled_ has joined #bittorrent [20:37:57] <ChoyKloun> our total staff of 5 developers (all having at least a bachelors degree in computer science or related field) + 2 admin staff costs appx $2200/month [20:38:05] <ChoyKloun> which is less than 1 western developer [20:38:29] <ChoyKloun> the founder had tried to expand and move out of the local market and do international work instead [20:38:34] <ChoyKloun> but this failed utterly [20:38:40] *** stalled_ is now known as stalled [20:38:56] <ChoyKloun> so i put in a few grand, helped bring in work, and took the role of tech manager/CTO [20:39:59] <ChoyKloun> then i probably shortened my lifespan with 10 and grow my ulcer to the size of a lunar crater for about 6m [20:40:51] *** rdjong has joined #bittorrent [20:41:10] <ChoyKloun> probably the reason for me being a bit stingy when i come home and read stuff on forums :P [20:41:15] <ChoyKloun> like [20:41:44] <DreadWingKnight> my day job is newspaper delivery [20:41:59] <ChoyKloun> coming from our office in chinatown at 10pm and then reading a post telling me i hate china kinda doesnt make for a good response (explanation, not excuse) [20:42:00] <_rafi_> and I thought your announcement was done... ;P people are trying to sleep in here ... :) [20:42:24] <ChoyKloun> jesus christ im not barack obama [20:42:30] <ChoyKloun> or hugo chavez having a 3 hour rant on primetime tv [20:42:31] <ChoyKloun> :P [20:42:53] <ChoyKloun> its not like the future of this planet or even this project depends on anything i do :p [20:44:23] <ChoyKloun> the_8472: regarding crypto of communications, we'll soon be deploying atleast a couple of hundred embedded systems doing it (in my second dayjob) [20:44:25] <ChoyKloun> so will get some reallife data from there [20:44:37] <ChoyKloun> its a bit similar to dht [20:44:42] <ChoyKloun> in terms of exchange length and frequency etc [20:45:14] <ChoyKloun> so should give an idea of whether its worth pursing with dht [20:45:57] <ChoyKloun> (its alarm systems doing transmissions and polling/pinging) [20:46:09] <ChoyKloun> have a bunch of our dev systems sitting on the floor strategically located between the couch and the desk lol [20:50:35] <ChoyKloun> should secretly make them all into bittorrent trackers hahahaha [20:50:55] <ChoyKloun> well ok none of them are accessible from the net [20:51:02] <ChoyKloun> most at the moment run over a dedicated fiber network [20:54:10] *** rdjong has quit IRC [20:55:32] <ChoyKloun> "this? this is the microcontroller running the alarm sensors" [20:55:39] <ChoyKloun> "that? oh thats the bittorrent ASIC" [20:59:45] *** TheSHAD0W` has quit IRC [21:00:42] *** klapaucjusz has joined #bittorrent [21:07:19] *** goussx has quit IRC [21:09:58] *** goussx has joined #bittorrent [21:11:21] *** goussx has quit IRC [21:14:19] <klapaucjusz> The_8472: we need you over at #transmission. [21:14:54] *** goussx has joined #bittorrent [21:16:57] *** goussx has quit IRC [21:36:39] <JudgeSHAD0W> http://yro.slashdot.org/article.pl?sid=09/12/15/1925257 [22:14:20] *** KyleK__ has joined #bittorrent [22:21:33] *** ajaya has joined #bittorrent [22:23:16] *** _rafi_ has quit IRC [22:25:43] *** KyleK_ has quit IRC [22:25:43] *** KyleK__ is now known as KyleK_ [22:38:43] *** KyleK_ has quit IRC [22:38:43] *** ChoyKloun has quit IRC [22:38:44] *** Miller` has quit IRC [22:38:44] *** Firon has quit IRC [22:40:53] *** Firon has joined #bittorrent [22:40:57] *** KyleK_ has joined #bittorrent [22:40:57] *** ChoyKloun has joined #bittorrent [22:40:57] *** Miller` has joined #bittorrent [22:50:58] *** Firon has quit IRC [22:50:59] *** Andrius has quit IRC [22:50:59] *** swinokur has quit IRC [22:53:58] *** Firon has joined #bittorrent [23:00:42] *** Andrius has joined #bittorrent [23:06:01] *** swinokur has joined #bittorrent [23:06:07] *** swinokur has quit IRC [23:06:07] *** swinokur has joined #bittorrent [23:09:28] *** rrr_ has joined #bittorrent [23:09:30] *** KyleK_ has quit IRC [23:22:40] *** JudgeSHAD0W has quit IRC [23:33:09] *** ajaya has quit IRC [23:33:09] *** klapaucjusz has quit IRC [23:33:09] *** stalled has quit IRC [23:33:09] *** kjetilho has quit IRC [23:33:10] *** swolchok has quit IRC [23:33:10] *** porter has quit IRC [23:33:10] *** DeHackEd has quit IRC [23:33:10] *** BentMyWookie has quit IRC [23:33:11] *** nks has quit IRC [23:33:11] *** hlindhe has quit IRC [23:33:11] *** DreadWingKnight has quit IRC [23:33:12] *** PN has quit IRC [23:33:12] *** hydri_ has quit IRC [23:33:12] *** hlindhe_ is now known as hlindhe [23:34:35] *** Andrius has quit IRC [23:36:38] *** hlindhe has quit IRC [23:36:41] *** hlindhe_ has joined #bittorrent [23:36:58] *** ajaya has joined #bittorrent [23:36:58] *** klapaucjusz has joined #bittorrent [23:36:58] *** stalled has joined #bittorrent [23:36:58] *** hydri_ has joined #bittorrent [23:36:58] *** PN has joined #bittorrent [23:36:58] *** DreadWingKnight has joined #bittorrent [23:36:58] *** hlindhe has joined #bittorrent [23:36:58] *** porter has joined #bittorrent [23:36:58] *** kjetilho has joined #bittorrent [23:36:58] *** swolchok has joined #bittorrent [23:36:58] *** BentMyWookie has joined #bittorrent [23:36:58] *** DeHackEd has joined #bittorrent [23:36:58] *** nks has joined #bittorrent [23:40:20] *** klapaucjusz has quit IRC [23:42:05] *** ajaya has quit IRC [23:45:25] *** swinokur has quit IRC [23:49:31] *** swinokur has joined #bittorrent [23:49:39] *** swinokur has quit IRC [23:49:44] *** swinokur has joined #bittorrent [23:50:28] *** stalled has quit IRC [23:51:55] *** ajaya has joined #bittorrent [23:52:19] *** ChoyKloun has quit IRC [23:52:20] *** Miller` has quit IRC [23:54:50] *** ChoyKloun has joined #bittorrent [23:54:50] *** Miller` has joined #bittorrent [23:58:24] *** stalled has joined #bittorrent