![]() |
|
[ALPHA] API for CodeCommunity [WIP] - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework) +--- Thread: [ALPHA] API for CodeCommunity [WIP] (/Thread-ALPHA-API-for-CodeCommunity-WIP) |
[ALPHA] API for CodeCommunity [WIP] - Platinum - 07-23-2013 ![]() ALPHA PREVIEW IS RELEASED!![link] ![]() The goal is to cover as much functions related to Code Community as possible! Here's a list of features planned: (green = done, orange = need recoding, red = unfinished work (WIP)) User System:
As of U4: it's released!!!! Go here: [link] Update Notes Spoiler:Quote:update 4: Older: Spoiler:Quote:update 3: Quote:update 2: Quote:update 1: CURRENT FOCUS: Recoding most of the functions, maybe adding some more (optimization) Making the code FASTER, and making a thread layout (would be nice if someone did it FOR me). It's working for ALL CodeCommunity users Spoiler:![]() Anyone's uid works Spoiler:![]() ![]() And yes, moving images (.gif) actually move in the form. You can log in with your account! This is super alpha. Spoiler:![]() As of update 3 we now have broken img and CCP (codecommunity points)! Spoiler:![]() I'm happy to receive suggestions! I've already got 1 suggestion for making it possible to view the whole memberlist with their UID next to it, would you like that?? How will implementation be? Easy, you'll just have to insert the project into your own. A tutorial on this will come when this is ready. (after alpha/beta) Is it open-source? It's open-source, since a lot of people wanted it to be. You can view a source-download right here: [link] RE: [VB] API for CodeCommunity [WIP] - Villain - 07-23-2013 Damn this is nice I would love to get it. Also, what theme is that? RE: [VB] API for CodeCommunity [WIP] - Platinum - 07-23-2013 (07-23-2013, 12:27 PM)Villain Wrote: Damn this is nice I would love to get it. It's Windows 8 RT, you can get it from here: http://mare-m.deviantart.com/art/Windows-8-RTM-Theme-for-Windows-7-318932206 Please understand that the form is just windows default, but I have a custom theme installed. RE: [VB] API for CodeCommunity [WIP] - Blue - 07-23-2013 Can't wait for release been seeing the progress and it looks great! RE: [VB] API for CodeCommunity [WIP] - Eternity - 07-23-2013 Why are you working on the easy bit ? Go over to thread lookup and posting via VB ![]() Good work though, Webrequest/RegEx ? RE: [VB] API for CodeCommunity [WIP] - Platinum - 07-23-2013 (07-23-2013, 04:54 PM)Blue Wrote: Can't wait for release been seeing the progress and it looks great! Thanks brah, far from done though! (07-23-2013, 05:52 PM)Eternity Wrote: Why are you working on the easy bit ? Because the easy bit is... wel... easy.. I use both webrequest and regex but depends for each function <- it became kind of quick now. I need to work on logging in first but Sap will need to help me with that or Breshie. RE: [VB] API for CodeCommunity [WIP] - Eternity - 07-23-2013 (07-23-2013, 06:04 PM)Platinum Wrote:(07-23-2013, 04:54 PM)Blue Wrote: Can't wait for release been seeing the progress and it looks great! I have a login system that works with CC if you want it PM me. RE: [VB] API for CodeCommunity [WIP] - Platinum - 07-23-2013 (07-23-2013, 06:07 PM)Eternity Wrote:(07-23-2013, 06:04 PM)Platinum Wrote:(07-23-2013, 04:54 PM)Blue Wrote: Can't wait for release been seeing the progress and it looks great! Sap is already helping me don't worry ^^ RE: [VB] API for CodeCommunity [WIP] - Eternity - 07-23-2013 (07-23-2013, 06:08 PM)Platinum Wrote:(07-23-2013, 06:07 PM)Eternity Wrote:(07-23-2013, 06:04 PM)Platinum Wrote:(07-23-2013, 04:54 PM)Blue Wrote: Can't wait for release been seeing the progress and it looks great! Alright
RE: [VB] API for CodeCommunity [WIP] - Shebang - 07-23-2013 If you're looking to get the usertitle still (says so in your focus), here's a solution. Code: Dim x As String = New IO.StreamReader(Net.WebRequest.Create("http://www.codecommunity.net/member.php?action=profile&uid=" & UID).GetResponse.GetResponseStream).ReadToEnd
Return Split(Split(x, "<!-- start: member_profile_groupimage -->")(1).Split(">")(0), "alt=""")(1).Split("""")(0)Just FYI, Split() is twice as fast as RegEx (if that's what you are using). |