• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 01:41
CET 07:41
KST 15:41
  • 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
TL.net Map Contest #21: Winners9Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
StarCraft, SC2, HotS, WC3, Returning to Blizzcon!33$5,000+ WardiTV 2025 Championship6[BSL21] RO32 Group Stage4Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win10
StarCraft 2
General
Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win TL.net Map Contest #21: Winners RotterdaM "Serral is the GOAT, and it's not close" 5.0.15 Patch Balance Hotfix (2025-10-8) StarCraft, SC2, HotS, WC3, Returning to Blizzcon!
Tourneys
Constellation Cup - Main Event - Stellar Fest $5,000+ WardiTV 2025 Championship Sparkling Tuna Cup - Weekly Open Tournament Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond)
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace
Brood War
General
[ASL20] Ask the mapmakers — Drop your questions BW General Discussion [BSL21] RO32 Group Stage BGH Auto Balance -> http://bghmmr.eu/ SnOw's ASL S20 Finals Review
Tourneys
[Megathread] Daily Proleagues [ASL20] Grand Finals [BSL21] RO32 Group B - Sunday 21:00 CET [BSL21] RO32 Group A - Saturday 21:00 CET
Strategy
Current Meta PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Nintendo Switch Thread Path of Exile Stormgate/Frost Giant Megathread Should offensive tower rushing be viable in RTS games? Dawn of War IV
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
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine YouTube Thread Dating: How's your luck?
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Why we need SC3
Hildegard
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1534 users

The Big Programming Thread - Page 292

Forum Index > General Forum
Post a Reply
Prev 1 290 291 292 293 294 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.
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
April 26 2013 06:34 GMT
#5821
On April 26 2013 02:07 white_horse wrote:
Ok thanks for the information guys. Then is it better to learn HTML with php, or learn HTML with css? I've taken classes in c++/c so I'm pretty familiar with "actual" programming.

Simple roadmap:
1. HTML - Must learn, the very core of websites. Easy as hell to learn, it's just a bunch of tags used to structure data... "This is a header, this is a link", stuff like that.
2. CSS - Tells the browser how you want tags to look. This is what you use to make a website look good, but it's technically not needed. Find some websites from 1995 and you'll see how your website will probably look if you don't learn at least some CSS.
3. Javascript - Lets you script the browser to do some things. Used to create popup windows, change layout on the page dynamically (for example using jQuery), validate forms... If your website just displays information, you can probably do without javascript, otherwise it could be anything from useful to invaluable.
4. Some server-side language. You only really need this if you want to make more of a web-appplication, such as making a forum or bullentinboard... Pretty much, if you want data to change on your site over time without you having to rewrite the site. A blog for example, you COULD just rewrite the pages and add new blogs to them, you only need a server side language if you want to implement some interface which lets you create new posts, load posts from a database etc. Here, you simply pick based on what language you want to work with. PHP? Java with JSP? C#/VB.Net with ASP.net? Javascript with Node.js? Ruby with Ruby on rails? Python with Django? The possibilities are almost endless.
5. Some database. If you're using a server-side language, chances are very high you're going to want a database as well. MySql is probably the most common for hobbyists but there's of course a billion options, though most people would use an SQL database. SQL Server, Oracle, PostgreSql etc.
WolfintheSheep
Profile Joined June 2011
Canada14127 Posts
April 26 2013 07:13 GMT
#5822
On April 26 2013 15:34 Tobberoth wrote:
5. Some database. If you're using a server-side language, chances are very high you're going to want a database as well. MySql is probably the most common for hobbyists but there's of course a billion options, though most people would use an SQL database. SQL Server, Oracle, PostgreSql etc.

Not to discount what you say, but a lot of server-side frameworks implement the databases through their own API and functionality (even if they still utilize SQL).

Not to say that learning databases isn't helpful, but for basic functionality you will still get the database without directly interacting with it.
Average means I'm better than half of you.
BoxingKangaroo
Profile Blog Joined December 2011
Japan955 Posts
April 26 2013 07:50 GMT
#5823
Need a recommendation for a language to use for a game. It will essentially be a puzzle game. I will need each piece to be able to be dragged and dropped, and pieces should be able to overlap.

My last couple of 'games' were in C#, but were more 'click a button, stuff happens' kind of thing. User interaction was minimal, and there were no distinct objects to manipulate. I think I could do it C#, but it might be more trouble that it's worth.

