making a mega google doc about programming

StuffedFrog

StuffedFrog

Kraken
Joined
Jul 25, 2019
Posts
4,758
Reputation
4,062
who wants to be invited
 
  • +1
  • Love it
  • Woah
Reactions: SeiGun, currylightskin, ALP and 8 others
Me
DM me please
 
I'll offer my original statements now:

Re: To all you programmers out there.
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#180925533Saturday, January 02, 2016 1:28 PM CST
If you are going to learn a programming language, I would suggest that you choose the language based on its viability for your given situation. It is not necessarily the language itself that matters entirely; it is the programming concepts, problem-solving capability, and self-determination that creates the eventual result.
Re: Are scripts case sensetive? I'm a beginner.
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#180927064Saturday, January 02, 2016 1:48 PM CST
Given that your problem has been resolved, it is worth mentioning that the case sensitivity allows an individual to utilize different objects with a common name, assuming that they capitalize them differently.
Re: I want to learn how to code
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#180927392Saturday, January 02, 2016 1:52 PM CST
"Programming In Lua" is a rather good book with valuable and is also available online. http://www.lua.org/pil/contents.html You should likely focus on the theoretical aspects before attempting to construct a game; logical-flow is critical for success.

Re: I made another scripting tutorial.
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#181214010Wednesday, January 06, 2016 10:10 PM CST
I applaud your decision to create a tutorial for teaching components of RBX.Lua to beginning users. However, I would have to admit that the tutorial seemed methodical rather than conceptual. This is often negative as it encourages users to disregard critical thought in the scripting process. I would personally recommend that you revise your tutorials and pedantically explain the actual concepts and functionality involved in drafting a script. Perhaps you could also create a guide for manipulating primitive data such as strings. Nonetheless, "good job."


Re: please explain Data Structures to me
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#183423479Friday, February 12, 2016 2:51 AM CST
"No need to be tongue-in-cheek sassy" My statement was actually rather casual. I never intended to convey any sort of aggression towards you. I suggested an "official" resource on the basis that doing so would likely be much more thorough and in-depth than asking strangers over the Internet who may give you inaccurate/incorrect information.
Re: please explain Data Structures to me
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#183423876Friday, February 12, 2016 3:14 AM CST
"Asking strangers over the Internet creates conversation that may be beneficial to my overall well-being" Ah, alright then, I suppose. We should begin a discussion involving theory-application. I believe that each participant would enjoy that. "Anyways, I really do not know of any ways, at least at the moment, to reduce amount of time taken to sift through a data structure" Which type of algorithm are you currently using? Depending on how you intend to read the components of the data structure, you may be able to cache previously obtained data keys for successive use. Certain techniques rely on the task that needs to be accomplished.

Re: the possibility of creating an A.I. with lua on roblox
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#183782181Tuesday, February 16, 2016 5:05 PM CST
Yes, you can accomplish this with an algorithm. The programming/scripting language itself is not the most relevant aspect. It is whether the language has the necessary, basic tools to devise an algorithm to accomplish the task. There are plenty of sample AI programs for you to examine.


Re: noob help
ParadigmaticAnon
Png

Join Date: 2016-01-25
Post Count: 182
#182597970Thursday, January 28, 2016 10:21 PM CST
A conditional statement would allow you to accomplish this. Presumably, you could create an algorithm such as this: function Check_Gold() Gold = 1; Maximum_Number = 10; if(Gold < Maximum_Num)then Gold = Gold + 1; Increases the value if the variable "Gold" is lesser than the limit; else print("You have reached the gold limitation!"); Event:connect(Check_Gold);


Re: Where can I learn HTML?
ParadigmaticAnon
Png

Join Date: 2016-01-25
Post Count: 182
#182599336Thursday, January 28, 2016 10:44 PM CST
Ah, here you go: http://www.tutorialspoint.com/html/index.htm


Re: C Discussion Thread
ParadigmaticAnon
Png

Join Date: 2016-01-25
Post Count: 182
#182599997Thursday, January 28, 2016 10:58 PM CST
"I use code::blocks, what would you suggest?" I generally prefer to utilize a MingGW terminal, for file organization purposes. As for your project, it seems rather interesting. How exactly does your AI program generate new combinations when accurate answers are found, within the array?


Re: Script menu gui
ParadigmaticAnon
Png

