• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 08:52
CET 14:52
KST 22:52
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10
Community News
Weekly Cups (Nov 24-30): MaxPax, Clem, herO win2BGE Stara Zagora 2026 announced15[BSL21] Ro.16 Group Stage (C->B->A->D)4Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win3RSL Season 3: RO16 results & RO8 bracket13
StarCraft 2
General
Maestros of the Game: Live Finals Preview (RO4) BGE Stara Zagora 2026 announced Weekly Cups (Nov 24-30): MaxPax, Clem, herO win SC2 Proleague Discontinued; SKT, KT, SGK, CJ disband Information Request Regarding Chinese Ladder
Tourneys
$5,000+ WardiTV 2025 Championship Constellation Cup - Main Event - Stellar Fest RSL Revival: Season 3 Tenacious Turtle Tussle [Alpha Pro Series] Nice vs Cure
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 502 Negative Reinforcement Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ Data analysis on 70 million replays Which season is the best in ASL? [ASL20] Ask the mapmakers — Drop your questions BW General Discussion
Tourneys
[Megathread] Daily Proleagues [BSL21] RO16 Group B - Sunday 21:00 CET [BSL21] RO16 Group C - Saturday 21:00 CET Small VOD Thread 2.0
Strategy
Game Theory for Starcraft How to stay on top of macro? Current Meta PvZ map balance
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread The Perfect Game Path of Exile Should offensive tower rushing be viable in RTS games?
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine The Big Programming Thread Artificial Intelligence Thread
Fan Clubs
White-Ra Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Where to ask questions and add stream? The Automated Ban List
Blogs
James Bond movies ranking - pa…
Topin
Esports Earnings: Bigger Pri…
TrAiDoS
Thanks for the RSL
Hildegard
Saturation point
Uldridge
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1158 users

The Big Programming Thread - Page 436

Forum Index > General Forum
Post a Reply
Prev 1 434 435 436 437 438 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Mavvie
Profile Blog Joined May 2012
Canada923 Posts
Last Edited: 2014-01-29 20:39:03
January 29 2014 20:38 GMT
#8701
On January 27 2014 21:28 actionbastrd wrote:
So i am trying to learn C programing, and am hoping to dive really deep into it. I have a task which i am having trouble with. I feel like accomplishing this task could be done way better, but none the less,

Prompt the user and accept the following types of values from a SINGLE input line: char float int char.

What i have is this(spoiler), which works when the question asked is "char int char float", but breaks, i am assuming because it cannot tell when the float number ends. I understand spacing is an issue to and i commented on that in the prompt,.. but i need a separator somehow, i am learning out of books and having come across anything. I personally would just have it ask in separate lines or something. D:

This is actually my first language and am really stoked on it, but its mostly a grind with little to no in person help lol. If anyone has good C programming resources i could check out and read that would be awesome too, about anything!

+ Show Spoiler +

char f, g;
int h;
float i;

printf("Enter a char, float, int, char; with no spaces in between each input: ");

scanf("%c%f%d%c", &f, &i, &h, &g);

printf("You entered: %c, %.3f, %d, %c.\n", f, i, h, g);


I believe this would work:
char f, g; 
int h;
float i;

printf("Enter a char, float, int, char; with no spaces in between each input: ");

scanf("%c %f %d %c", &f, &i, &h, &g);

printf("You entered: %c, %.3f, %d, %c.\n", f, i, h, g);


Only difference is the scanf() format string.

Just tested it, it works! The scanf() documentation probably explains it well, but it's very similar to a Regex.

See the following:
int i=0;
sscanf("Test s15tring", "Test s%dtring", &i);
// i==15


It'll try its hardest to match it.
Getting back into sc2 O_o
Manit0u
Profile Blog Joined August 2004
Poland17491 Posts
January 29 2014 23:17 GMT
#8702
Mavvie, I already explained earlier that you need sscanf for that, not scanf
Time is precious. Waste it wisely.
Mavvie
Profile Blog Joined May 2012
Canada923 Posts
January 30 2014 00:20 GMT
#8703
Ooh silly me! Missed that one.

