Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.os.linux.advocacy > #409780

Re: BOOM!

From owl <owl@rooftop.invalid>
Newsgroups comp.os.linux.advocacy
Subject Re: BOOM!
Date 2017-04-20 07:02 +0000
Organization O.W.L.
Message-ID <av8b030abh.gjju@rooftop.invalid> (permalink)
References (11 earlier) <od5cvu$o5b$2@dont-email.me> <axib03a.buue03@rooftop.invalid> <od8dva$3g1$1@dont-email.me> <akpc8903.zh@rooftop.invalid> <od9eoj$p7l$2@dont-email.me>

Show all headers | View raw


DFS <nospam@dfs.com> wrote:
> On 4/19/2017 3:59 PM, owl wrote:
>> DFS <nospam@dfs.com> wrote:
>>> On 4/18/2017 4:11 PM, owl wrote:
>>>> DFS <nospam@dfs.com> wrote:


> 
>>>
>> 
>> Hey, if you want to keep 600 MB instead of 66 bytes, carry on, Wintard.
> 
> Now you're just shifting the pain from yourself to the victim that gets 
> that payload.
> 

Because it's more painful to get 66 bytes than 600 MB?

> 
> 
> 
>>> Dude, this is getting pathetic.
>>>
>> 
>> 600MB for data that can be generated in 23 seconds from a 66 byte file
>> is pathetic.
> 
> Now look who's faking it.  You actually send victims the script and make 
> them create the file themselves.  Then you ignore their phone call when 
> they scream "Why is this junk taking 3 minutes to save?  And why is it 
> 3.6GB for one file?"
> 

Why are the tards saving it like that?  Give me that phone.

> 
> 
> 169 byte 'init xls' file
> ------------------------------------
> from xlwt import *
> wb = Workbook()
> sheet = wb.add_sheet('Sheet1')
> for r in range(0,65536):
>        for c in range(0,256):
>                sheet.write(r,c,c+1)
> wb.save("scblows.xls")
> ------------------------------------
> xlwt isn't very advanced - I couldn't find any copy operation in the 
> documentation.
> 
> 101MB when finished.  And it's a real spreadsheet file, not a Chucky the 
> Doll sc file.
> 

Under 300 here, gzipped to under 50.

> 
> 
> 
> 447-byte 'init SQLite' file.  Gens 12M data points in 26 seconds on a 
> computer 1/2 the speed of yours.
> ----------------------------------------------------------------------
> import sqlite3
> conn   = sqlite3.connect("scblows.sqlite")
> db     = conn.cursor()
> cSQL =  ' CREATE TABLE If Not Exists MANYCOLS (PK INTEGER PRIMARY KEY \n'
> for c in range(1,1000):
>        cSQL += ', [' + str(c) + '] INTEGER DEFAULT ' + str(c) + ' \n'
> cSQL += ');'
> db.execute(cSQL)
> nrows = []
> for r in range(1,200001):
>        nrows.append((r,))
> db.executemany("INSERT INTO MANYCOLS (PK) VALUES(?)",nrows)
> conn.commit()
> db.close()
> conn.close()
> ----------------------------------------------------------------------
> 

1st FAIL:  that's a database, not a spreadsheet.
2nd FAIL:  limited to 2000 columns.
Poor sqlite.

Back to comp.os.linux.advocacy | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