Join Date: 2016-01-25
Post Count: 182
#182608841Friday, January 29, 2016 5:18 AM CST
Certainly. I can provide an example algorithm using custom-notation for you, as shown below: [Struct] GUI_Obj = Instance.Create("TextButtonGUI"); [Array] Items = ("Cookies","Cake","Creme","Crepes"); GUI_Obj:Generate_Buttons(Get_Size(Items)); Sub GUI_Obj:Clicked(){ Foreach([Integer] k = 1; k < Get_Size(Items); k += 1){ GUI_Obj.Button{k} = Items{k}; } }; GUI_OBJ.Display_Name = "Menu"; Therefore you go, this is the typical syntax found in RBX.Lua. Enjoy.


bddr-loan-bddomingorealty.gif
 
  • +1
Reactions: Lev Peshkov and Deleted member 18244
Anony Ash


Ash Anony


Fenv

Voltage
 
  • +1
Reactions: Deleted member 18244
What is th
I'll offer my original statements now:

Re: To all you programmers out there.
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#180925533Saturday, January 02, 2016 1:28 PM CST
If you are going to learn a programming language, I would suggest that you choose the language based on its viability for your given situation. It is not necessarily the language itself that matters entirely; it is the programming concepts, problem-solving capability, and self-determination that creates the eventual result.
Re: Are scripts case sensetive? I'm a beginner.
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#180927064Saturday, January 02, 2016 1:48 PM CST
Given that your problem has been resolved, it is worth mentioning that the case sensitivity allows an individual to utilize different objects with a common name, assuming that they capitalize them differently.
Re: I want to learn how to code
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#180927392Saturday, January 02, 2016 1:52 PM CST
"Programming In Lua" is a rather good book with valuable and is also available online. http://www.lua.org/pil/contents.html You should likely focus on the theoretical aspects before attempting to construct a game; logical-flow is critical for success.

Re: I made another scripting tutorial.
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#181214010Wednesday, January 06, 2016 10:10 PM CST
I applaud your decision to create a tutorial for teaching components of RBX.Lua to beginning users. However, I would have to admit that the tutorial seemed methodical rather than conceptual. This is often negative as it encourages users to disregard critical thought in the scripting process. I would personally recommend that you revise your tutorials and pedantically explain the actual concepts and functionality involved in drafting a script. Perhaps you could also create a guide for manipulating primitive data such as strings. Nonetheless, "good job."


Re: please explain Data Structures to me
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#183423479Friday, February 12, 2016 2:51 AM CST
"No need to be tongue-in-cheek sassy" My statement was actually rather casual. I never intended to convey any sort of aggression towards you. I suggested an "official" resource on the basis that doing so would likely be much more thorough and in-depth than asking strangers over the Internet who may give you inaccurate/incorrect information.
Re: please explain Data Structures to me
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#183423876Friday, February 12, 2016 3:14 AM CST
"Asking strangers over the Internet creates conversation that may be beneficial to my overall well-being" Ah, alright then, I suppose. We should begin a discussion involving theory-application. I believe that each participant would enjoy that. "Anyways, I really do not know of any ways, at least at the moment, to reduce amount of time taken to sift through a data structure" Which type of algorithm are you currently using? Depending on how you intend to read the components of the data structure, you may be able to cache previously obtained data keys for successive use. Certain techniques rely on the task that needs to be accomplished.

Re: the possibility of creating an A.I. with lua on roblox
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#183782181Tuesday, February 16, 2016 5:05 PM CST
Yes, you can accomplish this with an algorithm. The programming/scripting language itself is not the most relevant aspect. It is whether the language has the necessary, basic tools to devise an algorithm to accomplish the task. There are plenty of sample AI programs for you to examine.


Re: noob help
ParadigmaticAnon
Png

Join Date: 2016-01-25
Post Count: 182
#182597970Thursday, January 28, 2016 10:21 PM CST
A conditional statement would allow you to accomplish this. Presumably, you could create an algorithm such as this: function Check_Gold() Gold = 1; Maximum_Number = 10; if(Gold < Maximum_Num)then Gold = Gold + 1; Increases the value if the variable "Gold" is lesser than the limit; else print("You have reached the gold limitation!"); Event:connect(Check_Gold);


Re: Where can I learn HTML?
ParadigmaticAnon
Png

