• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 19:08
CET 00:08
KST 08:08
  • 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
ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
2026 KongFu Cup Announcement3BGE Stara Zagora 2026 cancelled11Blizzard Classic Cup - Tastosis announced as captains15Weekly Cups (March 2-8): ByuN overcomes PvT block4GSL CK - New online series18
StarCraft 2
General
Blizzard Classic Cup - Tastosis announced as captains BGE Stara Zagora 2026 cancelled BGE Stara Zagora 2026 announced ByuL: The Forgotten Master of ZvT Terran AddOns placement
Tourneys
RSL Season 4 announced for March-April Sparkling Tuna Cup - Weekly Open Tournament 2026 KongFu Cup Announcement [GSL CK] Team Maru vs. Team herO StarCraft Evolution League (SC Evo Biweekly)
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 516 Specter of Death Mutation # 515 Together Forever Mutation # 514 Ulnar New Year
Brood War
General
BSL 22 Map Contest — Submissions OPEN to March 10 ASL21 General Discussion BGH Auto Balance -> http://bghmmr.eu/ Are you ready for ASL 21? Hype VIDEO Gypsy to Korea
Tourneys
[Megathread] Daily Proleagues [BSL22] Open Qualifiers & Ladder Tours IPSL Spring 2026 is here! ASL Season 21 Qualifiers March 7-8
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Zealot bombing is no longer popular?
Other Games
General Games
Path of Exile Stormgate/Frost Giant Megathread Nintendo Switch Thread PC Games Sales Thread No Man's Sky (PS4 and PC)
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
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
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
Things Aren’t Peaceful in Palestine US Politics Mega-thread Mexico's Drug War Russo-Ukrainian War Thread NASA and the Private Sector
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! [Req][Books] Good Fantasy/SciFi books
Sports
Formula 1 Discussion 2024 - 2026 Football Thread General nutrition recommendations Cricket [SPORT] TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Money Laundering In Video Ga…
TrAiDoS
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1501 users

The Big Programming Thread - Page 279

Forum Index > General Forum
Post a Reply
Prev 1 277 278 279 280 281 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.
tec27
Profile Blog Joined June 2004
United States3702 Posts
March 30 2013 22:14 GMT
#5561
On March 29 2013 22:51 Nausea wrote:
Show nested quote +
On March 29 2013 21:17 ddengster wrote:
To answer your example, you can change the z-values to some unique value (something which you know you will probably never hit)when you 'drop' it. And you could loop over all the windows for the highest z values and assign the next highest z to the window you want. Or even define a 'highest' z value that the whole UI system follows.


Thank you. I got another answer on gamedev which I think I will try.

"Instead of storing the window pointers in a vector, store them in the list. Mouse testing is then done from top to bottom, and drawing is done from bottom to top. Moving a window to the top requires that the window be removed and added to the front of the list."

You can also just store your windows in a linked list, ordered by last focus. Draw from back to front, test for input from front to back. Whenever you focus a window, remove that window from the linked list and add it back at the head. Should be simpler and faster than checking a bunch of z-value numbers
Can you jam with the console cowboys in cyberspace?
necrosexy
Profile Joined March 2011
451 Posts
March 31 2013 03:08 GMT
#5562
JAVA

i'm trying to average a color from subimages of a bufferedimage.
i'm using the getRGB(int, int, int, int, int[], int, int) method that returns an integer array,
but the array is filled with large negative integers.
How do I use these to average the color?
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2013-03-31 03:35:42
March 31 2013 03:32 GMT
#5563
This may be of assistance:

http://docs.oracle.com/javase/6/docs/api/java/awt/image/BufferedImage.html#getRGB(int, int, int, int, int[], int, int)
http://stackoverflow.com/questions/6001211/format-of-type-int-rgb-and-type-int-argb

Recall that an int in java is 32 bits. Look at this like 4 bytes:

10101010 | 10101010 | 10101010 | 10101010

With TYPE_INT_ARBG, you get 4 bytes, a (alpha), r (red), b (blue), g (green) in order. So you get 8 bits of each color, and 8 bits of alpha:

aaaaaaaa | rrrrrrrr | bbbbbbbb | gggggggg