BOOM! owl <owl@rooftop.invalid> - 2017-04-14 17:07 +0000
  Re: BOOM! DFS <nospam@dfs.com> - 2017-04-14 13:33 -0400
    Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-14 17:49 +0000
      Re: BOOM! fr314159@gmail.com - 2017-04-14 13:00 -0700
        Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-14 20:26 +0000
          Re: BOOM! DFS <nospam@dfs.com> - 2017-04-15 10:00 -0400
      Re: BOOM! DFS <nospam@dfs.com> - 2017-04-14 19:58 -0400
        Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-15 00:14 +0000
          Re: BOOM! DFS <nospam@dfs.com> - 2017-04-14 20:23 -0400
            Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-15 00:51 +0000
              Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-14 18:02 -0700
              Re: BOOM! DFS <nospam@dfs.com> - 2017-04-14 21:30 -0400
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-15 01:48 +0000
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-15 10:00 -0400
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-15 19:29 +0000
                Re: BOOM! Chris Ahlstrom <OFeem1987@teleworm.us> - 2017-04-15 16:24 -0400
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-15 21:10 +0000
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-15 18:42 -0400
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-15 23:31 +0000
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-15 20:29 -0400
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-16 05:25 +0000
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-16 19:49 -0400
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-17 00:51 +0000
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-17 12:54 -0400
                Re: BOOM! Steve Carroll <fretwizzer@gmail.com> - 2017-04-17 10:06 -0700
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-17 19:28 -0400
                Re: BOOM! Steve Carroll <fretwizzer@gmail.com> - 2017-04-17 17:21 -0700
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-19 09:41 -0400
                Re: BOOM! fr314159@gmail.com - 2017-04-19 07:48 -0700
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-19 14:21 -0400
                Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-19 11:36 -0700
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-19 20:03 +0000
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-19 16:24 -0400
                Re: BOOM! Steve Carroll <fretwizzer@gmail.com> - 2017-04-19 08:37 -0700
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-19 17:50 +0000
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-19 14:32 -0400
                Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-17 10:26 -0700
                Ping DFS! - Re: BOOM! Steve Carroll <fretwizzer@gmail.com> - 2017-04-17 10:34 -0700
                Re: Ping DFS! - Re: BOOM! DFS <nospam@dfs.com> - 2017-04-17 19:25 -0400
                Re: Ping DFS! - Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-17 16:45 -0700
                Re: Ping DFS! - Re: BOOM! Steve Carroll <fretwizzer@gmail.com> - 2017-04-17 17:29 -0700
                Re: Ping DFS! - ReBOOM! Fakey's Puppy Whistle Holder Emeritus 🐶笛 <root@127.0.0.1> - 2017-04-17 19:58 -0500
                Re: Ping DFS! - ReBOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-17 18:12 -0700
                Re: Ping DFS! - ReBOOM! Fakey's Puppy Whistle Holder Emeritus 🐶笛 <root@127.0.0.1> - 2017-04-17 20:25 -0500
                Re: Ping DFS! - ReBOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-17 18:46 -0700
                Re: Ping DFS! - ReBOOM! Fakey's Puppy Whistle Holder Emeritus 🐶笛 <root@127.0.0.1> - 2017-04-17 21:20 -0500
                Re: Ping DFS! - ReBOOM! DFS <nospam@dfs.com> - 2017-04-22 21:04 -0400
                Re: Ping DFS! - ReBOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-22 18:20 -0700
                Re: Ping DFS! - ReBOOM! Steve Carroll <fretwizzer@gmail.com> - 2017-04-22 19:12 -0700
                Re: Ping DFS! - ReBOOM! Silver Slimer <sl@im.er> - 2017-04-24 08:14 -0400
                Re: Ping DFS! - ReBOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-24 09:36 -0700
                Re: Ping DFS! - ReBOOM! Steve Carroll <fretwizzer@gmail.com> - 2017-04-24 09:52 -0700
                Re: Ping DFS! - ReBOOM! Silver Slimer <sl@im.er> - 2017-04-24 17:36 -0400
                Re: Ping DFS! - ReBOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-24 14:39 -0700
                Re: Ping DFS! - ReBOOM! Steve Carroll <fretwizzer@gmail.com> - 2017-04-22 19:23 -0700
                Re: Ping DFS! - ReBOOM! Marek Novotny <marek.novotny@marspolar.com> - 2017-04-22 21:37 -0500
                Re: Ping DFS! - ReBOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-22 22:55 -0700
                Re: Ping DFS! - ReBOOM! Steve Carroll <fretwizzer@gmail.com> - 2017-04-17 19:00 -0700
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-17 17:29 +0000
                Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-17 10:34 -0700
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-17 17:49 +0000
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-17 19:25 -0400
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-18 00:06 +0000
                Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-17 17:28 -0700
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-18 12:00 -0400
                Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-18 09:28 -0700
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-18 20:11 +0000
                Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-18 13:13 -0700
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-19 15:36 -0400
                Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-19 12:44 -0700
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-19 19:59 +0000
                Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-19 13:17 -0700
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-20 00:54 -0400
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-20 07:02 +0000
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-20 21:46 -0400
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-21 02:20 +0000
                Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-20 19:44 -0700
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-20 23:40 -0400
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-21 13:40 +0000
                Re: BOOM! DFS <nospam@dfs.com> - 2017-04-21 09:54 -0400
                Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-21 14:01 +0000
          Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-14 17:37 -0700
          Re: BOOM! Chris Ahlstrom <OFeem1987@teleworm.us> - 2017-04-15 06:41 -0400
  Re: BOOM! Chris Ahlstrom <OFeem1987@teleworm.us> - 2017-04-14 13:34 -0400
  Re: BOOM! John McCue <jmccue@jmcnet2.bstnma.east.verizon.net> - 2017-04-15 21:33 +0000
    Re: BOOM! chrisv <chrisv@nospam.invalid> - 2017-04-17 07:09 -0500
      Re: BOOM! John McCue <jmccue@jmcnet2.bstnma.east.verizon.net> - 2017-04-18 22:46 +0000
        Re: BOOM! owl <owl@rooftop.invalid> - 2017-04-18 23:08 +0000
          Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-18 16:32 -0700
          Re: BOOM! John McCue <jmccue@jmcnet2.bstnma.east.verizon.net> - 2017-04-21 02:02 +0000
        Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-18 16:30 -0700
    Re: BOOM! Snit <usenet@gallopinginsanity.com> - 2017-04-17 08:23 -0700

csiph-web