My initial thought was Flash. Anyone had any experience with it? Good free tools/frameworks to use?

How about Silverlight? Did it ever get off the ground? How common are Silverlight plugins these days?

Any others?
Chaosvuistje
Profile Joined April 2010
Netherlands2581 Posts
April 26 2013 07:59 GMT
#5824
On April 26 2013 16:50 BoxingKangaroo wrote:
Need a recommendation for a language to use for a game. It will essentially be a puzzle game. I will need each piece to be able to be dragged and dropped, and pieces should be able to overlap.

My last couple of 'games' were in C#, but were more 'click a button, stuff happens' kind of thing. User interaction was minimal, and there were no distinct objects to manipulate. I think I could do it C#, but it might be more trouble that it's worth.

My initial thought was Flash. Anyone had any experience with it? Good free tools/frameworks to use?

How about Silverlight? Did it ever get off the ground? How common are Silverlight plugins these days?

Any others?


Flash is easy to learn if you have some experience with OOP. You technically can do it without doing classes and stuff, but doing games without OOP limits your options by a lot. Though with a simple puzzle it should be possible without.

If you want to make the design, it's still easier to build it with the official Flash CS programs. But if you want to program the classes and so on, I can recommend Flash Develop.

Silverlight is hardly used. Never took off and came too late to take a marketshare off the browser plugin market before it started to decline.
Tobberoth
Profile Joined August 2010
Sweden6375 Posts
April 26 2013 08:06 GMT
#5825
You should not use silverlight, it's barely supported by Microsoft anymore. Flash is an option if you want something simple, you could use XNA or something similar with C# though if that's your language of choice. SDL.Net etc works fine as well.
Yoshi-
Profile Joined October 2008
Germany10227 Posts
April 26 2013 08:10 GMT
#5826
On April 26 2013 15:04 tec27 wrote:
Show nested quote +
On April 26 2013 09:59 billy5000 wrote:
http://hypem.com/

Can someone explain how this site works, specifically how it allows the user to listen to music while moving from page to page? I have a very limited knowledge on single page apps, let alone front-end programming--is the site a hybrid or something?

They're just making AJAX requests with JS and replacing the content with the response, pretty simple. Its an older form of 'single page app' really. If you want a better example with better tech/code: http://soundcloud.com


They are also changing the url like this:
http://spoiledmilk.com/blog/html5-changing-the-browser-url-without-refreshing-page/
BoxingKangaroo
Profile Blog Joined December 2011
Japan955 Posts
April 26 2013 13:06 GMT
#5827
On April 26 2013 16:59 Chaosvuistje wrote:
Show nested quote +
On April 26 2013 16:50 BoxingKangaroo wrote:
Need a recommendation for a language to use for a game. It will essentially be a puzzle game. I will need each piece to be able to be dragged and dropped, and pieces should be able to overlap.

My last couple of 'games' were in C#, but were more 'click a button, stuff happens' kind of thing. User interaction was minimal, and there were no distinct objects to manipulate. I think I could do it C#, but it might be more trouble that it's worth.

My initial thought was Flash. Anyone had any experience with it? Good free tools/frameworks to use?

How about Silverlight? Did it ever get off the ground? How common are Silverlight plugins these days?

Any others?


Flash is easy to learn if you have some experience with OOP. You technically can do it without doing classes and stuff, but doing games without OOP limits your options by a lot. Though with a simple puzzle it should be possible without.

If you want to make the design, it's still easier to build it with the official Flash CS programs. But if you want to program the classes and so on, I can recommend Flash Develop.

Silverlight is hardly used. Never took off and came too late to take a marketshare off the browser plugin market before it started to decline.


Thanks, I'll give it a shot in Flash.
obesechicken13
Profile Blog Joined July 2008
United States10467 Posts
April 26 2013 13:40 GMT
#5828
On April 26 2013 17:10 Yoshi- wrote:
Show nested quote +
On April 26 2013 15:04 tec27 wrote:
On April 26 2013 09:59 billy5000 wrote:
http://hypem.com/

Can someone explain how this site works, specifically how it allows the user to listen to music while moving from page to page? I have a very limited knowledge on single page apps, let alone front-end programming--is the site a hybrid or something?

They're just making AJAX requests with JS and replacing the content with the response, pretty simple. Its an older form of 'single page app' really. If you want a better example with better tech/code: http://soundcloud.com


They are also changing the url like this:
http://spoiledmilk.com/blog/html5-changing-the-browser-url-without-refreshing-page/

