inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Mar 8, 2014 4:27:34 GMT -8
Hello, I know there are some people here that are keen on learning to program. I've seen a few posts from people, and had the odd message asking for help and advice. So I thought, instead of it just being me helping the person, it would be a good idea for a group of us to get on Skype once or twice a week and help each other out. This goes for anyone that is keen on programming, regardless of what area you are interested in, or experience. I am hoping that a few other experienced programmers jump in on the chat to help answer some questions, and maybe even ask some themselves. I know a few that have already expressed interest in this, so that's a good start. FAQ: - Who's it for?
- Do I need a mic?
- What day and time?
If this interests you:- Post or PM your skype username to me or someone who can add you to the chat on Skype. - Post your experience (i.e beginner). - Post the languages that you are keen on learning / improving. - Post the languages that you consider to be proficient in. - Post the day and time (GMT if possible so I don't need to work every ones out) that suits you. If this gets any replies with people interested, I'll add them to a list below with some details, that way, you can all contact each other to share Skype details. People so far:Jua?CåñåÐå™Stern@tidus90 BobWormopoliswildgoosespeederpawlGrahamDarkPikachuPebble
|
|
inherit
162752
0
Nov 7, 2024 3:58:23 GMT -8
Pebble
Where it all does or doesn't happen!
1,437
January 2011
pebbleleague
|
Post by Pebble on Mar 8, 2014 4:51:51 GMT -8
Count me in, I've got a ton of questions! I'll get some details sent of to you later today.
|
|
Former Member
inherit
guest@proboards.com
171777
0
Nov 27, 2024 21:49:20 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Mar 8, 2014 10:21:57 GMT -8
Post or PM your skype username to me or someone who can add you to the chat on Skype. darkmage09 - Post your experience (i.e beginner). Intermediate. (OH! and I've looked into Sha1 and using it now. ) - Post the languages that you are keen on learning / improving. Improvement on PHP. (Currently building a forum) - Post the languages that you consider to be proficient in. HTML/CSS xD But I'm doing better than before on PHP. - Post the day and time (GMT if possible so I don't need to work every ones out) that suits you. Any time is fine with me.
|
|
inherit
77965
0
Apr 3, 2024 6:38:15 GMT -8
CåñåÐå™
163
April 2006
bepcanada
|
Post by CåñåÐå™ on Mar 8, 2014 15:09:11 GMT -8
I 've sent an pm to you.
-experience: beginner.
|
|
inherit
77753
0
Jul 18, 2024 12:23:50 GMT -8
Bob
2,623
April 2006
bobbyhensley
|
Post by Bob on Mar 8, 2014 17:12:18 GMT -8
Post or PM your skype username to me or someone who can add you to the chat on Skype. darkmage09 - Post your experience (i.e beginner). Intermediate. (OH! and I've looked into Sha1 and using it now. ) - Post the languages that you are keen on learning / improving. Improvement on PHP. (Currently building a forum) - Post the languages that you consider to be proficient in. HTML/CSS xD But I'm doing better than before on PHP. - Post the day and time (GMT if possible so I don't need to work every ones out) that suits you. Any time is fine with me.
SHA-1 is no longer a favored cryptographic hash function. In the very least I would recommend using the SHA-2 family (SHA-256/SHA-512). <?php
// Create a new hashed password $pass = hash('sha512', $appSalt . $plaintextPassword);
// Check an existing if ($pass === $storedPassword) { // Success } Or, if you are running PHP 5.5.x then bcrypt is very easily implemented (and preferable, in my opinion). <?php
// Create a new hashed password $pass = password_hash($plaintextPassword, PASSWORD_DEFAULT);
// Check for password validity if (password_verify($plaintextPassword, $storedPass)) { // Success } The one caveat with the bcrypt example is that is may not be the default hash in future versions of PHP. For this reason you could specifically use the bcrypt algorithm (PASSWORD_BCRYPT). Or, you could just verify the hashing algorithm is up to date upon login (when you have the plaintext password readily available) and, if it isn't, rehash and store the password. Either way, some pertinent links for you: password_hash()password_verify()hash()
|
|
inherit
168718
0
Oct 24, 2024 1:20:24 GMT -8
Stern
Out playing with the puppies.
579
July 2011
punktestern
|
Post by Stern on Mar 8, 2014 18:36:36 GMT -8
- Post or PM your skype username to me or someone who can add you to the chat on Skype. Punktestern - Post your experience (i.e beginner). Beginner/(Intermediate?) - Post the languages that you are keen on learning / improving. HTML and CSS, although anything that's being discussed, I'll try to learn more about. - Post the languages that you consider to be proficient in. N/A - Post the day and time (GMT if possible so I don't need to work every ones out) that suits you. This Sunday - 4PM - 4AMish? With some random things in between, but anyway. (I'm in PST, hence the skewed times) Other ones, I'm sadly not sure about yet, my schedule jumps one day to the next.
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Mar 9, 2014 3:56:47 GMT -8
Ok, have added people to the first post and send skype requests. I have a friend that will likely be interested as well, so that's at least 8 of us. So now it's a matter of working on a time and day that most will be on. Please work out the best GMT times and post them, along with any days that you would prefer (even if you aren't sure)... wwp.greenwichmeantime.com/Tags: Jua?, Bob, @tidus90, CåñåÐå™, Stern, Pebble
|
|
inherit
77965
0
Apr 3, 2024 6:38:15 GMT -8
CåñåÐå™
163
April 2006
bepcanada
|
Post by CåñåÐå™ on Mar 9, 2014 5:13:32 GMT -8
Whatever day and time should be fine for me.
|
|
Former Member
inherit
guest@proboards.com
147694
0
Nov 27, 2024 21:49:20 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Mar 9, 2014 5:40:24 GMT -8
I'm open any time this week.
|
|
Former Member
inherit
guest@proboards.com
171777
0
Nov 27, 2024 21:49:20 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Mar 9, 2014 11:13:15 GMT -8
Whatever day and time should be fine for me. CANADA!!!! I have not seen you in forever!! (It's Darkmage from vF )
|
|
inherit
77965
0
Apr 3, 2024 6:38:15 GMT -8
CåñåÐå™
163
April 2006
bepcanada
|
Post by CåñåÐå™ on Mar 9, 2014 18:50:48 GMT -8
Whatever day and time should be fine for me. CANADA!!!! I have not seen you in forever!! (It's Darkmage from vF ) I know when i saw Nick i wondered if it was you . What have you been up to?
|
|
Former Member
inherit
guest@proboards.com
171777
0
Nov 27, 2024 21:49:20 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Mar 9, 2014 20:08:43 GMT -8
CANADA!!!! I have not seen you in forever!! (It's Darkmage from vF ) I know when i saw Nick i wondered if it was you . What have you been up to? lol, A lot has happened in 2 years. New gf, new everything. lol. Working on the same sites as before. But more advanced than before. Working on a new forum of my own, and working on a web host, along with an advertising directory, which I know you've seen before.
|
|
inherit
143665
wildgoosespeeder wildgoosespeeder wildgoosespeeder
0
Jun 14, 2018 5:59:55 GMT -8
wildgoosespeeder
ProBoards V5 be trippin'. I'm disoriented. :P
4,393
August 2009
wildgoosespeeder
|
Post by wildgoosespeeder on Mar 9, 2014 20:21:32 GMT -8
- If you know my ProBoards name, you know my Skype name. - Advanced programming knowledge. - C++ is something I want to do extremely well in. Maybe Java as a close second. - C# I feel proficient. C++ not so much but I do know my way around the bits. - 12PM - 2AM CST.
|
|
Former Member
inherit
guest@proboards.com
171777
0
Nov 27, 2024 21:49:20 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Mar 9, 2014 22:34:37 GMT -8
Post or PM your skype username to me or someone who can add you to the chat on Skype. darkmage09 - Post your experience (i.e beginner). Intermediate. (OH! and I've looked into Sha1 and using it now. ) - Post the languages that you are keen on learning / improving. Improvement on PHP. (Currently building a forum) - Post the languages that you consider to be proficient in. HTML/CSS xD But I'm doing better than before on PHP. - Post the day and time (GMT if possible so I don't need to work every ones out) that suits you. Any time is fine with me.
SHA-1 is no longer a favored cryptographic hash function. In the very least I would recommend using the SHA-2 family (SHA-256/SHA-512). <?php
// Create a new hashed password $pass = hash('sha512', $appSalt . $plaintextPassword);
// Check an existing if ($pass === $storedPassword) { // Success } Or, if you are running PHP 5.5.x then bcrypt is very easily implemented (and preferable, in my opinion). <?php
// Create a new hashed password $pass = password_hash($plaintextPassword, PASSWORD_DEFAULT);
// Check for password validity if (password_verify($plaintextPassword, $storedPass)) { // Success } The one caveat with the bcrypt example is that is may not be the default hash in future versions of PHP. For this reason you could specifically use the bcrypt algorithm (PASSWORD_BCRYPT). Or, you could just verify the hashing algorithm is up to date upon login (when you have the plaintext password readily available) and, if it isn't, rehash and store the password. Either way, some pertinent links for you: password_hash()password_verify()hash()So instead of: $password = mysql_real_escape_string(sha1($_POST['password'])); I put: $password = mysql_real_escape_string(sha512($_POST['password'])); evertime I do that, it grays out in NP++ and isn't blue anymore.
|
|
inherit
King Oligochaete
126470
0
Feb 24, 2021 12:23:15 GMT -8
Wormopolis
Stop rating plugins with 1 star that dont deserve it.
20,002
June 2008
tbserialkillers
Wormo's Mini-Profile
|
Post by Wormopolis on Mar 10, 2014 0:11:36 GMT -8
I guess this is prompting me to finally create a skype account...
|
|