|
-
Mar 4th, 2014, 10:01 AM
#52561
Re: Post Race!
Isn't it in Revelations?
"And lo I beheld a multi-viewed GUI that was all things to all people, yet had dwindling support of it's creator."
also
"verily did the host serve up a control of diverse and wonderous visage, yet still the silver light did shun it, and doubt did cast it into the abyss where it did languish in the eternal purgatory of tech not fully embraced."
(I may have those last few words wrong).
My usual boring signature: Nothing
 
-
Mar 4th, 2014, 07:11 PM
#52562
Re: Post Race!
I wish that there was more support for it, but last time I wished for that was for XNA and we all see what happened to that :/
-
Mar 4th, 2014, 08:55 PM
#52563
Re: Post Race!
Who cares - it's all a passing fancy. People are still stuck on VB6!
Learn it - grow from it - and then move on to the next place. If every step doesn't supersede the last step you are going down - pretty much that languishing purgatory thing that many-fish man just spoke about.
Remember - abracadabra means "I create as I speak" - talk it up...and it will work for you. Just gotta believe.
-
Mar 13th, 2014, 12:15 AM
#52564
Re: Post Race!
It has been to long since anyone has posted in the post race!
-
Mar 13th, 2014, 12:15 AM
#52565
Re: Post Race!
So I figured that I would post myself.
-
Mar 13th, 2014, 12:16 AM
#52566
Re: Post Race!
My current project is a Javascript IDE.
-
Mar 13th, 2014, 12:17 AM
#52567
Re: Post Race!
I have been teaching myself Javascript this past week and it's pretty simple.
-
Mar 13th, 2014, 12:17 AM
#52568
Re: Post Race!
It's just trying to adjust to the 'functional' style programming.
-
Mar 13th, 2014, 12:18 AM
#52569
Re: Post Race!
But the IDE will be used so that you can have your HTML, CSS, and Javascript all on separate tabs.
-
Mar 13th, 2014, 12:19 AM
#52570
Re: Post Race!
Each will have a toolbox so that you add certain things fairly easily.
-
Mar 13th, 2014, 12:19 AM
#52571
Re: Post Race!
Then as well a drop-down bar for when you are typing.
-
Mar 13th, 2014, 12:20 AM
#52572
Re: Post Race!
I also plan on implementing the drop-down bars that you're kin to seeing in VS in the code-editor.
-
Mar 13th, 2014, 12:20 AM
#52573
Re: Post Race!
Where you can chose a class on the left side and then it's element on the right side.
-
Mar 13th, 2014, 12:22 AM
#52574
Re: Post Race!
A good example of this would be Javascript's document. If I were to select document in the left hand drop-down box then I would get a list of suitable suggestions in the right hand drop-down box such as onLoad.
-
Mar 13th, 2014, 12:22 AM
#52575
Re: Post Race!
Then whenever the user selects the right hand object, it would automatically generate the code for them.
-
Mar 13th, 2014, 12:23 AM
#52576
Re: Post Race!
In the example with the document.onLoad it would generate this:
javascript Code:
window.onload=function() { };
-
Mar 13th, 2014, 12:24 AM
#52577
-
Mar 13th, 2014, 12:24 AM
#52578
Re: Post Race!
I feel as though I'm a bit ambitious on this and may be overestimating the amount of work required, but I will give it my all!
-
Mar 13th, 2014, 12:25 AM
#52579
-
Mar 13th, 2014, 12:36 AM
#52580
Re: Post Race!
 Originally Posted by dday9