Join Date: 2016-01-25
Post Count: 182
#182599336Thursday, January 28, 2016 10:44 PM CST
Ah, here you go: http://www.tutorialspoint.com/html/index.htm


Re: C Discussion Thread
ParadigmaticAnon
Png

Join Date: 2016-01-25
Post Count: 182
#182599997Thursday, January 28, 2016 10:58 PM CST
"I use code::blocks, what would you suggest?" I generally prefer to utilize a MingGW terminal, for file organization purposes. As for your project, it seems rather interesting. How exactly does your AI program generate new combinations when accurate answers are found, within the array?


Re: Script menu gui
ParadigmaticAnon
Png

Join Date: 2016-01-25
Post Count: 182
#182608841Friday, January 29, 2016 5:18 AM CST
Certainly. I can provide an example algorithm using custom-notation for you, as shown below: [Struct] GUI_Obj = Instance.Create("TextButtonGUI"); [Array] Items = ("Cookies","Cake","Creme","Crepes"); GUI_Obj:Generate_Buttons(Get_Size(Items)); Sub GUI_Obj:Clicked(){ Foreach([Integer] k = 1; k < Get_Size(Items); k += 1){ GUI_Obj.Button{k} = Items{k}; } }; GUI_OBJ.Display_Name = "Menu"; Therefore you go, this is the typical syntax found in RBX.Lua. Enjoy.


bddr-loan-bddomingorealty.gif
What is this weird forum youre always referencing?
 
  • +1
  • JFL
Reactions: Toth's thot and ALP
  • +1
Reactions: Deleted member 18244
Do you know anything about blockchain programming?
 
Last edited:
I'll offer my original statements now:

Re: To all you programmers out there.
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#180925533Saturday, January 02, 2016 1:28 PM CST
If you are going to learn a programming language, I would suggest that you choose the language based on its viability for your given situation. It is not necessarily the language itself that matters entirely; it is the programming concepts, problem-solving capability, and self-determination that creates the eventual result.
Re: Are scripts case sensetive? I'm a beginner.
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#180927064Saturday, January 02, 2016 1:48 PM CST
Given that your problem has been resolved, it is worth mentioning that the case sensitivity allows an individual to utilize different objects with a common name, assuming that they capitalize them differently.
Re: I want to learn how to code
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#180927392Saturday, January 02, 2016 1:52 PM CST
"Programming In Lua" is a rather good book with valuable and is also available online. http://www.lua.org/pil/contents.html You should likely focus on the theoretical aspects before attempting to construct a game; logical-flow is critical for success.

Re: I made another scripting tutorial.
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#181214010Wednesday, January 06, 2016 10:10 PM CST
I applaud your decision to create a tutorial for teaching components of RBX.Lua to beginning users. However, I would have to admit that the tutorial seemed methodical rather than conceptual. This is often negative as it encourages users to disregard critical thought in the scripting process. I would personally recommend that you revise your tutorials and pedantically explain the actual concepts and functionality involved in drafting a script. Perhaps you could also create a guide for manipulating primitive data such as strings. Nonetheless, "good job."


Re: please explain Data Structures to me
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#183423479Friday, February 12, 2016 2:51 AM CST
"No need to be tongue-in-cheek sassy" My statement was actually rather casual. I never intended to convey any sort of aggression towards you. I suggested an "official" resource on the basis that doing so would likely be much more thorough and in-depth than asking strangers over the Internet who may give you inaccurate/incorrect information.
Re: please explain Data Structures to me
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#183423876Friday, February 12, 2016 3:14 AM CST
"Asking strangers over the Internet creates conversation that may be beneficial to my overall well-being" Ah, alright then, I suppose. We should begin a discussion involving theory-application. I believe that each participant would enjoy that. "Anyways, I really do not know of any ways, at least at the moment, to reduce amount of time taken to sift through a data structure" Which type of algorithm are you currently using? Depending on how you intend to read the components of the data structure, you may be able to cache previously obtained data keys for successive use. Certain techniques rely on the task that needs to be accomplished.

Re: the possibility of creating an A.I. with lua on roblox
Moronism
Png

Join Date: 2010-02-08
Post Count: 451
#183782181Tuesday, February 16, 2016 5:05 PM CST
Yes, you can accomplish this with an algorithm. The programming/scripting language itself is not the most relevant aspect. It is whether the language has the necessary, basic tools to devise an algorithm to accomplish the task. There are plenty of sample AI programs for you to examine.