I don't know how you're defining average color, but presumably you want to separate out the r, b, and g portions (dunno if you care about alpha).

You're going to have to learn how to do bit shifting 'n shit for that, unless BufferedImage has helper methods. See if you can dig up helper methods for dealing with TYPE_INT_ARBG. If not, have fun with the >> & bullshit


Also this may be one of those things that gets fucked up on big vs. little endian, but probably not if you're only using java. I think java may be stuck at big endian regardless of your comp's architecture. Perhaps.
Who after all is today speaking about the destruction of the Armenians?
necrosexy
Profile Joined March 2011
451 Posts
Last Edited: 2013-03-31 04:36:25
March 31 2013 04:31 GMT
#5564
On March 31 2013 12:32 phar wrote:
This may be of assistance:

http://docs.oracle.com/javase/6/docs/api/java/awt/image/BufferedImage.html#getRGB(int, int, int, int, int[], int, int)
http://stackoverflow.com/questions/6001211/format-of-type-int-rgb-and-type-int-argb

Recall that an int in java is 32 bits. Look at this like 4 bytes:

10101010 | 10101010 | 10101010 | 10101010

With TYPE_INT_ARBG, you get 4 bytes, a (alpha), r (red), b (blue), g (green) in order. So you get 8 bits of each color, and 8 bits of alpha:

aaaaaaaa | rrrrrrrr | bbbbbbbb | gggggggg

I don't know how you're defining average color, but presumably you want to separate out the r, b, and g portions (dunno if you care about alpha).

You're going to have to learn how to do bit shifting 'n shit for that, unless BufferedImage has helper methods. See if you can dig up helper methods for dealing with TYPE_INT_ARBG. If not, have fun with the >> & bullshit


Also this may be one of those things that gets fucked up on big vs. little endian, but probably not if you're only using java. I think java may be stuck at big endian regardless of your comp's architecture. Perhaps.

i'm trying to pixelate an image. so i'm trying average the color of each subimage, acting as a huge pixel in the final image.

we haven't gone over bit shifting in class, so i think a solution shouldn't involve that :s

i separated the colors, but how i do converted them back into an rgbarray[] ? i'm using the corresponding setRGB(...) with 6 args

not generalized ...
for(int y = 0; y < height - 54; y += 53) {
for(int x = 0; x < width - 72; x += 71) {

img.getSubimage(x, y, 71, 53).getRGB(
0, 0, 71, 53, samples, 0, 71);

for(int i = 0; i < samples.length - 1; i++) {
colorSum += samples[i];
System.out.println(samples[i]);
}

for(int i = 0; i < samples.length - 1; i++)
Color c = new Color(samples[i]);
int r = c.getRed();
int g = c.getGreen();
int b = c.getBlue();
}
//calculate average of each color ...
pixelated.getSubimage(x, y, 70, 52).setRGB(0, 0,
70, 52, samples, 0, 70);
}
necrosexy
Profile Joined March 2011
451 Posts
Last Edited: 2013-03-31 04:37:42
March 31 2013 04:37 GMT
#5565
dp .
Try
Profile Blog Joined August 2007
United States1293 Posts
March 31 2013 04:44 GMT
#5566
Bit of a stretch to post it here, but anyone on TL at the Chicago Invitational ICPC Programming Contest this Weekend?
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-03-31 18:42:18
March 31 2013 18:39 GMT
#5567
Java

When I use socket.getInetAddress(), I usually get this format: /IP
I'd like to change it to only "IP" without the forward slash. Any ideas? I'm currently thinking of override, but how do I know what variable should I use?

E.g.


@override
public String toString() {
return inetAddress;
}


Or do I have to use some kind of string manipulation to get only the IP out of this method getInetAddress()?
JeanLuc
Profile Joined September 2010
Canada377 Posts
Last Edited: 2013-03-31 18:59:40
March 31 2013 18:52 GMT
#5568
On March 31 2013 12:08 necrosexy wrote:
JAVA

i'm trying to average a color from subimages of a bufferedimage.
i'm using the getRGB(int, int, int, int, int[], int, int) method that returns an integer array,
but the array is filled with large negative integers.
How do I use these to average the color?