It's just trying to adjust to the 'functional' style programming.
VB.Net can be used as a functional language. The style shouldn't be unfamiliar to you as a VB.Net programmer.
-
Mar 13th, 2014, 12:47 AM
#52581
Re: Post Race!
Well I've been programming Android apps like crazy on Eclipse and I was right. Microsoft turned BASIC into freaking java without the semicolons....<cough VB.Net>. At least OpenGL is built in to the library so I don't have to worry about referencing it and can bust out games right away.
On the other hand, whoever built Eclipse is an a-hole. It's extremely not user friendly and glitchy. On top of that, Google never fixed an issue newbies will eventually run into such as myself since Android 2.2! If you open an app and press home to temporarily exit the app for a moment, and reopen it later on in the hopes to go where you left off, it reopens another instance of the app and closes the last one you had that was running in the background, refiring the onCreate() onStart() and onResume() events!!!! What its suppose to do is fire onRestart() onStart() and onResume() when reentering the same instance of the app, which is what the emulator does but your actual device doesn't. They would have to know to put in this code to undo the glitch and make the app act as it should:
java Code:
@Override
protected void onCreate(Bundle savedInstanceState)
{
//Bypasses Android glitch so when you press home and reenter the app, it doesn't create a new instance,
//but rather reopens the app
if (!isTaskRoot())
{
Intent intent = getIntent();
String action = intent.getAction();
if (intent.hasCategory(Intent.CATEGORY_LAUNCHER) && action != null && action.equals(Intent.ACTION_MAIN))
{
finish();
return;
}
}
super.onCreate(savedInstanceState);
SetContentView(R.layout.activity_main);
}
-
Mar 13th, 2014, 09:02 AM
#52582
Re: Post Race!
 Originally Posted by Niya
VB.Net can be used as a functional language. The style shouldn't be unfamiliar to you as a VB.Net programmer.
Yeah I know like with LINQ it's structured like a functional language without implementing the paradigms of a functional language, but non the less it's still an adjustment.
-
Mar 13th, 2014, 01:23 PM
#52583
Re: Post Race!
Hey Niya, could you provide a list of keywords and their appropriate hex color code that match your quirk like: DateTime
-
Mar 13th, 2014, 03:36 PM
#52584
Re: Post Race!
 Originally Posted by dday9
Hey Niya, could you provide a list of keywords and their appropriate hex color code that match your quirk like: DateTime
Objects like DateTime or TextBox I use blue. Methods and properties like BackColor or Split I use a purple. Keywords like SyncLock or DirectCast I use green. If I'm talking about variable from someone posted code I may use fire brick red. I use brown if I'm talking referencing code without a the code tags. Example, Dim I As Integer = 10.
You can quote this post to get their hex value.
-
Mar 13th, 2014, 03:40 PM
#52585
Re: Post Race!
I would probably be able to do the individual keywords, but I doubt that I could do the phrases... perhaps an improvement for later on.
-
Mar 13th, 2014, 04:13 PM
#52586
Re: Post Race!
Keywords and classes would be easier to automate. You just need a list of them.
-
Mar 13th, 2014, 04:15 PM
#52587
Re: Post Race!
Since this is the post race....I'm adding a post. I really don't have anything to say, though.
My usual boring signature: Nothing
 
-
Mar 13th, 2014, 04:45 PM
#52588
Re: Post Race!
I love that contribution Shaggy!
-
Mar 13th, 2014, 04:59 PM
#52589
Re: Post Race!
 Originally Posted by Shaggy Hiker
Since this is the post race....I'm adding a post. I really don't have anything to say, though.
I got this error reading your post:-
-
Mar 13th, 2014, 05:20 PM
#52590
Re: Post Race!
Wow, I wish that there was a rep button some times in CC!
-
Mar 13th, 2014, 06:09 PM
#52591
Re: Post Race!
lol
-
Mar 14th, 2014, 08:13 AM
#52592
Re: Post Race!
Boobs. Im bored and just want to say boobs.
-
Mar 14th, 2014, 08:44 AM
#52593
-
Mar 14th, 2014, 10:10 AM
#52594
-
Mar 14th, 2014, 10:12 AM
#52595
Re: Post Race!
Wow I suppose I shouldn't have looked up boobs meme at work :/
-
Mar 14th, 2014, 10:13 AM
#52596
Re: Post Race!
Still a funny look on my female bosses face.
-
Mar 14th, 2014, 10:13 AM
#52597
-
Mar 14th, 2014, 10:28 AM
#52598
Re: Post Race!
@Niya, I have never encountered that particular error message before, but I suppose my post was a bit atypical.
Here's a booby for you:
My usual boring signature: Nothing
 
-
Mar 14th, 2014, 10:29 AM
#52599
-
Mar 14th, 2014, 10:32 AM
#52600
Re: Post Race!
A pity it was the final post on the page. Here I go flipping you the bird and people will have to go back a page just to see it.
My usual boring signature: Nothing
 
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|