Re: noob help
ParadigmaticAnon
Png

Join Date: 2016-01-25
Post Count: 182
#182597970Thursday, January 28, 2016 10:21 PM CST
A conditional statement would allow you to accomplish this. Presumably, you could create an algorithm such as this: function Check_Gold() Gold = 1; Maximum_Number = 10; if(Gold < Maximum_Num)then Gold = Gold + 1; Increases the value if the variable "Gold" is lesser than the limit; else print("You have reached the gold limitation!"); Event:connect(Check_Gold);


Re: Where can I learn HTML?
ParadigmaticAnon
Png

Join Date: 2016-01-25
Post Count: 182
#182599336Thursday, January 28, 2016 10:44 PM CST
Ah, here you go: http://www.tutorialspoint.com/html/index.htm


Re: C Discussion Thread
ParadigmaticAnon
Png

Join Date: 2016-01-25
Post Count: 182
#182599997Thursday, January 28, 2016 10:58 PM CST
"I use code::blocks, what would you suggest?" I generally prefer to utilize a MingGW terminal, for file organization purposes. As for your project, it seems rather interesting. How exactly does your AI program generate new combinations when accurate answers are found, within the array?


Re: Script menu gui
ParadigmaticAnon
Png

Join Date: 2016-01-25
Post Count: 182
#182608841Friday, January 29, 2016 5:18 AM CST
Certainly. I can provide an example algorithm using custom-notation for you, as shown below: [Struct] GUI_Obj = Instance.Create("TextButtonGUI"); [Array] Items = ("Cookies","Cake","Creme","Crepes"); GUI_Obj:Generate_Buttons(Get_Size(Items)); Sub GUI_Obj:Clicked(){ Foreach([Integer] k = 1; k < Get_Size(Items); k += 1){ GUI_Obj.Button{k} = Items{k}; } }; GUI_OBJ.Display_Name = "Menu"; Therefore you go, this is the typical syntax found in RBX.Lua. Enjoy.


bddr-loan-bddomingorealty.gif
bddr-loan-bddomingorealty.gif
 
I do, but i also want u to programmer pill me

Ik it’s big money but can I work from home, small hours big pay, have this as a side job. And what’s the money actually looking like

Genuinely curious
 
I do, but i also want u to programmer pill me

Ik it’s big money but can I work from home, small hours big pay, have this as a side job. And what’s the money actually looking like

Genuinely curious
blackpill most of the companies if you go in person give you free food
facebook gives you free housing
if you dont get a promotion you can leave and get a guaranteed pay increase
senior software engineers dont even code
 
  • +1
Reactions: Lev Peshkov
I do, but i also want u to programmer pill me

Ik it’s big money but can I work from home, small hours big pay, have this as a side job. And what’s the money actually looking like

Genuinely curious
 

Attachments

  • Screenshot 2022-06-25 at 12.08.19 PM.png
    Screenshot 2022-06-25 at 12.08.19 PM.png
    58.1 KB · Views: 0
  • +1
Reactions: Lev Peshkov and Unhuman
its taking a long time because i myself am watching a shit ton of programming videos and practicing on various sites
 
blackpill most of the companies if you go in person give you free food
facebook gives you free housing
if you dont get a promotion you can leave and get a guaranteed pay increase
senior software engineers dont even code
I don’t want a degree in this as a job is there any online jobs where u can spend a few hours a week to make some money or sm?
 
I don’t want a degree in this as a job is there any online jobs where u can spend a few hours a week to make some money or sm?
thats the point of my guide to not get a degree
 
  • +1
Reactions: Lev Peshkov
if you play your cards right you can get a programming job that takes like 3 hours to finish
I like that and I bet the pay on that would fonomenbt that of my 8-5 businesscel grind

Indeed my 20-37 years will be grind af until I save myself 2mils
 

Similar threads

MoggerGaston
Replies
25
Views
192
MoggerGaston
MoggerGaston
heightmaxxing
Replies
0
Views
25
heightmaxxing
heightmaxxing
NORDEN SLAVORUM
Replies
5
Views
95
Niko.
Niko.
lifeless
Replies
6
Views
65
lifeless
lifeless
mr take your gf
Replies
7
Views
205
mr take your gf
mr take your gf

Users who are viewing this thread

Back
Top