This isn't java, but it may be of use to you. Basically you can pixelate images on an html5 canvas, or otherwise manipulate the colour values of each pixel. I've seen a bunch of tutorials on this, this is what I found from a google search right now

http://www.html5canvastutorials.com/labs/html5-canvas-pixelated-image-focus/

Hope this helps

Edit: http://html5doctor.com/video-canvas-magic/
If you can't find it within yourself to stand up and tell the truth-- you don't deserve to wear that uniform
necrosexy
Profile Joined March 2011
451 Posts
April 01 2013 00:02 GMT
#5569
On April 01 2013 03:52 JeanLuc wrote:
Show nested quote +
On March 31 2013 12:08 necrosexy wrote:
JAVA

i'm trying to average a color from subimages of a bufferedimage.
i'm using the getRGB(int, int, int, int, int[], int, int) method that returns an integer array,
but the array is filled with large negative integers.
How do I use these to average the color?


This isn't java, but it may be of use to you. Basically you can pixelate images on an html5 canvas, or otherwise manipulate the colour values of each pixel. I've seen a bunch of tutorials on this, this is what I found from a google search right now

http://www.html5canvastutorials.com/labs/html5-canvas-pixelated-image-focus/

Hope this helps

Edit: http://html5doctor.com/video-canvas-magic/

i figured it out. i was on the right track.

[...]
avgR = r / samples.length;
avgG = g / samples.length;
avgB = b / samples.length;

//assign average to samples[]
for(int i = 0; i < samples.length - 1; i++) {
Color c = new Color(avgR, avgG, avgB);
samples[i] = c.getRGB();
}

//set pixels of the average colors from samples[]
//to the blank BufferedImage 'pixelated'
pixelated.getSubimage(x, y, xOffset, yOffset).setRGB(0, 0,
xOffset, yOffset, samples, 0, xOffset);

int r = 0; int g = 0; int b = 0;
}

n0ise
Profile Joined April 2010
3452 Posts
April 01 2013 17:16 GMT
#5570
Anyone here familiar with Eclipse RCP?

Could use a bit of help
Isualin
Profile Joined March 2011
Germany1903 Posts
Last Edited: 2013-04-01 19:36:43
April 01 2013 19:36 GMT
#5571
Anyone tried pythonchallenge? I am at question #5 now and its been fun so far
| INnoVation | The literal god TY | ByuNjwa | LRSL when? |
lannisport
Profile Joined February 2012
878 Posts
April 01 2013 20:56 GMT
#5572
Can anyone recommend any WAMP tutorials or paid classes? I started developing my website locally but couldn't get it to communicate with the Amazon API so I did a nono and just edited my live site. But I landed a project and I want to do it properly so I'm starting with bootstrap (also downloaded sublime text which is awesome).

Also with this site it's not that big so after I develop it on WAMP it'll probably be easy to just ftp the site when it's finished. But in general how do you deploy a larger website or web app? Or what if you need to make adjustments? Do you make every adjustment locally first then upload? Is there some sort of web development framework I can follow?
tofucake
Profile Blog Joined October 2009
Hyrule19194 Posts
April 01 2013 23:01 GMT
#5573
Generally it's something like

Production, Development, Sandbox

And most ISPs block home servers. You're best off renting a server from an actual server company and using your home WAMP setup as your sandbox/development server.
Liquipediaasante sana squash banana
lannisport
Profile Joined February 2012
878 Posts
Last Edited: 2013-04-02 01:08:31
April 02 2013 01:07 GMT
#5574
On April 02 2013 08:01 tofucake wrote:
Generally it's something like

Production, Development, Sandbox

And most ISPs block home servers. You're best off renting a server from an actual server company and using your home WAMP setup as your sandbox/development server.


