• Breaking News

    Sunday, June 13, 2021

    Is there a place where I can find people to work on projects together? Ask Programming

    Is there a place where I can find people to work on projects together? Ask Programming


    Is there a place where I can find people to work on projects together?

    Posted: 12 Jun 2021 11:30 PM PDT

    Hello there, I am a college student who has multiple software engineering internships. I have worked on multiple projects over the years, but I have never really worked with someone else on a personal project. Is there a place where I can find other motivated and interested people to work on projects together with?

    submitted by /u/Substantial-Fact-598
    [link] [comments]

    Any Android and iOS (native) Developers out there? What is your experience doing both at once?

    Posted: 12 Jun 2021 11:29 PM PDT

    I currently work as a cross native mobile dev doing Android (Java/Kotlin) and iOS (ObjC/Swift) and am curious how many of us are out there doing this or is this more rare than I think? For the record, I absolutely love doing both and have no problems here.

    As a side note, company I work for is now asking me to join the backend team and do a 3rd platform (JS) and I'm wondering if this is a ridiculous request and I'm justified in my push back or do others have this same experience.

    I get paid great money but still feel like this is too much and I wouldn't be able to focus on all 3 codebases well enough which means I'd begin to fall short and not be able to keep up with the tasks anymore.

    submitted by /u/RachelSnyder
    [link] [comments]

    Evolution - raw to framework to uber ui

    Posted: 12 Jun 2021 06:59 PM PDT

    I was part of 2 frameworks back in the day. I used to code from scratch. Then got into frameworks to be productive. I spent time mentoring devs. As time went by I evolved a design with reusable classes. 2 crud UI worked together to deliver the equivalent of 4 workflows. The Crud includes search, and a list, all contained.

    Each UI has tabs. Tab 1 is a list of records given by a search. The list is paginated, so only 25 at a time etc. It can present as a calendar/catalog/list/tree. Click details to switch to tab 2 to see this one item.

    If we imagine an invoice, tab1 is, by default, the invoices done by this cashier since the shift started. On each invoice is a place to select or add customer. When we enter part of customer name/phone, this same ui appears but customized for customers. Except now we include a means to select a customer for the invoice. If we edit, we can see the invoices for this customer embedded in a list. From there we can edit/view previous invoices for this customer. That would permit seeing the customer's outstanding balance. So they can decide if they want to order. If a customer from 30 minutes ago returns, go to the invoice list and scroll back. If it was the previous customer, click previous without going to the list, like flipping back to the previous invoice on a stack. Edit and change the invoice.

    That's 1 workflow. The 2nd is to start at customer and add invoices on the fly only for that customer. That can also be a catalog shopping cart ui. They are just variations of a core set of features.

    So 1 UI, repurposed as customer and invoice, serving as either shopping cart, or an administrative order entry setup. The invoices are children of customer or the customer is a picklist for an invoice. Each 'entity' is paired to this ui allowing for batch data entry of each.

    The invoice has access to a subset of the predefined canned reports - based on user role.

    Is there a framework which provided all of these features out of the box, and these 2 entire workflows can be built in 10 minutes?

    submitted by /u/myearwood
    [link] [comments]

    Recommended ways to learn network security? Comprehensive guide to network security?

    Posted: 13 Jun 2021 03:00 AM PDT

    network security

    submitted by /u/hwpcspr
    [link] [comments]

    Sell eCommerce Platform

    Posted: 13 Jun 2021 02:49 AM PDT

    Where can I sell it and get some good profit, I have developed an eCommerce for a company using Laravel with latest technologies, design inspired by Flipkart.com India and Amazon.com and I am looking for selling it

    AWS Support

    OneSignal

    Documentations

    Code structure well managed

    Slack Integration

    Emails integration

    Multiple Payment gateways

    Cash on delivery

    Refund Management

    Lazy loading

    Eager loading

    Delivery boys management

    and so many things that any kind of ecommerce is required to launch

    submitted by /u/aagastya_sid
    [link] [comments]

    I want to create a simple card game to play with friends on phones. Where should I start?

    Posted: 13 Jun 2021 02:43 AM PDT

    My level of knowledge is beginner, I guess. Programmed C++ and C# until the functions and methods, that's my limit. Maximum what I achieved is recreating 2048 on C++. That's why I'm asking what should I learn and what should I do.

    I want this game to be able to be run on IOS/Android, but just an .exe or a website game would be great as well. I don't really know what's more difficult. I want to take the fastest or the easiest way.

    I saw people recreating games i.e. Who wants to be a millionaire? be it a .exe or a flash game. Looked so simple for me.

    I'd appreciate if you'd give me a link to something. The fact is that the card game was invented by ourselves. However, due to the virus and many factors, it is not always possible to play live.

    submitted by /u/dumbquestionsaccoubt
    [link] [comments]

    Need help on usage of Loops (C language)

    Posted: 13 Jun 2021 01:00 AM PDT

    For context = I am building a lucky draw program that firstly asks no. of participants and stores in people and then asks those many each participant to enter a number and stores it in int enteredNo[50]; and then checks each number whether it is a multiple of 5. If not then increments each applicable number until it is a multiple of 5 and the number which becomes multiple of 5 in fewer steps, wins! (the steps are stored in int count[50];

    Thus, the following loop does that, but it is not incrementing the values. Where I've gone wrong? Also, what is the other alternative for the below syntax? Thanks in advance.

    ...........

    int count[50];
    for (int i = 1; i <= people; i++)
    {
    if ((enteredNo[i]) % 5 != 0)
    {
    for (int j = 1; j <= (enteredNo[i] % 5 == 0); j++)
    {
    enteredNo[i]++;
    count[i] = j;
    }
    }
    }
    printf("%d", enteredNo[1]);

    submitted by /u/karankakati
    [link] [comments]

    What're some good places to start offering scripts for sale as a developer who's not got the time and experience for a coding-related job?

    Posted: 13 Jun 2021 12:14 AM PDT

    I've tried to find discord servers but to no avail, I'm looking for a place to offer custom or pre-made c# scripts specifically. Does anyone have experience with this? Thanks in advance.

    submitted by /u/Indorapt0r
    [link] [comments]

    Could block chain technology, theoretically be used to create an efficient and equal tax system?

    Posted: 12 Jun 2021 02:33 PM PDT

    What interesting long running calculation can I do with my pi's idle time?

    Posted: 12 Jun 2021 03:41 PM PDT

    I'm currently graphing the distance between prime numbers from 1 to 9,223,372,036,854,775,807 (Long.MAX_VALUE), but I need something once it is finished.

    submitted by /u/dacracot
    [link] [comments]

    No comments:

    Post a Comment