scanf() is okay to get the job he's doing done; it's not like security is an issue. But yeah sscanf is the better choice. Note I used it in the second example!

I'm mostly a Rails guy, nobody here ever seems to have Rails questions
Getting back into sc2 O_o
dapierow
Profile Blog Joined April 2010
Serbia1316 Posts
Last Edited: 2014-01-30 03:36:56
January 30 2014 03:36 GMT
#8704
Hey guys I need some with formatting a number in SQL, How can I add a comma to a number after every thousand? ex: 1234567 to turn into 1,234,567?


SELECT COUNT(*) as "Tweets in Database"
from tweets_sml;

is what I have to count the number of "tweets"
Eat.Sleep.Starcraft 2
tofucake
Profile Blog Joined October 2009
Hyrule19167 Posts
January 30 2014 03:55 GMT
#8705
FORMAT(COUNT(*), 0)

also, COUNT(*) is generally considered bad
Liquipediaasante sana squash banana
Iceman331
Profile Joined April 2010
United States1306 Posts
January 30 2014 03:59 GMT
#8706
On January 30 2014 12:55 tofucake wrote:
FORMAT(COUNT(*), 0)

also, COUNT(*) is generally considered bad


Out of curiosity, why is count(*) bad?
tofucake
Profile Blog Joined October 2009
Hyrule19167 Posts
January 30 2014 04:07 GMT
#8707
first, because you have no where clause
second, because you are counting everything returned from the result
third, because you are doing both of those things at the same time

it's even worse if you're using innodb instead of myisam because of how inno works.

I don't know how your table is structured, but if tweets aren't ever deleted (unlikely) and you have a unique id column (which you should) that happens to be an auto_incrementing int you could do SELECT MAX(id) or SELECT id ORDER BY id DESC LIMIT 1

If (more likely) tweets are deleted, and you have a silly number of rows, you should use a set of triggers which update another table (preferably in a memory table for speed) with a count.
Liquipediaasante sana squash banana
dapierow
Profile Blog Joined April 2010
Serbia1316 Posts
January 30 2014 04:56 GMT
#8708
Thank you tofu <3
Eat.Sleep.Starcraft 2
mcc
Profile Joined October 2010
Czech Republic4646 Posts
Last Edited: 2014-01-30 18:10:59
January 30 2014 18:05 GMT
#8709
On January 30 2014 13:07 tofucake wrote:
first, because you have no where clause
second, because you are counting everything returned from the result
third, because you are doing both of those things at the same time

it's even worse if you're using innodb instead of myisam because of how inno works.

I don't know how your table is structured, but if tweets aren't ever deleted (unlikely) and you have a unique id column (which you should) that happens to be an auto_incrementing int you could do SELECT MAX(id) or SELECT id ORDER BY id DESC LIMIT 1

If (more likely) tweets are deleted, and you have a silly number of rows, you should use a set of triggers which update another table (preferably in a memory table for speed) with a count.

I can only strongly disagree with this advice.

If you need exact count, using MAX(id) to determine it is probably the worst idea. There are multiple ways where auto_incrementing columns can produce holes even without deletes.

Also do not worry about optimizations if there is no need to worry about optimizations. If your application works perfectly fine, it is actually bad idea to store the count separately as you introduce unnecessary complexity and possible point of inconsistency. In general never duplicate data if performance reasons do not force you to do it. Storing count is duplicating data. Of course in real-life systems you will be in the end forced to actually do that sometimes, but do it only as a response to the actual need.

Triggers are work of the devil and should be avoided.

Deleting data seems to me nearly always bad idea. If you have performance issues, partition, if not what is the point. Again do optimizations only in response to actual need.

