• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 18:11
CEST 00:11
KST 07:11
  • 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
[ASL19] Finals Recap: Standing Tall9HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Flash Announces Hiatus From ASL59Weekly Cups (June 23-29): Reynor in world title form?13FEL Cracov 2025 (July 27) - $8000 live event19Esports World Cup 2025 - Final Player Roster16Weekly Cups (June 16-22): Clem strikes back1
StarCraft 2
General
Program: SC2 / XSplit / OBS Scene Switcher Statistics for vetoed/disliked maps The SCII GOAT: A statistical Evaluation Weekly Cups (June 23-29): Reynor in world title form? PiG Sty Festival #5: Playoffs Preview + Groups Recap
Tourneys
FEL Cracov 2025 (July 27) - $8000 live event RSL: Revival, a new crowdfunded tournament series Korean Starcraft League Week 77 Master Swan Open (Global Bronze-Master 2) [GSL 2025] Code S: Season 2 - Semi Finals & Finals
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma Mutation # 477 Slow and Steady
Brood War
General
Flash Announces Hiatus From ASL SC uni coach streams logging into betting site BGH Mineral Boosts Tutorial Video Player “Jedi” cheat on CSL Replays question
Tourneys
[Megathread] Daily Proleagues [BSL20] Grand Finals - Sunday 20:00 CET Small VOD Thread 2.0 [BSL20] GosuLeague RO16 - Tue & Wed 20:00+CET
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Path of Exile What do you want from future RTS games? Beyond All Reason
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
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread Trading/Investing Thread Things Aren’t Peaceful in Palestine The Games Industry And ATVI
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
2024 - 2025 Football Thread Formula 1 Discussion NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Blogs
Culture Clash in Video Games…
TrAiDoS
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
StarCraft improvement
iopq
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 565 users

The Big Programming Thread - Page 292

Forum Index > General Forum
Post a Reply
Prev 1 290 291 292 293 294 1031 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 States17246 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 States17246 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
Hyrule19030 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
Germany2577 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 States17246 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 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 11h 49m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
JuggernautJason126
ProTech79
Nina 78
NeuroSwarm 4
StarCraft: Brood War
firebathero 233
NaDa 34
Rock 31
LancerX 26
Dota 2
LuMiX1
League of Legends
Grubby3632
Dendi1369
Heroes of the Storm
Liquid`Hasu538
Khaldor269
Other Games
summit1g9854
FrodaN2255
fl0m654
RotterdaM474
Sick63
ViBE27
Organizations
Other Games
BasetradeTV42
StarCraft 2
angryscii 32
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 23 non-featured ]
StarCraft 2
• Berry_CruncH288
• musti20045 45
• davetesta43
• tFFMrPink 19
• OhrlRock 3
• Kozan
• Migwel
• sooper7s
• AfreecaTV YouTube
• intothetv
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• Pr0nogo 7
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21446
• Ler135
League of Legends
• Doublelift3976
• Jankos2548
Other Games
• imaqtpie1068
• Shiphtur389
• WagamamaTV375
Upcoming Events
RSL Revival
11h 49m
Clem vs Classic
SHIN vs Cure
FEL
13h 49m
WardiTV European League
13h 49m
BSL: ProLeague
19h 49m
Dewalt vs Bonyth
Replay Cast
2 days
Sparkling Tuna Cup
2 days
WardiTV European League
2 days
The PondCast
3 days
Replay Cast
4 days
RSL Revival
4 days
[ Show More ]
Replay Cast
5 days
RSL Revival
5 days
FEL
5 days
RSL Revival
6 days
FEL
6 days
FEL
6 days
Liquipedia Results

Completed

BSL 2v2 Season 3
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL Season 20
Acropolis #3
KCM Race Survival 2025 Season 2
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
Championship of Russia 2025
RSL Revival: Season 1
Murky Cup #2
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025

Upcoming

2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
2025 ACS Season 2
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
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.