I don't think Billy read the responses. I'll pm them to him as it seems we've all spent time reading his question and trying to help.
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.
billy5000
Profile Blog Joined December 2010
United States865 Posts
Last Edited: 2013-04-26 14:59:33
April 26 2013 14:56 GMT
#5829
Thanks everyone

I guess I really lack the front-end stuff to apply it, though. I've been getting away with knowing just enough to do basic stuff I learned from web framework books. Now my weakness is growing on me, especially dealing with stuff like ajax, json and jquery (even though I already know basic javascript).

Can anybody recommend me some books/online resources for someone at my stage? It's just so much easier to pick up a decent web framework and language book/resource than to start learning front-end programming that connects the two, rather than front-end by itself. Most of the time, it's either too basic or way too complicated for my level.
Tiger got to hunt, bird got to fly; Man got to sit and wonder, 'Why, why, why?' Tiger got to sleep, bird got to land; Man got to tell himself he understand. Vonnegut
Craton
Profile Blog Joined December 2009
United States17264 Posts
Last Edited: 2013-04-26 18:37:03
April 26 2013 18:36 GMT
#5830
Had a product demo the other day for the latest set of features we'd incorporated. Pretty much the dev + testers and two customer higher-ups present.

Going through the demo steps, click the last button for one process and nothing happens. Eventually figure out the button won't click it all. We think "well that's a really weird bug on something we haven't touched in awhile," but we write it down and just bypass the call through the backend.

A little later, same issue with dropdowns. Somehow (through the magic of WebEx) there was a dead spot toward the right of the screen that would just totally ignore button clicks. Shift the whole window a little to the left and magically everything works again.

Talk about bugs only present during demos.
twitch.tv/cratonz
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
April 26 2013 19:53 GMT
#5831
So I have a friend of mine owns a local roofing company in my town. He wants to get a very basic website up, so he can at least have some presence on the web. I really don't do that kind of development, but at the same time I don't want them to get scammed with outrageous fees if they look to have someone do it for them (one place they looked at would have charged them $80 a month for a basic website upkeep).

Anyone here know of any affordable and trustworthy online services that can build basic web sites and handle domain names? Preferably something that's easy to use.
Yoshi-
Profile Joined October 2008
Germany10227 Posts
April 26 2013 19:57 GMT
#5832
80$ per month isn't really outrageous
If anything that is ridicoulous cheap(okay depends on what they do)
Craton
Profile Blog Joined December 2009
United States17264 Posts
Last Edited: 2013-04-26 19:57:21
April 26 2013 19:57 GMT
#5833
Google imaging "geocities" is such a good nostalgia trip.
twitch.tv/cratonz
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
April 26 2013 20:00 GMT
#5834
On April 27 2013 04:57 Yoshi- wrote:
80$ per month isn't really outrageous
If anything that is ridicoulous cheap(okay depends on what they do)

Well they just want a simple website. Something that says, "hey, this is us. This is what we do. Here's how to contact us." Nothing more than that. They're just a local business.

Or maybe I'm asking the wrong question. Suppose I wanted to do it for them. I have experience with internal .NET web development. I do mostly BI stuff; I make stuff work but don't really have any knack for making stuff look pretty. Would there be an easy way for someone like me to build a basic web site for them, with some online assistance?
DeltaX
Profile Joined August 2011
United States287 Posts
April 26 2013 20:18 GMT
#5835
On April 27 2013 05:00 enigmaticcam wrote:
Show nested quote +
On April 27 2013 04:57 Yoshi- wrote:
80$ per month isn't really outrageous
If anything that is ridicoulous cheap(okay depends on what they do)

Well they just want a simple website. Something that says, "hey, this is us. This is what we do. Here's how to contact us." Nothing more than that. They're just a local business.

Or maybe I'm asking the wrong question. Suppose I wanted to do it for them. I have experience with internal .NET web development. I do mostly BI stuff; I make stuff work but don't really have any knack for making stuff look pretty. Would there be an easy way for someone like me to build a basic web site for them, with some online assistance?