EDIT: In short SELECT COUNT(*) is perfectly fine.
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
January 30 2014 18:15 GMT
#8710
Let's play a game...

What is bar equal to? [C]:

uint8_t foo = 0x70;
uint8_t bar = (~foo) >> 4;
Any sufficiently advanced technology is indistinguishable from magic
Rannasha
Profile Blog Joined August 2010
Netherlands2398 Posts
January 30 2014 18:25 GMT
#8711
On January 31 2014 03:15 RoyGBiv_13 wrote:
Let's play a game...

What is bar equal to? [C]:

uint8_t foo = 0x70;
uint8_t bar = (~foo) >> 4;


In base-2:
foo = 01110000
~foo = 10001111
(~foo) >> 4 = 00001000

So bar = 8
Such flammable little insects!
Shenghi
Profile Joined August 2010
167 Posts
Last Edited: 2014-01-30 19:50:20
January 30 2014 18:38 GMT
#8712
On January 31 2014 03:25 Rannasha wrote:
Show nested quote +
On January 31 2014 03:15 RoyGBiv_13 wrote:
Let's play a game...

What is bar equal to? [C]:

uint8_t foo = 0x70;
uint8_t bar = (~foo) >> 4;


In base-2:
foo = 01110000
~foo = 10001111
(~foo) >> 4 = 00001000

So bar = 8

That is what you would expect. But it's wrong.

+ Show Spoiler [Solution] +

foo = 01110000
foo >> 4 = 00000111
(~foo) >> 4 = 11111000
bar == 248
People are not born stupid, they choose to be stupid. If you made that choice, please change your mind.
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
January 30 2014 18:56 GMT
#8713
On January 31 2014 03:38 Shenghi wrote:
Show nested quote +
On January 31 2014 03:25 Rannasha wrote:
On January 31 2014 03:15 RoyGBiv_13 wrote:
Let's play a game...

What is bar equal to? [C]:

uint8_t foo = 0x70;
uint8_t bar = (~foo) >> 4;


In base-2:
foo = 01110000
~foo = 10001111
(~foo) >> 4 = 00001000

So bar = 8

That is what you would expect. But it's wrong.

+ Show Spoiler [Solution] +

foo = 01110000
foo >> 4 = 00000111
(~foo) >> 4 = 11111000
foo == 248


You had a typo in your last line, but it's correct:

+ Show Spoiler +
bar = 248+ Show Spoiler +

That is, assuming that your compiling for a target with a word size of greater than 1 byte.



+ Show Spoiler +

Let's assuming it's a target with a 32-bit word size. For an arithmetic operation (negation, in this case, ~) the lvalue (return value of the operation) will be the default word size, and any types smaller than the word size will be promoted to the default word size. In this case, foo is promoted to a signed 32-bit int:
foo = 0x00000070
~foo = 0xFFFFFF8F
~foo >> 4 = 0xFFFFFFF8 //in this case, since the result will fit within the type, it wont be sign extended
bar is then truncated to fit within the uint8 type
bar = 0xF8 //248
Any sufficiently advanced technology is indistinguishable from magic
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
January 31 2014 18:13 GMT
#8714
I've recently studied about the Actor model, but it sounds too good to be true. Anyway, is the model used at workplace?
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
January 31 2014 22:53 GMT
#8715
On February 01 2014 03:13 darkness wrote:
I've recently studied about the Actor model, but it sounds too good to be true. Anyway, is the model used at workplace?

That sounds like a very visual and understandable model
I think in our modern age technology has evolved to become more addictive. The things that don't give us pleasure aren't used as much. Work was never meant to be fun, but doing it makes us happier in the long run.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2014-02-01 13:33:01
February 01 2014 13:24 GMT
#8716
Can anyone show me a quick example of the Memento pattern? The example from wikipedia is just using a string. What about a more complex object that has attributes? E.g.

Person
+ Show Spoiler +


