Qt5 (a GUI toolkit) now directly exposes GLSL shaders so you can make custom effects for your user-interface elements.Is learning opengl useful for anything?
Qt5 (a GUI toolkit) now directly exposes GLSL shaders so you can make custom effects for your user-interface elements.Is learning opengl useful for anything?
Modern Qt (a GUI toolkit) now directly exposes GLSL shaders so you can make custom effects for your user-interface elements.
Very true.Decided to make one of my next projects understanding/learning ASP.Net MVC as it seems that it is more in tune with how web development is moving compared to webforms... Just have to stick with it I guess as the previous times I've tried to look at it I just get a few things working and then drop it for another more important project.
Is learning opengl useful for anything?
This is probably asked a lot here, but what's a good way to learn java? Is there a site like code academy for java? I want to relearn java and learn data structures(but I need a good grasp in java first) so when I retake that my data structure course, I can pass it easily.
Yeah, thenewboston's channel is a great place to learn any programming language (That he does).Funny, I came here look for the same answer too. I was looking at the first page and saw some people linked the official Java tutorials.( Not sure if these are right for me)
http://docs.oracle.com/javase/tutorial/
And thenewboston videos on youtube
I going into Java next semester so I really want to get a head start.
Funny, I came here look for the same answer too. I was looking at the first page and saw some people linked the official Java tutorials.( Not sure if these are right for me)
http://docs.oracle.com/javase/tutorial/
And thenewboston videos on youtube
I going into Java next semester so I really want to get a head start.
I'm having my first semester of Java and I hate itLast year I took a semester of Java and loved it. It was also my first time programming but I really got the basics down. I'm starting a computer science class mid-January that focuses on Java and I want to start getting back into it before then, to prepare and also just because I want to. I have done some programming over the last few months but not as much I would have liked.
Basically what I want to know, is there a good way I can prepare a little before my class begins? I feel that learning in a classroom with others is better for me since we can help each other and it's easier to realize mistakes instead of forming bad habits, but if I can start learning on my own in some way that'd be great. I have watched some tutorials on YouTube (lots of newboston) and followed some Oracle tutorials. Should I begin doing these things again or is there something else you guys would recommend?
Thanks![]()
Thanks for posting this. I'll look into thenewboston videos too. I also ordered head first java but Amazon still hasn't shipped it. I just hope I can get everything I need to know before I take that data structures class in the summer...should be enough time.Funny, I came here look for the same answer too. I was looking at the first page and saw some people linked the official Java tutorials.( Not sure if these are right for me)
http://docs.oracle.com/javase/tutorial/
And thenewboston videos on youtube
I going into Java next semester so I really want to get a head start.
OpenGL ES dominates mobile.
By mark you mean select, right? Like dragging the cursor over text so that it's selected?Hm, would it be possible to have a function in C# that catches marked text even outside the program window? I want to write a program that gives information for text I am marking on the fly, but I cant copy the text into a program window before. It would need to work in Office text documents or on websites.
Is there any way to do that?
By mark you mean select, right? Like dragging the cursor over text so that it's selected?
It's not possible for something that will work with every single program, since they won't all use the default windows text controls. But you can make it work with many things. It depends on how that program does text.
Here's what I googled: C# capture selected text from other windows
Here's some starting points:
http://stackoverflow.com/a/513913/122396
http://stackoverflow.com/questions/2763563/capture-highlighted-text-from-any-window-using-c-sharp
http://msdn.microsoft.com/en-us/library/ms745158.aspx
Many programs won't work with the UI Automation stuff. You'd have to write special exceptions for each program that doesn't work, which probably includes most browsers.
If your goal is mainly open office, you might be better off working from the other end. By that I mean: instead of writing a program that in general tries to read highlighted text from other programs, write a program that reads highlighted text specifically from open office. It seems like they have some kind of API for it. You might try this if the UI Automation stuff doesn't pan out.I mean that if I highlight/mark/select a text. The most important option would be Open Office atm, guess I just try and see whether it works.
Thanks a lot! Didnt know what to google for.
I'm having my first semester of Java and I hate it![]()
Do you hate the class, teacher, assignments, Java itself, or programming in general, or what?I'm having my first semester of Java and I hate it![]()
Best thing about Java is that there are billion people asking for the same "why the fuck do I need to do it like that" questions you are wondering so it's easy to just google the answers
Ah yes. I fondly remember my first Java application, developed in Java (and not Python/Qt) because of its portability. Cross-platform GUI running on Solaris and Windows. Except that on Windows the text input boxes all reversed the text being typed into them. Cross-platform my ass. I'm sure it's improved since then...I find the best thing about Java is the portability and API. If thats what you care it about its the best OOP for the job. I also hate pointers so...
Question: Where should I start with Java? What are the best Java tutorial sites?
I'm having my first semester of Java and I hate it![]()
Flex 4 is the worst. The worst. And I am stuck with it for like 5 more months.
It can't even do fucking properly working scrollbars without 100 lines of code. It's like Java but worse.
{religieux=5, realphilosophie=1, rallié=1, scientifique=16, efface=1, correspondait=1, nouveaux=5, (...) }
Is there a simple way to show the 20 most frequent words from a text file, in Java? I've managed to read a file and build a HashMap like this:
Code:{religieux=5, realphilosophie=1, rallié=1, scientifique=16, efface=1, correspondait=1, nouveaux=5, (...) }
But you can't sort HashMaps, so I must be using the wrong data structure.
Anyone have experience publishing on Google Play? I really need to know if I can publish anything privately. I want to publish something but just for test before I release it to the public.
I think what you are looking is Google Play Private Channel
http://support.google.com/a/bin/answer.py?hl=en&answer=2494992
Publish it and don't tell anyone. The Play Store is now big enough that the chances of someone installing your app without explicit promotion is about zero.Anyone have experience publishing on Google Play? I really need to know if I can publish anything privately. I want to publish something but just for test before I release it to the public.
All right ProgrammingGAF.. here's my scenario:
I'm a Comp Sci major, and my uni's language of choice is C++. So far I've learned basic loops, up to functions, and structs.. but the way we're being taught seems a bit weird, down to the point where before our final in Intermediate C++, the teacher announced that he didn't like how our book taught certain things and wanted us to rely on his power points only.
I was doing fine up until we got into structs, then I kind of just fell flat on my face. The next class is "Object Oriented Programming with C++" and I'm a little iffy about it. I know C++ can be a great language, and sure, I love games and would like to get into game development, but I'm terrible with it.
The two books that seem to be commonly recommended are C++ Primer Plus, and C++ Primer. Any preference between those two? Any tips on how I can get better at utilizing functions and structs, etc.? Maybe my brain just isn't piecing this all together correctly
I'm a third year CS major (though basically second year because I wasted two semesters), and though I know how to program well in Java (last 2+ years), and have dabbled in C and MIPS Assembly, I never program for fun. It's too... daunting to come up with my entirely own ideas and having to deal with outdated guides to help me through things.
What would you guys suggest I do? I have the rest of this break.
I have barely taken any elective classes because I had to transfer and I did miserably this semester and it really fucked me up, so I'm pretty far behind now. Feeling pretty pathetic and really want to do some supplemental independent learning.
Publish it and don't tell anyone. The Play Store is now big enough that the chances of someone installing your app without explicit promotion is about zero.
Is it realistic to program a Space Invader clone in C?
We're a group of bloody beginners who have to find a project that we can do as a homework. In my imagination it sounds like a reasonable amount of work. We're gonna use SDL for Video/Audio.
I think the thing I'm most afraid of is the set of enemies, and the ability to kill them off one by one. Are we going to run into problems there?
I can't recommend C++ Primer Plus enough. It's absolutely incredible for pushing home both beginner and intermediate concepts. I'd also seriously look into Effective C++.
All right ProgrammingGAF.. here's my scenario:
I'm a Comp Sci major, and my uni's language of choice is C++. So far I've learned basic loops, up to functions, and structs.. but the way we're being taught seems a bit weird, down to the point where before our final in Intermediate C++, the teacher announced that he didn't like how our book taught certain things and wanted us to rely on his power points only.
I was doing fine up until we got into structs, then I kind of just fell flat on my face. The next class is "Object Oriented Programming with C++" and I'm a little iffy about it. I know C++ can be a great language, and sure, I love games and would like to get into game development, but I'm terrible with it.
The two books that seem to be commonly recommended are C++ Primer Plus, and C++ Primer. Any preference between those two? Any tips on how I can get better at utilizing functions and structs, etc.? Maybe my brain just isn't piecing this all together correctly
I'm a third year CS major (though basically second year because I wasted two semesters), and though I know how to program well in Java (last 2+ years), and have dabbled in C and MIPS Assembly, I never program for fun. It's too... daunting to come up with my entirely own ideas and having to deal with outdated guides to help me through things.
What would you guys suggest I do? I have the rest of this break.
I have barely taken any elective classes because I had to transfer and I did miserably this semester and it really fucked me up, so I'm pretty far behind now. Feeling pretty pathetic and really want to do some supplemental independent learning.
Is it realistic to program a Space Invader clone in C?
We're a group of bloody beginners who have to find a project that we can do as a homework. In my imagination it sounds like a reasonable amount of work. We're gonna use SDL for Video/Audio.
I think the thing I'm most afraid of is the set of enemies, and the ability to kill them off one by one. Are we going to run into problems there?
Where can I find these lectures? Thanks.Good lord, reading the crazy stuff you guys do...I'm just now teaching myself Java. Having fun with Karel the Robot using Stanford lectures that were put online for help. Having a blast.