I did a bit of searching on google and it seems basic websites run about 1-2 thousand plus maybe 25/month for hosting. If you have any programming experience and want to try your hand at making him a site, then you could find some template and prolly get something going in a weekend, but then one of you would have to set up hosting which may be a pain to support long term.
tofucake
Profile Blog Joined October 2009
Hyrule19151 Posts
April 26 2013 20:28 GMT
#5836
A single page site shouldn't be more than a few hundred (from scratch) and like $10/mo for hosting. Or do what most small companies do and get a host (DreamHost or something), install WordPress, and get a theme made for $100 or whatever.
Liquipediaasante sana squash banana
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
Last Edited: 2013-04-26 20:36:01
April 26 2013 20:30 GMT
#5837
Thanks all, you got me in the right direction!

Edit: Sorry, one last question. Would a host like DreamHost include a domain name? Or is that a separate thing?
Edit Edit: Nevermind, found it. ha. Sorry, I'm new to internet web development. Anyways, thanks again.
AmericanUmlaut
Profile Blog Joined November 2010
Germany2581 Posts
April 28 2013 10:38 GMT
#5838
On April 27 2013 03:36 Craton wrote:
Had a product demo the other day for the latest set of features we'd incorporated. Pretty much the dev + testers and two customer higher-ups present.

Going through the demo steps, click the last button for one process and nothing happens. Eventually figure out the button won't click it all. We think "well that's a really weird bug on something we haven't touched in awhile," but we write it down and just bypass the call through the backend.

A little later, same issue with dropdowns. Somehow (through the magic of WebEx) there was a dead spot toward the right of the screen that would just totally ignore button clicks. Shift the whole window a little to the left and magically everything works again.

Talk about bugs only present during demos.

Oh, that sucks so much D-X. That's why you always dry-run demos with the actual setup you'll use. I can't tell you how often we've had this kind of thing happen.
The frumious Bandersnatch
Craton
Profile Blog Joined December 2009
United States17264 Posts
April 29 2013 02:34 GMT
#5839
Right now I've got a multi-monitor setup and a TV. During normal operation I have the TV disconnected through windows and then when I want to use it I reconnect it (extended). Rather than go into Screen Resolution every single time, I'd like to have a simple batch script or program I can run to trigger it. Any ideas?
twitch.tv/cratonz
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2013-04-29 02:46:08
April 29 2013 02:44 GMT
#5840
Is the default Windows+P hotkey insufficient? That's what I used to use to toggle monitors on and off. Two clicks I guess.

You could probably script it by providing the parameter to DisplaySwitch directly, instead of using Windows+P to open it.

Of course DisplaySwitch /? isn't showing shit for me, yay windows, google probably has the answer.
Who after all is today speaking about the destruction of the Armenians?
Prev 1 290 291 292 293 294 1032 Next
Please log in or register to reply.
Live Events Refresh
Korean StarCraft League
03:00
Week 82
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Nina 206
ProTech122
StarCraft: Brood War
Sea 928
Zeus 585
Noble 21
Hm[arnc] 21
Bale 13
Dota 2
NeuroSwarm94
LuMiX1
League of Legends
JimRising 634
Reynor17
Counter-Strike
fl0m560
Other Games
summit1g16780
tarik_tv13013
WinterStarcraft376
C9.Mang0373
FrodaN184
Organizations
Other Games
gamesdonequick750
Counter-Strike
PGL151
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Azhi_Dahaki14
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Stunt709
Other Games
• Shiphtur173
Upcoming Events
CranKy Ducklings
3h 19m
IPSL
11h 19m
dxtr13 vs OldBoy
Napoleon vs Doodle
LAN Event
11h 19m
Lambo vs Clem
Scarlett vs TriGGeR
ByuN vs TBD
Zoun vs TBD
BSL 21
13h 19m
Gosudark vs Kyrie
Gypsy vs OyAji
UltrA vs Radley
Dandy vs Ptak
Replay Cast
16h 19m
Sparkling Tuna Cup
1d 3h
WardiTV Korean Royale
1d 5h
IPSL
1d 11h
JDConan vs WIZARD
WolFix vs Cross
LAN Event
1d 11h
BSL 21
1d 13h
spx vs rasowy
HBO vs KameZerg
Cross vs Razz
dxtr13 vs ZZZero
[ Show More ]
Replay Cast
2 days
Wardi Open
2 days
WardiTV Korean Royale
3 days
Replay Cast
4 days
Kung Fu Cup
4 days
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
4 days
The PondCast
5 days
RSL Revival
5 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
5 days
WardiTV Korean Royale
5 days
RSL Revival
6 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
6 days
Liquipedia Results

Completed

BSL 21 Points
SC4ALL: StarCraft II
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
Stellar Fest: Constellation Cup
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 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.