public class Person {
private int age;
private String name;

public Person(int age, String name) {
this.age = age;
this.name = name;
}

public int getAge() {
return age;
}

public String getName() {
return name;
}

public void setAge(int age) {
this.age = age;
}

public void setName(String name) {
this.name = name;
}
}



I've tried the following but I don't know if it's correct.

Some save state method, e.g:


public Memento saveState() {
return new Memento(this); // this == Person
}


And the Memento class:

public class Memento {
int age;
String name;

public Memento(Person p) {
age = p.getAge();
name = p.getName();
}

public Person getState() {
return new Person(age, name);
}
}


Am I on the right track? I've omitted the data structure part because it's obvious although I think Stack would be suitable? I've also read that using object.clone() isn't recommended, so copy constructor then?
wozzot
Profile Joined July 2012
United States1227 Posts
February 02 2014 09:08 GMT
#8717
Made a Mandelbrot fractal generator, but the issue is that it runs really slowly: it takes a whole minute to generate a single fractal. Would like to know whether the problem is because my program is inefficient or because of Perl / the GD library. tia

+ Show Spoiler +

#!perl
use strict;
use GD;

# Mandelbrot fractal generator

my ($width, $height) = (900, 675);
my ($x_min, $x_max) = (-2, 1);
my ($y_min, $y_max) = (-1, 1);
my ($x_min, $x_max) = (-2, .65);
my ($y_min, $y_max) = (-1, 1);
my ($y_min, $y_max) = (-1, 1);

my $multi = 1/1.1;
$_ /= $multi for ($x_min, $x_max, $y_min, $y_max);

my $x_range = $x_max - $x_min;
my $y_range = $y_max - $y_min;
my $x_offset = 0;
my $y_offset = 0;
my $it_count = 30;
my $bound = 1000;

my $filename = 'fractal.png';
open STDOUT, ">", "$filename";
binmode STDOUT;

my $bitmap = new GD::Image($width, $height, 0) or die "Could not initialize bitmap\n";

my %colors = (); # keys: "$r $g $b"
# Allocate colors like this:
# $colors{"$r $g $b"} = $bitmap->colorAllocate($r, $g, $b)
# unless exists($colors{"$r $g $b"});
#
# Set pixel like this:
# $bitmap->setPixel($pix_h, $pix_v, $colortable{"$a $b $c"});

my $black = $bitmap->colorAllocate(0, 0, 0); # Black background
my @color_inner = (128, 255, 0);
my @color_outer = (0, 0, 96);

sub color {
my ($it, $pix_h, $pix_v) = @_;
my $percent = $it/ $it_count;
$percent *= .8;
$percent = 1 if $percent > 1;

my $r = int($color_inner[0] * $percent + $color_outer[0] * (1 - $percent));
my $g = int($color_inner[1] * $percent + $color_outer[1] * (1 - $percent));
my $b = int($color_inner[2] * $percent + $color_outer[2] * (1 - $percent));

$colors{"$r $g $b"} = $bitmap->colorAllocate($r, $g, $b)
unless exists($colors{"$r $g $b"});

$bitmap->setPixel($pix_h, $pix_v, $colors{"$r $g $b"});
}

sub calc {
my ($r, $i, $it, $pix_h, $pix_v, @c) = @_;

# (a + bi) ** 2 = a ** 2 + 2abi - b ** 2
# z = z**2 + c

my $real = $r ** 2 - $i ** 2 + $c[0];
my $imag = 2 * $r * $i + $c[1];
color($it, $pix_h, $pix_v) if ($real > $bound);
return ($real, $imag);
}

for my $pix_h (0..$width-1) {
for my $pix_v (0..$height-1) {
my $r = ($pix_h + 1) / $width * $x_range + $x_min + $x_offset;
my $i = ($pix_v + 1) / $height * $y_range + $y_min + $y_offset;
my @c = ($r, $i);

for (1..$it_count) {
($r, $i) = calc($r, $i, $_, $pix_h, $pix_v, @c);
}
}
}