Thanks for the info. I think I can just make a subdomain on my webhost and just dump the database and all the files onto it. I was looking at Git but it seems pretty complicated (I'm not even good with basic command line) and more powerful than what I really need. But it has just the features I'm looking for. Version control would be nice, speedy cloning would be desirable for quick "pulls and pushes". Having the ability to just download the site off a central server work on it locally and upload it after modifications in a quick and easy manner would be great because I usually have other programmers to do the actual development of parts of the site. Can you recommend an easy one with a GUI (and even a development server/environment)?
AmericanUmlaut
Profile Blog Joined November 2010
Germany2594 Posts
April 02 2013 08:40 GMT
#5575
On April 02 2013 10:07 lannisport wrote:
Show nested quote +
On April 02 2013 08:01 tofucake wrote:
Generally it's something like

Production, Development, Sandbox

And most ISPs block home servers. You're best off renting a server from an actual server company and using your home WAMP setup as your sandbox/development server.


Thanks for the info. I think I can just make a subdomain on my webhost and just dump the database and all the files onto it. I was looking at Git but it seems pretty complicated (I'm not even good with basic command line) and more powerful than what I really need. But it has just the features I'm looking for. Version control would be nice, speedy cloning would be desirable for quick "pulls and pushes". Having the ability to just download the site off a central server work on it locally and upload it after modifications in a quick and easy manner would be great because I usually have other programmers to do the actual development of parts of the site. Can you recommend an easy one with a GUI (and even a development server/environment)?

Git has many GUIs (http://git-scm.com/downloads/guis), and is very easy to use for basic version control. SVN is also good, but not really any easier to use.
The frumious Bandersnatch
althaz
Profile Joined May 2010
Australia1001 Posts
Last Edited: 2013-04-02 10:25:14
April 02 2013 10:24 GMT
#5576
On March 29 2013 03:18 ZenithM wrote:
Show nested quote +
On March 29 2013 03:10 POiNTx wrote:

try
{
statements;
}
catch (ExceptionClass e)
{
statements
}


I think that is even more readable.

This is another well-established coding convention, and what is standard in C# (see Microsoft's guidelines here: http://msdn.microsoft.com/en-us/library/vstudio/ff926074.aspx). But what darkness proposed was a really weird and ugly hybrid form of the Java standard and the C# one :D
As someone said, as long as everybody who works on the same code uses the same conventions that's fine, but it's better to pick up established conventions as your own to begin with.

I personally follow the Oracle Java Code conventions to code in Java and the Microsoft guidelines to code in C#. I believe it's good to be able to follow flexibly whatever convention you have to use in a given situation.

Edit: Damn and it's been such a long time since I've written some C#. I need me some C#
It's so much more cool, fun and powerful than Java... :'(

C# is my language of choice so I also use this format. It's by far (IMO) the most readable. But of course when I am asked (usually this involves force) to use other languages, I use their conventions if I am aware of them.
The first rule we don't talk about race conditions. of race conditions is
lannisport
Profile Joined February 2012
878 Posts
April 02 2013 15:54 GMT
#5577
On April 02 2013 17:40 AmericanUmlaut wrote:
Show nested quote +
On April 02 2013 10:07 lannisport wrote:
On April 02 2013 08:01 tofucake wrote:
Generally it's something like

Production, Development, Sandbox

And most ISPs block home servers. You're best off renting a server from an actual server company and using your home WAMP setup as your sandbox/development server.


Thanks for the info. I think I can just make a subdomain on my webhost and just dump the database and all the files onto it. I was looking at Git but it seems pretty complicated (I'm not even good with basic command line) and more powerful than what I really need. But it has just the features I'm looking for. Version control would be nice, speedy cloning would be desirable for quick "pulls and pushes". Having the ability to just download the site off a central server work on it locally and upload it after modifications in a quick and easy manner would be great because I usually have other programmers to do the actual development of parts of the site. Can you recommend an easy one with a GUI (and even a development server/environment)?

Git has many GUIs (http://git-scm.com/downloads/guis), and is very easy to use for basic version control. SVN is also good, but not really any easier to use.


Thanks for this sir. Sublime text is awesome btw! It's gonna make learning python a whole lot funner.
DMII
Profile Joined September 2011
Germany92 Posts
April 02 2013 18:20 GMT
#5578
I am currently trying to get into the habit of working on something every day, because I think I am a way too lazy person.
The problem with this is, that I want to start small but only get ideas which are a little too big for my taste. However, it also lead to a question, which is less linked to my own problems, but interesting in general. At least for people interested in programming.

What programs should every programmer write at least once in his life?
What kind of functionality should every programmer implement at least once in his life? (Better version I found while writing this post. )

It's kind of like the question about which programming languages every programmer should know, just a little different since it isn't as much about the tools but about their application.
All is fair in love and war. Starcraft is both.
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
April 02 2013 18:47 GMT
#5579
On April 03 2013 03:20 DMII wrote:
I am currently trying to get into the habit of working on something every day, because I think I am a way too lazy person.
The problem with this is, that I want to start small but only get ideas which are a little too big for my taste. However, it also lead to a question, which is less linked to my own problems, but interesting in general. At least for people interested in programming.

What programs should every programmer write at least once in his life?
What kind of functionality should every programmer implement at least once in his life? (Better version I found while writing this post. )

It's kind of like the question about which programming languages every programmer should know, just a little different since it isn't as much about the tools but about their application.


I like that attitude

Building something new every day is very difficult. I vaguely remember in the haze of my youth I went through a period where I programmed something new every day. I remember using programming competition problems as fodder, going through them by the pile until I got bored of algorithms.

From there I moved onto bigger projects, thinking of how to create programs which are based on features generated from the algorithms.

Then I went to college, gave up on CS and 'traditional programming', then learned more functional and math scripting as my needs required.

Finally, I'm back at programming, but more on the maintenance side.

Anywho, I got distracted.... If you're still looking into algorithms and implementation details, then find a good programming challenge website (there are dozens for each language). If you are trying to make the jump to features within a larger program, then try to write something like Conway's Game of Life. If you think you're up for the challenge, try to design projects based on your own need, then implement them and deploy them. You win if you can make 1$ from it.


Any sufficiently advanced technology is indistinguishable from magic
CorsairHero
Profile Joined December 2008
Canada9491 Posts
April 03 2013 00:15 GMT
#5580
man...double pointers Anyone going for a C programming job should look them up.
© Current year.
Prev 1 277 278 279 280 281 1032 Next
Please log in or register to reply.
Live Events Refresh
BSL
20:00
S22 - Ladder Tour #1
ZZZero.O89
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
elazer 313
PiGStarcraft188
Nathanias 95
JuggernautJason59
Ketroc 54
ROOTCatZ 53
Nina 39
StarCraft: Brood War
Sea 11073
ZZZero.O 89
Aegong 84
Backho 55
Dota 2
monkeys_forever326
canceldota18
LuMiX2
Super Smash Bros
hungrybox704
Heroes of the Storm
Khaldor316
Other Games
summit1g9885
FrodaN4504
Grubby4319
KnowMe413
crisheroes231
mouzStarbuck186
ArmadaUGS80
ViBE33
Organizations
Other Games
gamesdonequick2262
ComeBackTV 221
BasetradeTV51
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• musti20045 44
• HeavenSC 41
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• Kozan
• IndyKCrew
StarCraft: Brood War
• Azhi_Dahaki13
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21533
League of Legends
• Doublelift4524
• Scarra712
Other Games
• imaqtpie1328
Upcoming Events
Sparkling Tuna Cup
10h 53m
RSL Revival
10h 53m
ByuN vs SHIN
Maru vs Krystianer
WardiTV Team League
12h 53m
Patches Events
17h 53m
BSL
20h 53m
Replay Cast
1d
Replay Cast
1d 9h
Wardi Open
1d 12h
Monday Night Weeklies
1d 17h
OSC
2 days
[ Show More ]
WardiTV Team League
2 days
GSL
3 days
The PondCast
4 days
KCM Race Survival
4 days
WardiTV Team League
4 days
Replay Cast
5 days
KCM Race Survival
5 days
WardiTV Team League
5 days
Korean StarCraft League
6 days
uThermal 2v2 Circuit
6 days
BSL
6 days
Liquipedia Results

Completed

Proleague 2026-03-13
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
BSL Season 22
RSL Revival: Season 4
Nations Cup 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

CSL Elite League 2026
ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
Acropolis #4
IPSL Spring 2026
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
NationLESS Cup
Stake Ranked Episode 2
CS Asia Championships 2026
IEM Atlanta 2026
Asian Champions League 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
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 © 2026 TLnet. All Rights Reserved.