[QUOTE='-[ Fizzadar ]-;17811621']Websites are fine, but this obsession with silly signature/image browser images and so on needs to stop. The only decent thing I've seen in this thread about GD was the fractal creations, because they were awesome.
A browser image info thing is boring as fuck, and basic to make, I'm afraid.[/QUOTE]
Gotta start somewhere though, right?
Besides, this is the "What are you working on?" thread is it not?
This thread needs some more updates from Namelezz!'s project.
I'm working on bringing speech recognition into GMod. Everything's going great so far. Nothing really to post screenshots of yet, but everything is working and I've made some basic Harry Potter-spells that you cast through voice chat.
It's silly and awesome at the same time :keke:
[QUOTE=Sippeangelo;17811769]I'm working on bringing speech recognition into GMod. Everything's going great so far. Nothing really to post screenshots of yet, but everything is working and I've made some basic Harry Potter-spells that you cast through voice chat.
It's silly and awesome at the same time :keke:[/QUOTE]
So awesome!
I've decided to take a break from my game and pick up my old "A.R.M.Y" esoteric language. I'm re writing it completely.
Changed the StatusBar a bit.
[img]http://img.loldepot.com/a7f83036ae3cabcad1da.png[/img]
[QUOTE=Druchii;17811502]The main issue i have with Desktop Programming is lack of stuff I actually want to make...
That and everyone repeatedly saying "VB isn't programming"... Tell that to the worlds largest and most respected Maritime company, their primary production tool is pure VB.Net.
Eh, sorry, ranting again![/QUOTE]
VB is great for prototyping IMO. I use it quite often if I have an idea that I want to throw together. For example, some friend's of mine have problem's using sopcast and other p2p program's to watch web stream's for sporting events (which is legal, before you ask ;)). Using VB I was able to write a program in less than a day that would usually take a lot longer (for me) in C++.
If you are feeling nosy, or would want to take a look, check out [url]www.freefootyonline.co.uk[/url]. I even made the website :)
[QUOTE=Druchii;17811680]Gotta start somewhere though, right?
Besides, this is the "What are you working on?" thread is it not?[/QUOTE]
Well, true, but honestly, starting with GD is stupid when it comes to PHP, there's a bazillion other things you can 'start' with :P
Also, if you MUST use GD, make something original, not [i]another[/i] server info box.
[QUOTE='-[ Fizzadar ]-;17811885']Well, true, but honestly, starting with GD is stupid when it comes to PHP, there's a bazillion other things you can 'start' with :P
Also, if you MUST use GD, make something original, not [i]another[/i] server info box.[/QUOTE]
Parsing XML and learning DB I/O and of course the caching system.
A lot more to it than 'dumb' GD =)
[QUOTE=Druchii;17811900]Parsing XML and learning DB I/O and of course the caching system.
A lot more to it than 'dumb' GD =)[/QUOTE]
Yeah, but at least do something new and original rather than another image. Skip the GD, think of something cool to do with the data, or use another source of data/idea.
[QUOTE=Megalan;17808539][media]http://i34.tinypic.com/16hqbyu.png[/media]
Got vgui working in non-valve app :D[/QUOTE]
do want. how did you do that?
[QUOTE='-[ Fizzadar ]-;17811979']Yeah, but at least do something new and original rather than another image. Skip the GD, think of something cool to do with the data, or use another source of data/idea.[/QUOTE]
I don't even know how to use GD yet :D.
[QUOTE=Foda;17811990]do want. how did you do that?[/QUOTE]
I used some code from source sdk and hl2 beta. Maybe i will release this later.
Working on a Java tutorial to make a Pong clone. It's pretty fun.
Someone just start a GD thread?
Ok, so you want us PHP Coders to leave.
Then give us a own forum :<
Watched this interesting talk about GUI design by Aza Raskin (head of user experience at Mozilla Labs): [url]http://www.youtube.com/watch?v=EuELwq2ThJE[/url]
[QUOTE=SEKCobra;17812207]Ok, so you want us PHP Coders to leave.
Then give us a own forum :<[/QUOTE]
If you mean a own "forum", working on it :D, if you mean a category under programming then, yeah that would be good too.
[QUOTE=SEKCobra;17812207]Ok, so you want us PHP Coders to leave.
Then give us a own forum :<[/QUOTE]
I don't think they're saying they want PHP coders to leave, just to stop posting designs. It just seems as if those posting sigs or whatever are posting to get opinions on the design and not the actual code (which it doesn't require much of).
Maybe when I'm old enough to get a job, Facepunch will be recruiting and by then Garry might have an office. Oh how I'd love to work in Facepunch's office. :v:
-snip-
[QUOTE=Diaklu;17812538]Maybe when I'm old enough to get a job, Facepunch will be recruiting and by then Garry might have an office. Oh how I'd love to work in Facepunch's office. :v:[/QUOTE]
How is this what you are working on
-snip-
[QUOTE=Diaklu;17812538]Maybe when I'm old enough to get a job, Facepunch will be recruiting and by then Garry might have an office. Oh how I'd love to work in Facepunch's office. :v:[/QUOTE]
To be honest most of us would probably get fired for sexual harassment.
I mean yeh.. it would be cool.
[QUOTE=ddrl46;17812590]We don't have to talk about coding all the time do we?[/QUOTE]
Well it is the programming forum
[code]
program main
implicit none
integer::z,i
real::lamda
real(8),allocatable,dimension(:)::hauptd
real(8),allocatable,dimension(:)::nebend
do i=1,z,1
allocate(hauptd(i),nebend(i-1))
call eigen(i,lamda,hauptd,nebend)
write(*,*)"Hauptdiagonale",hauptd
write(*,*)"Nebendiagonale",nebend
deallocate(hauptd,nebend)
end do
end program main
!____________________Kronecker Funktion_______________
real function yesno(a,b)
implicit none
real,intent(in)::a,b
yesno=0
if (a==b)then
yesno=1
end if
end function yesno
!____________BERECHNUNG DER N EIGENWERTE EINER MATRIX N X N
subroutine eigen(N,lambda,hd,nd)
implicit none
integer,intent(in)::N
real,intent(in)::lambda
real::i,j,yesno
real(8),dimension(N,N) ::matrix
real(8),dimension(N),intent(inout)::hd
real(8),dimension(N-1),intent(inout)::nd
do i=1,N,1
do j=1,N,1
matrix(i,j)= (yesno(i,j) *(j-0.5)&
+yesno(i-1,j)*(lambda*SQRT ( (i-1)/2 ) ) &
+yesno(i,j-1)*(lambda*SQRT ( (j-1)/2 ) ) )
! ^ wegen der Indexverschiebung
end do
end do
write(*,*)"Matrix"
do i=1,N,1
write(*,*)(matrix(i,j),j=1,N)
end do
do i=1,N,1
hd(i)=matrix(i,i)
end do
do i=1,N-1,1
nd(i)=matrix(i,i+1)
end do
end subroutine eigen
[/code]
Calculating the Eigenvalue(aka Energies) of a lamda-disturbed quantum mechanic oscilator for
chosable n quantum numbers in Fortran under Linux.
It's a bitch.
[QUOTE=Killuah;17812705]
Calculating the Eigenvalue(aka Energies) of a lamda-disturbed quantum mechanic oscilator for
chosable n quantum numbers[/QUOTE]
Eh?
also:
[media]http://www.youtube.com/watch?v=T2txKPTWpIU[/media]
[b]LET THE RACES BEGIN![/b]
This is a edited version of my game with limited frame rate and turn systems turned off.
[QUOTE=Benji;17811755]This thread needs some more updates from Namelezz!'s project.[/QUOTE]
Hey, I've made more failed projects than...actually, I've never once even finished a single game project. Don't get your hopes up.
But I'm working on this so I guess I should keep you guys updated more often! I'll post a screenie of the balconies and windows implemented. If I can get my other spriter to respond, maybe you'll see the assassin armor.
Also I'll tone down the bloom. Yeah, I kinda overdid it :v:
[QUOTE=Namelezz!;17813853]Hey, I've made more failed projects than...actually, I've never once even finished a single game project. Don't get your hopes up.
But I'm working on this so I guess I should keep you guys updated more often! I'll post a screenie of the balconies and windows implemented. If I can get my other spriter to respond, maybe you'll see the assassin armor.
Also I'll tone down the bloom. Yeah, I kinda overdid it :v:[/QUOTE]
I'm just wondering, do you know a programming language?
[QUOTE=JDream;17811858]VB is great for prototyping IMO. I use it quite often if I have an idea that I want to throw together. For example, some friend's of mine have problem's using sopcast and other p2p program's to watch web stream's for sporting events (which is legal, before you ask ;)). Using VB I was able to write a program in less than a day that would usually take a lot longer (for me) in C++.
If you are feeling nosy, or would want to take a look, check out [url]www.freefootyonline.co.uk[/url]. I even made the website :)[/QUOTE]
Why not just use C#.net? I can't see how programming in VB can be much faster than in C#
[QUOTE=iPope;17813885]I'm just wondering, do you know a programming language?[/QUOTE]
I know most of the ones needed for making websites. Little bit of PHP, all about XHTML and CSS, little javascript, tiny amount of MySQL.
And a bit of QBasic.
For everything else, there's the designer dream program Construct. Where you skip the coding with event-based stuff and concentrate on the thing that matters: gameplay.
[editline]08:26PM[/editline]
Hey, disagree all you want. If I need to sketch out a game real quick to see how it plays and works I use Construct. But if and when any of them go commercial or anything, they're going to be coded and using a proper engine.
Sorry, you need to Log In to post a reply to this thread.