print $bitmap->png;
(ノ´∀`*)ノ ♪ ♫ ヽ(´ー`)ノ ♪ ♫ (✌゚∀゚)☞ ♪ ♫ ヽ(´ー`)ノ ♫ ♫ (ノ´_ゝ`)ノ彡 ┻━┻
teamamerica
Profile Blog Joined July 2010
United States958 Posts
February 02 2014 11:05 GMT
#8718
On January 29 2014 09:01 Badboyrune wrote:
Ok I'm getting quite confused. I'm making a pretty basic android app, it's my first so my experience is very limited. It basically displays data from a database based on intent sent from the intent sent from another activity in the app. This all worked fine, I could navigate without any issue with the android OS back button.

However when I enable "getActionBar().setDisplayHomeAsUpEnabled(true);" and try to navigate backwards with the Home button that breaks any activity that relies on receiving an intent, because it doesn't receive any. I tried putting the information in the onSaveInstanceState bundle, but the activity does not receive the bundle when navigated to with the Home button (savedInstanceState != null returns false).

I've looked through all I've been able to find online (which has been limited because searches involving android home button are generally unhelpful) and all I've really been able to find is that the home button seems to not be programmable anymore, it either sends you to the app home activity, or the activities parent activity which is what I'm trying to achieve. I'm assuming there's some way of doing this so any help would be much appreciated.


Would you mind posting a code listing of the relevant activities? There are a lot of lifecycle callbacks - onRestoreInstanceState() for example.
RIP GOMTV. RIP PROLEAGUE.
bangsholt
Profile Joined June 2011
Denmark138 Posts
February 02 2014 12:30 GMT
#8719
On February 02 2014 18:08 wozzot wrote:
Made a Mandelbrot fractal generator, but the issue is that it runs really slowly: it takes a whole minute to generate a single fractal. Would like to know whether the problem is because my program is inefficient or because of Perl / the GD library. tia

+ Show Spoiler +

#!perl
use strict;
use GD;

# Mandelbrot fractal generator

my ($width, $height) = (900, 675);
my ($x_min, $x_max) = (-2, 1);
my ($y_min, $y_max) = (-1, 1);
my ($x_min, $x_max) = (-2, .65);
my ($y_min, $y_max) = (-1, 1);
my ($y_min, $y_max) = (-1, 1);

my $multi = 1/1.1;
$_ /= $multi for ($x_min, $x_max, $y_min, $y_max);

my $x_range = $x_max - $x_min;
my $y_range = $y_max - $y_min;
my $x_offset = 0;
my $y_offset = 0;
my $it_count = 30;
my $bound = 1000;

my $filename = 'fractal.png';
open STDOUT, ">", "$filename";
binmode STDOUT;

my $bitmap = new GD::Image($width, $height, 0) or die "Could not initialize bitmap\n";

my %colors = (); # keys: "$r $g $b"
# Allocate colors like this:
# $colors{"$r $g $b"} = $bitmap->colorAllocate($r, $g, $b)
# unless exists($colors{"$r $g $b"});
#
# Set pixel like this:
# $bitmap->setPixel($pix_h, $pix_v, $colortable{"$a $b $c"});

my $black = $bitmap->colorAllocate(0, 0, 0); # Black background
my @color_inner = (128, 255, 0);
my @color_outer = (0, 0, 96);

sub color {
my ($it, $pix_h, $pix_v) = @_;
my $percent = $it/ $it_count;
$percent *= .8;
$percent = 1 if $percent > 1;

my $r = int($color_inner[0] * $percent + $color_outer[0] * (1 - $percent));
my $g = int($color_inner[1] * $percent + $color_outer[1] * (1 - $percent));
my $b = int($color_inner[2] * $percent + $color_outer[2] * (1 - $percent));

$colors{"$r $g $b"} = $bitmap->colorAllocate($r, $g, $b)
unless exists($colors{"$r $g $b"});

$bitmap->setPixel($pix_h, $pix_v, $colors{"$r $g $b"});
}

