Page 23 of 43

Re: Programming, computers, etc. [Serious]

Posted: Sat Jan 05, 2013 8:37 pm
by Anonymously Famous
atomtengeralattjaro wrote:so, will you write a website/thingy that generates silly statistics-based warnings? sounds good.
That was the plan, yes.

Re: Programming, computers, etc. [Serious]

Posted: Sun Mar 03, 2013 10:34 pm
by atomtengeralattjaro
Fun fact

Code: Select all

.+[.+]
prints out all ascii characters in the Brainfuck programming language.

Re: Programming, computers, etc. [Serious]

Posted: Sun Mar 03, 2013 10:53 pm
by Anonymously Famous
I've heard about that language. I have no desire to learn it.

This is a way to define the ASCII characters in Haskell, though:

Code: Select all

['\0'..'\127']
This will define all 8-bit characters:

Code: Select all

['\0'..'\255']

Re: Programming, computers, etc. [Serious]

Posted: Sun Mar 10, 2013 5:37 pm
by atomtengeralattjaro
so did you make that silly statistics thingy?

Re: Programming, computers, etc. [Serious]

Posted: Wed Mar 13, 2013 2:28 am
by Anonymously Famous
No, because I forgot, and because I got busy doing things that aren't really important but take up a lot of time playing video games.

Re: Programming, computers, etc. [Serious]

Posted: Tue Mar 19, 2013 10:05 pm
by Shai'tan
For my 5th mandatory task in one of the subjects I'm taking I have to make a Java program that brute forces a Sudoku board and prints the results to file, it will also have a simple GUI. :D

Re: Programming, computers, etc. [Serious]

Posted: Wed Mar 20, 2013 12:40 am
by erik422
Sounds interesting. I wonder what the most optimal way to bruteforce a sudoku board is...? I am not much of a mathematician.

Re: Programming, computers, etc. [Serious]

Posted: Wed Mar 20, 2013 12:14 pm
by Shai'tan
erik422 wrote:Sounds interesting. I wonder what the most optimal way to bruteforce a sudoku board is...? I am not much of a mathematician.
Don't know, was thinking I should find out. We're supposed to follow their recipe by the letter though :|

Re: Programming, computers, etc. [Serious]

Posted: Mon Mar 25, 2013 8:47 pm
by Anonymously Famous
Sounds like it would take a long time for anything more than the simplest of Sudoku boards.

Re: Programming, computers, etc. [Serious]

Posted: Thu Mar 28, 2013 7:18 pm
by Shai'tan
Anonymously Famous wrote:Sounds like it would take a long time for anything more than the simplest of Sudoku boards.
Probably will. :|

Re: Programming, computers, etc. [Serious]

Posted: Thu Mar 28, 2013 8:53 pm
by Anonymously Famous
I wish you luck.

Re: Programming, computers, etc. [Serious]

Posted: Fri Mar 29, 2013 3:15 pm
by Shai'tan
Thank you, had a little break from working on it now, but I think I'll try at it again today. :)

Re: Programming, computers, etc. [Serious]

Posted: Mon Apr 15, 2013 9:28 am
by atomtengeralattjaro
Anyone using a Kaspersky antivirus product on win7 should probably uninstall the windows update named KB2823324.
http://blogs.technet.com/b/msrc/archive ... issue.aspx
http://support.microsoft.com/kb/2839011
i don't know why don't they do this automatically.

Re: Programming, computers, etc. [Serious]

Posted: Fri Apr 19, 2013 6:03 pm
by Anonymously Famous
It looks like they're looking into making an update that would fix the problem caused by the update.

Yesterday I solved problem #50 on Project Euler. I have now solved the first 50, plus some others.

I have also recently learned of a programming language called "Rust", which is apparently run by Mozilla.

Re: Programming, computers, etc. [Serious]

Posted: Sat Apr 20, 2013 8:18 am
by atomtengeralattjaro
is it.. umm, rusty?

Re: Programming, computers, etc. [Serious]

Posted: Sat Apr 20, 2013 2:53 pm
by Shai'tan
I finished and delivered the sudoku program. Not completely happy with it, but it works. If you want (and can run java class files) I can give you the files. Be warned though, it's ugly and not really finished ( had to make a deadline ).

Re: Programming, computers, etc. [Serious]

Posted: Tue Apr 23, 2013 5:45 pm
by Anonymously Famous
I'm glad you got it done.

Re: Programming, computers, etc. [Serious]

Posted: Fri Apr 26, 2013 9:24 pm
by Shai'tan
Didn't get the program approved since I wasn't able to find multiple solutions to a board. Fix'd that now along with some other stuff that weren't working as well as planned :D

Re: Programming, computers, etc. [Serious]

Posted: Fri Apr 26, 2013 11:59 pm
by Anonymously Famous
Aren't properly made Sudoku boards supposed to only have one solution?

Re: Programming, computers, etc. [Serious]

Posted: Sat Apr 27, 2013 4:30 am
by assdef
Image