• Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Create Several Frames From A List Populated By A Txt

    I should add that, given the original problem, you probably could avoid the class implementation (which I've already tried before realizing this) by simply using the `for:` loop you already …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Create Several Frames From A List Populated By A Txt

    If a more compact format is the goal, It should be possible,and not especially difficult, to wrap the the `tabmain1` in a class which takes a list or dictionary and …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Create Several Frames From A List Populated By A Txt

    While there is no tab control widget built into TKInter, there are a [number of ways to implement one](https://duckduckgo.com/?q=python+tkinter+tab+control&t=canonical&ia=web), with the best option probably being to use a `Notebook` widget …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Create Several Frames From A List Populated By A Txt

    I would like through a list or dict populated by a text to create a frames, this way I could update an app without having to mess with the code, …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Final Assignment

    Even if we were willing to help you get caught cheating by providing you the code for this in a public, easily searched forum, you haven't told us nearly enough …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Final Assignment

    I want to make a Visual Basic contacts application that stores the names, emails and countries of up to 10 different people and allows the user to lookup an address …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in How i can remove duplicate in c

    As a side note: if you have any choice in the matter, *never* use `void main()` in C, or especially in C++. Always use `int main(int argc, char argv[])`, or …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching How i can remove duplicate in c

    this is my sample code to create a student record using singly linked list queue. my problem is that I want to insert a student number in the struct but …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in 9. Write a JavaScript program to generate n number of random numbers and st

    Dumping an assignment to a post without at least saying that is what you are doing isn't the most polite way to start a conversation, especially if you don't show …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching 9. Write a JavaScript program to generate n number of random numbers and st

    9. Write a JavaScript program to generate n number of random numbers and store them in an array. Sort the generated numbers in ascending order using array sort method. Develop …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Program in python

    Dumping an assignment to a post without at least saying that is what you are doing isn't the most polite way to start a conversation, especially if you don't show …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Program in python

    Write a python program to sending a warning message to parents and faculty because of students get attendence below 75%
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in how can i convert code from python to java ...i dont know python

    If you don't mind me asking, why did you need to translate this particular piece of code? Keep in mind that, if this is an assignment, we can only give …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching how can i convert code from python to java ...i dont know python

    size = 10 for i in range(size) : for j in range(size) : if(i == j or size - j == i + 1) : print("* ", end = "") …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in what the code need

    1. Please format your code by indenting each line by four characters. 2. What is your question?
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching what the code need

    #include <iostream> using namespace std; void func1(); void func2(); int count; int main() { int i; for(i=0; i<10; i++) { count = i * 2; func1(); } return 0; } …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in the youtube aglorythm

    You don't. The algorithm (or rather, the elaborate set of algorithms and heuristics, though most people mistakenly refer to it as just 'the algorithm') is a tightly kept corporate secret …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching the youtube aglorythm

    how do i see the youtube aglorythm?. i dont know how i see it.
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Microscopic multiply

    This is basically a variation on Conway's Game of Life, which is a pretty well-known cellular automata ruleset and a common student problem. As RProffitt said, the post as it …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Microscopic multiply

    Microscopic Multiply We want to simulate a small square surface of an area with micro-organisms (like bacteria) and how they spread every cycle of life (iteration) on this surface. This …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Aspx net and c#

    ASP.NET code runs on the server, and is never sent to the browser. You can't see the code because it is not part of the web page itself - rather, …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Aspx net and c#

    Hello i have question i am new at using aspx and c# .. after i get my website from server using FTP i can access the aspx page only but …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in rereun and quit program using 'y' and 'n'

    Try declaring a `boolean` variable initialized to `true`, and use that instead of `true` in the `while()` condition. Then, at the end of the loop, add a call to `reader.NextChar()`, …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching rereun and quit program using 'y' and 'n'

    how can i rerun the program using 'y' and 'n'?? package com.company; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner reader = new Scanner(System.in); while …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in can anyone help me c++ coding to c coding. For example the cout and cin

    Could you clarify what you are trying to do? The title sounds as if yoiu are trying to convert from C++ to C, and were specfically asking how to use …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching can anyone help me c++ coding to c coding. For example the cout and cin

    #include <cstdio> #include <iostream> #include <string> using namespace std; using std::string; // function to get maximum string of characters size_t getMaximum(string dum[], int n){ size_t max = dum[0].size(); for (int …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Write the C++ code to reverse the sequence of characters in the second h

    Dumping an assignment to a post without at least saying that is what you are doing isn't the most polite way to start a conversation, especially if you don't show …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Write the C++ code to reverse the sequence of characters in the second h

    Write the C++ code to reverse the sequence of characters in the second half of it. Ex: S1="abcdef" Output="abcfed"
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Solution of this question

    Dumping an assignment to a post without at least saying that is what you are doing isn't the most polite way to start a conversation, especially if you don't show …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Solution of this question

    Biology versus Chemistry Each subject has their own terms and each term has a weightage representing its importance. Terms and their weightage are given in two files namely biology.txt and …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in pls help idk where to start in this program. I'm just new to programming

    TBH, the assignment is pretty sparse as given; just what the program is supposed to be doing isn't entirely clear, but it seems to be a seating assignment chart, where …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in ajax not working in my ecommerce theme

    Looking at this again, I note that you are using the WooCommerce plugin for WordPress. This is relevant information for anyone trying to help, as the solution is going to …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in ajax not working in my ecommerce theme

    Could you post the JavaScript/AJAX code that goes together with this? PHP code runs entirely server-side, and thus can only affect the browser-side rendering on a refresh. Any AJAX code …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching ajax not working in my ecommerce theme

    I made an ecommerce theme and threre register mini-cart.php by <?php echo apply_filters( 'woocommerce_widget_cart_item_quantity', '<span class="quantity">' . sprintf( '%s &times; %s', $cart_item['quantity'], $product_price ) . '</span>', $cart_item, $cart_item_key ); ?> …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in pls help idk where to start in this program. I'm just new to programming

    This problem most likely is from some textbook, unless I am misreading things, as [shows up on CourseHero](https://www.coursehero.com/file/84055549/JustoJoshuaAldrich-MachineProblem002docx/) under [two different courses](https://www.coursehero.com/file/91710667/Programming-Laboratory-Activitiesdocx/) by separate professors.
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching pls help idk where to start in this program. I'm just new to programming

    1. Use two-dimensional array with size 7 columns and 5 rows. 2. Seat numbers are populated during run-time. 3. User is asked to input a seat number. 4. Seat number …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in I want to make cites in APA style with a .txt file

    Are there any other contraints on the assignment (which I am presuming is for a compiler course, since it is basically a parsing problem)? Are you allowed to use a …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching I want to make cites in APA style with a .txt file

    Originally I have a .txt file where I have the bibliography of some sources in bibtex format, and I want to extract the data and order it in apa style.
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Targeting gay community online

    In my experience, most LGBT+ groups are local to a specific city or region, and are usually formed around private/hidden FB groups and/or Discord channels. Most of the more national …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Targeting gay community online

    Hi I'm gay but not a marketer, I'm a developer. Currently I'm working on non-adult gay website/community. I'd like to get potential users before I go any further. I'm not …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Gave Reputation to satya_19 in sorting linked list

    Hey I got a better solution. Here goes my code . using namespace std; /* Link list AnjelinaJolie */ class AnjelinaJolie { public: int data; AnjelinaJolie* next; }; /* function …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Js validate string (not working?), but number run ok. js / php.

    In JavaScript, the operator `==` tests for object identity, i.e., that they are the same object. This is the same as value equality for primitives such as integers and floats, …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Js validate string (not working?), but number run ok. js / php.

    Hello. I have this code. I want to show 'correcto' when 'response' is 'ola', but not working. I have this procedure to do it fails: -Change php response (echo) to …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in I have link with a code down below

    I think you've misunderstood how message boards work. Just posting a link tells us nothing about what problems you are having, and no one - ***no one*** - here is …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching I have link with a code down below

    <link deleted>
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Recursion effects in Python?

    **@JamesCherrill** : The standard Python implementation doesn't do TCO by default - Guido had doctrinal problems with it because he felt it makes stack traces effectively impossible - but there …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in What is the best game in 2018

    And what makes you think a single answer is going to be possible, or that it would even be relevant in a *development* forum? Is your intention to try to …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching What is the best game in 2018

    What is the best game in 2018
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Replied To a Post in Recursion effects in Python?

    [This rather old post of mine](https://www.daniweb.com/posts/jump/2052054) discusses the use of recursion in general terms; the discussion following it in that thread might prove of value as well. While it is …
  • Member Avatar for Schol-R-LEA
    Schol-R-LEA

    Began Watching Recursion effects in Python?

    Hello everyone, I am a learner, who found this helpful community where one's query is satisfied in so many great ways. I have one such query regarding Recursion. Can anyone …

The End.