sub calc {
my ($r, $i, $it, $pix_h, $pix_v, @c) = @_;

# (a + bi) ** 2 = a ** 2 + 2abi - b ** 2
# z = z**2 + c

my $real = $r ** 2 - $i ** 2 + $c[0];
my $imag = 2 * $r * $i + $c[1];
color($it, $pix_h, $pix_v) if ($real > $bound);
return ($real, $imag);
}

for my $pix_h (0..$width-1) {
for my $pix_v (0..$height-1) {
my $r = ($pix_h + 1) / $width * $x_range + $x_min + $x_offset;
my $i = ($pix_v + 1) / $height * $y_range + $y_min + $y_offset;
my @c = ($r, $i);

for (1..$it_count) {
($r, $i) = calc($r, $i, $_, $pix_h, $pix_v, @c);
}
}
}

print $bitmap->png;


Profile your code. Then it should be obvious if it's Perl, the library or your code that's bad.
wozzot
Profile Joined July 2012
United States1227 Posts
February 02 2014 18:06 GMT
#8720
On February 02 2014 21:30 bangsholt wrote:
Show nested quote +
On February 02 2014 18:08 wozzot wrote:
Made a Mandelbrot fractal generator, but the issue is that it runs really slowly: it takes a whole minute to generate a single fractal. Would like to know whether the problem is because my program is inefficient or because of Perl / the GD library. tia

+ Show Spoiler +

#!perl
use strict;
use GD;

# Mandelbrot fractal generator

my ($width, $height) = (900, 675);
my ($x_min, $x_max) = (-2, 1);
my ($y_min, $y_max) = (-1, 1);
my ($x_min, $x_max) = (-2, .65);
my ($y_min, $y_max) = (-1, 1);
my ($y_min, $y_max) = (-1, 1);

my $multi = 1/1.1;
$_ /= $multi for ($x_min, $x_max, $y_min, $y_max);

my $x_range = $x_max - $x_min;
my $y_range = $y_max - $y_min;
my $x_offset = 0;
my $y_offset = 0;
my $it_count = 30;
my $bound = 1000;

my $filename = 'fractal.png';
open STDOUT, ">", "$filename";
binmode STDOUT;

my $bitmap = new GD::Image($width, $height, 0) or die "Could not initialize bitmap\n";

my %colors = (); # keys: "$r $g $b"
# Allocate colors like this:
# $colors{"$r $g $b"} = $bitmap->colorAllocate($r, $g, $b)
# unless exists($colors{"$r $g $b"});
#
# Set pixel like this:
# $bitmap->setPixel($pix_h, $pix_v, $colortable{"$a $b $c"});

my $black = $bitmap->colorAllocate(0, 0, 0); # Black background
my @color_inner = (128, 255, 0);
my @color_outer = (0, 0, 96);

sub color {
my ($it, $pix_h, $pix_v) = @_;
my $percent = $it/ $it_count;
$percent *= .8;
$percent = 1 if $percent > 1;

my $r = int($color_inner[0] * $percent + $color_outer[0] * (1 - $percent));
my $g = int($color_inner[1] * $percent + $color_outer[1] * (1 - $percent));
my $b = int($color_inner[2] * $percent + $color_outer[2] * (1 - $percent));

$colors{"$r $g $b"} = $bitmap->colorAllocate($r, $g, $b)
unless exists($colors{"$r $g $b"});

$bitmap->setPixel($pix_h, $pix_v, $colors{"$r $g $b"});
}

sub calc {
my ($r, $i, $it, $pix_h, $pix_v, @c) = @_;

# (a + bi) ** 2 = a ** 2 + 2abi - b ** 2
# z = z**2 + c

my $real = $r ** 2 - $i ** 2 + $c[0];
my $imag = 2 * $r * $i + $c[1];
color($it, $pix_h, $pix_v) if ($real > $bound);
return ($real, $imag);
}

for my $pix_h (0..$width-1) {
for my $pix_v (0..$height-1) {
my $r = ($pix_h + 1) / $width * $x_range + $x_min + $x_offset;
my $i = ($pix_v + 1) / $height * $y_range + $y_min + $y_offset;
my @c = ($r, $i);

for (1..$it_count) {
($r, $i) = calc($r, $i, $_, $pix_h, $pix_v, @c);
}
}
}

print $bitmap->png;


Profile your code. Then it should be obvious if it's Perl, the library or your code that's bad.

Merging the subroutine calls into the main function saved around 20 seconds, seems that Perl is slow with floating point operations though. Thanks
(ノ´∀`*)ノ ♪ ♫ ヽ(´ー`)ノ ♪ ♫ (✌゚∀゚)☞ ♪ ♫ ヽ(´ー`)ノ ♫ ♫ (ノ´_ゝ`)ノ彡 ┻━┻
Prev 1 434 435 436 437 438 1032 Next
Please log in or register to reply.
Live Events Refresh
Wardi Open
12:00
Qualifier #4
WardiTV777
TKL 188
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Reynor 392
TKL 188
ProTech123
StarCraft: Brood War
Calm 6673
Shuttle 2351
Horang2 2187
Jaedong 1386
Mini 585
actioN 539
EffOrt 432
ZerO 387
Light 357
Rush 224
[ Show more ]
Hyun 221
Snow 212
Last 191
Mong 123
Sharp 83
hero 61
JYJ54
Killer 53
sorry 42
ToSsGirL 32
Icarus 30
Aegong 23
scan(afreeca) 20
Terrorterran 16
yabsab 7
soO 7
Hm[arnc] 4
Dota 2
singsing2586
Gorgc1891
qojqva1630
boxi9898
canceldota15
Counter-Strike
x6flipin855
allub223
oskar127
Other Games
B2W.Neo1029
olofmeister998
hiko406
Fuzer 280
XaKoH 224
Hui .110
QueenE85
nookyyy 30
ZerO(Twitch)17
Happy2
Organizations
StarCraft: Brood War
lovetv 11
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• StrangeGG 75
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 3299
• WagamamaTV345
League of Legends
• TFBlade584
Upcoming Events
StarCraft2.fi
3h 8m
Replay Cast
10h 8m
The PondCast
20h 8m
OSC
1d 2h
Demi vs Mixu
Nicoract vs TBD
Babymarine vs MindelVK
ForJumy vs TBD
Shameless vs Percival
Replay Cast
1d 10h
Korean StarCraft League
2 days
CranKy Ducklings
2 days
WardiTV 2025
2 days
SC Evo League
2 days
BSL 21
3 days
Sziky vs OyAji
Gypsy vs eOnzErG
[ Show More ]
OSC
3 days
Solar vs Creator
ByuN vs Gerald
Percival vs Babymarine
Moja vs Krystianer
EnDerr vs ForJumy
sebesdes vs Nicoract
Sparkling Tuna Cup
3 days
WardiTV 2025
3 days
OSC
4 days
BSL 21
4 days
Bonyth vs StRyKeR
Tarson vs Dandy
Replay Cast
4 days
Wardi Open
4 days
StarCraft2.fi
5 days
Monday Night Weeklies
5 days
Replay Cast
5 days
WardiTV 2025
5 days
StarCraft2.fi
6 days
PiGosaur Monday
6 days
Liquipedia Results

Completed

Proleague 2025-11-30
RSL Revival: Season 3
Light HT

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
YSL S2
BSL Season 21
CSCL: Masked Kings S3
Slon Tour Season 2
Acropolis #4 - TS3
META Madness #9
SL Budapest Major 2025
ESL Impact League Season 8
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
Kuram Kup
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.