Advice for Associate Software Engineer (5 years experience) Ask Programming |
- Advice for Associate Software Engineer (5 years experience)
- Getting valueerror: object arrays cannot be loaded when allow_pickle=false
- looking for help
- Is there anything easier than Lua?
- App development for iOS and Android using kivy and sqlite
- Renaming data based on sql query (PHP)
- Convenient and accessible appointment scheduling assistant (GAS, maybe a Telegram bot)
- Interview question system design? How to answer
- Tip of my tongue: paper talking about abusing finite length of x86 reorder buffers?
- How to programming
- Business founder here want knowledge about payment systems.
- JavaScript is not usefull?
- Could anyone help me with some terms in system architecture?
- Folder color inquiry.
- Guidelines on making an automatic Facebook post grabber?
- What is name and content attribute in meta tag
- Php editor you can use more than one file in
- Permutation Sum Problem
- Scrap and navigate on internet with bash
- HTML, CSS and Javascript?
- What is UX design
- How many triples of "1" there is from 0000 to 9999
- How many triples of "1"s there is from 1 to 10000?
- Data entry bot for websites, where to start?
Advice for Associate Software Engineer (5 years experience) Posted: 01 Jul 2021 10:40 PM PDT Hi all, First time posting in this subreddit, so hopefully this doesn't break any rules. For background: As the title says, I am a software engineer with 5 years of professional experience (In my mid 20s). I've been programming since freshman year of high school1 , and went on to get my B.S. in computer science engineering. I currently work for a Fortune 500 company primarily working primarily with Java in the big data (Hadoop) space. My previous job (same industry, smaller firm) was mainly a full stack role, though leaned frontend, where I used Java for the backend and Angular/node on the frontend. Technologies I've worked with (I may be forgetting some, but for the most part this is it):
What I am asking for: 100% of my programming experience has been in an academic or professional setting. I do not write code in my free time (other than leetcode/take homes for job applications). This has mainly been due to a lack of time/laziness, to be honest. I typically work 50-60 hours a week, so my free time during the week is limited. I've always told myself that I don't need to do side projects because I spend all day building software. Another blocker for me is that I just have a lack of an imagination. Even if I make the time, I have absolutely no idea what to do. I feel like I have this cool and useful skillset that I'm not using for anything besides work. That is what I want to change. A few notes:
Basically, I'm looking for any starter-ish projects. Any advice is welcome. Thanks all! 1 I was beyond lucky to have intro to CS classes in high school back in 2008. I am a very strong advocate for cs classes starting as early as middle school (something fun like a robotics class, and a basic web-app class), as well as be required for most non-stem university students - all of my business major friends wish they learned some form of programming in college. [link] [comments] | ||||||||||||||||||||||||
Getting valueerror: object arrays cannot be loaded when allow_pickle=false Posted: 01 Jul 2021 01:06 PM PDT I Got an npz file and I am getting: And it gives: object arrays cannot be loaded, any ideas? [link] [comments] | ||||||||||||||||||||||||
Posted: 02 Jul 2021 02:05 AM PDT hello there fellow programers! first of all, im sorry if my english is bad. i'm looking for a way to create an app for both ios and android. i recently encounterd figma that i use there to mainly design the UI, and after digging a bit i saw that there is a coding language called: "flutter" that many recomend her to use for developing app for both ios/android... my questions are:
will appriciate any help from you guys! [link] [comments] | ||||||||||||||||||||||||
Is there anything easier than Lua? Posted: 02 Jul 2021 12:25 AM PDT I recently started working with Lua because of Rainmeter skins, and I feel like it's the easiest thing in the world. Am I wrong? [link] [comments] | ||||||||||||||||||||||||
App development for iOS and Android using kivy and sqlite Posted: 02 Jul 2021 01:23 AM PDT My friends and I really got into reading this summer and I was thinking to write a program for a book tracker (something like goodreads but really basic). I am a beginner and I'd like some advice before i start this project. I want it to be a cross platform app (mostly for ios and android) so thats why i chose to use kivy (if you have other suggestions please share). From what i know, i need an apple developer certificate to get the app on an iphone, which is quite costly for me. 1) Is there any other way to download the app on an ios device? The point of this app is to simply log your entries (name of the book, author, date when finished, rating) and store them in a database. I'd like to have a "friends" feature in order to see what books the other users have read. 2) So, I'm asking - is sqlite good to make one centralized database for all the users? 3) Do I need to take into account a cloud server in order to make this work? 4) Do you have any suggestions for tutorials for both kivy and sqlite? 5) Should I consider writing a web app instead? Thank you! [link] [comments] | ||||||||||||||||||||||||
Renaming data based on sql query (PHP) Posted: 02 Jul 2021 01:17 AM PDT Hi guys, I need help with my data extraction using sql. Example query:
From this query, I wanted to make insert them into a PHP table but with the status change to readable word. For example:
I greatly appreciate any help I can get for this. Thank you. [link] [comments] | ||||||||||||||||||||||||
Convenient and accessible appointment scheduling assistant (GAS, maybe a Telegram bot) Posted: 01 Jul 2021 11:41 PM PDT I am looking for a way to set up a convenient and accessible scheduling assistant. My primary thought was to whip up a Google Form and link that to a calendar. Then I came across a manual that showed me setting up a Telegram bot linked to Google services could be within my amateurish might. This organisation is highly undisciplined regarding admin. Which is why the service must be readily accessible, so I'm leaning towards the Telegram bot. Since we use Telegram (Signal second) as our main means of communications, that comes in handy. Any major negatives that I might be overlooking? [link] [comments] | ||||||||||||||||||||||||
Interview question system design? How to answer Posted: 01 Jul 2021 11:00 PM PDT Today I went to a interview he gave a scenario like there is a application with a load balancer which connects a .net core/node js application and the db is sql server/any db. So now the application is working fine but in a particular button when the user clicks that button the application takes a minute to render desired output. So your tasked to analyze what is the reason behind that 1 minute delay. How you will check each component to know where the issue is. Since I was a backend guy I dont know much about front end and I don't know much about load balancer. How can I answer this question. Below is my reply. whether my approach is correct. My reply points are : Front end: I will check in the dev tools whether the delay is due to any frontend components thread, will check the network to know about content it brings. check for the light house report whether there is any component rendering delay. Load Balancer : I will check whether the load balancer check the health grade of the application if it has multiple instance. Will check all the instance of server is working fine. I will check see whether the backend pool have appropriate number of instances in live. I generaly spoke in the context if the application in cloud. Back end : Check whether the data structure to hold the data is appropriate. check for logic holes. Will check for what type of orm we are using. will check whether lazy loading is implemented. DB: will check whether the table predicate is properly indexed. Assign appropriate data type for the return value. [link] [comments] | ||||||||||||||||||||||||
Tip of my tongue: paper talking about abusing finite length of x86 reorder buffers? Posted: 01 Jul 2021 06:12 PM PDT I read this crazy paper a few years ago where they were I think demonstrating you could avoid needing to use memory barrier instructions by taking advantage of the fact that in practice your processor does not have an unlimited ability to reorder instructions and they will only ever move forward or backward in execution order some finite bounded amount. I can't find it now and I can't figure out the right search terms. I think I originally heard about it on Hacker News. Anybody know what I'm talking about? [link] [comments] | ||||||||||||||||||||||||
Posted: 01 Jul 2021 09:32 PM PDT I want to learn something about programming or abour informatic, do you guys recommend something?I dont know where I can start, so I need your help, thanks. [link] [comments] | ||||||||||||||||||||||||
Business founder here want knowledge about payment systems. Posted: 01 Jul 2021 10:58 AM PDT I run a service marketplace and I'm stuck at getting a payment gateway. I have come to a understanding that if i use a global payment gateway like paypal, stripe Braintree to accept payments and use hyperwallet to payouts my sellers it would work. So developers my question is from a technical perspective would this be possible to do. This has been stopping me from launching my business please if you could give me insight i would be very thankful. [link] [comments] | ||||||||||||||||||||||||
Posted: 01 Jul 2021 05:26 AM PDT I've a question, why we should to use js form verification if user can open developer move* or inspect menu* and to remove the script that verify if the form is valid? We can use server-side language like PHP / Python and there to check if the form is valid but the problem is refreshing the page, we can use ajax to solve that? So, why do people use js to verify forms? [link] [comments] | ||||||||||||||||||||||||
Could anyone help me with some terms in system architecture? Posted: 01 Jul 2021 02:33 PM PDT I'm interested in starting to learn about system architecture and would like to do so by actually building a design document. I've read tons of articles online and they all seem to mention these terms:
I'd really appreciate if someone could clarify these, and in additional...
Thanks in advance! [link] [comments] | ||||||||||||||||||||||||
Posted: 01 Jul 2021 06:31 AM PDT This morning I opened pycharm, updated my project like I usually do in case there were any changes (I'm the only one working in my feature branch so it's unlikely but I update just in case my one coworker added any test code) and for some reason, one of my folders is purple now. The folder only has yaml files so I can't imagine anything changed. I looked it up and I can't see what purple means. Any help? It wasn't purple yesterday https://imgur.com/T1dm1gc [link] [comments] | ||||||||||||||||||||||||
Guidelines on making an automatic Facebook post grabber? Posted: 01 Jul 2021 06:14 AM PDT Hey there! So I'm looking for a new apartment with certain criteria in several Facebook groups. Now I thought, instead of going on Facebook 4 times a day to see if something new was posted, I'll try writing a tool to automatically search for new posts in these groups with matching keywords and alert me/ save the post URL somewhere. How should I approach this? My main issues are:
Thank you! :) [link] [comments] | ||||||||||||||||||||||||
What is name and content attribute in meta tag Posted: 01 Jul 2021 01:08 PM PDT So I was learning about html tags and I came across meta tag and it's attributes For eg:- <meta name="keywords" content="keyword 1, keyword 2,...., keyword n"> So what is this name attribute and content attribute??? If you know python basics ,it seems kinda similar to dictionary in python which has name-value pair I read that it's used by the search engine or the browser (I don't know how they are different but anyways) for SEO, which helps get your website/webpage ranked higher in the organic search results of someone searches something related/relevant to the content of your webpage. So is it like the name-value pair of python but instead of a program it's something that the browser/search engine needs for your SEO(I just know a few things about this though)?? [link] [comments] | ||||||||||||||||||||||||
Php editor you can use more than one file in Posted: 01 Jul 2021 12:30 PM PDT This there an editor that you can add more than one file to die php. My friend needs it for school and everything she's tried so far isn't working. [link] [comments] | ||||||||||||||||||||||||
Posted: 01 Jul 2021 12:25 PM PDT Permutation Sum ProblemI have a problem, it my require a formula and it may require some programming logic but I feel like there is a simple way to solve this problem but I just cant see it. I have a part that changes length between 8 and 60 inches [L] . I have 5 other parts, each with a discrete length between 5 and 7 inches i.e X1=5, X2=5.5, X3=6, X4=6.5, X5=7. I need to find some way of filling up the arbitrary length[L] such that with any permutation of discrete X values I can sum them up and when subtracted from L the remainder is less than 1. Given an arbitrary length [L] and a DISCRETE quantity of lengths between N=5 and B=7 [N<X1,X2,X3,X4,X5<B]. Find a formula that will give the quantity [Y] of any permutation or multiple of lengths between N and B such that L-(sum of permutation of x values) < 1 [link] [comments] | ||||||||||||||||||||||||
Scrap and navigate on internet with bash Posted: 01 Jul 2021 06:56 AM PDT Hi, recently I started a new job and my task is very repetitive and can be easily automated. However, I can't install anything on my computer, so I guess my only option is to code in bash. I would like to create a program which can read some text on the website (a very simple one), and if possible navigate on it by clicking some basic buttons. Can it be done in bash ? If not, do you have any other solution ? Thanks ! [link] [comments] | ||||||||||||||||||||||||
Posted: 01 Jul 2021 06:52 AM PDT Hi guys! First off I'd like to start by saying I am new to reddit. I am here for gathering a bit of help. I want to make a website for my uncle who has a wholesale in beds.I know how I can link HTML and CSS together. But here comes the tough part. I have no clue how Javascript works. All I need is a responsive customizer where a 'customer' can pick and choose different bed sizes, perhaps with the texture, height, width, with or without a head part and etc. Where should I start? I wanted to do the example beds as illustrated, so not with real photographic content. It has to be fast and responsive (if you know what I mean). What terms should I use to search on google for? And is this the way to go? I use a WooCommerce WebShop plugin. Thanks for taking your time! I will be reading in the comment section! [link] [comments] | ||||||||||||||||||||||||
Posted: 01 Jul 2021 09:55 AM PDT Can anyone tell me about what is UX design ??what is it related to ???Coz it seems like an new emerging field. [link] [comments] | ||||||||||||||||||||||||
How many triples of "1" there is from 0000 to 9999 Posted: 01 Jul 2021 02:47 PM PDT Hey guys, by triples I mean for example : "0111", "1011", "1101", "1110". From 0000 to 9999 how many of these triples exist? I did an algorithm to count them and I counted 37 but the number seems kinda odd. Does anyone know if it's right? This is probably easily done with probabilities, but I don't know how lol [link] [comments] | ||||||||||||||||||||||||
How many triples of "1"s there is from 1 to 10000? Posted: 01 Jul 2021 02:42 PM PDT Hey guys, my triples I mean for example : "0111", "1011", "1101" "1110". From 1 to 10.000 how many of these triples exist? I did an algorithm to count them and I counted 37 but the number seems kinda odd. Does anyone know if it's right? This is probably easily done with probabilities, but I don't know how lol [link] [comments] | ||||||||||||||||||||||||
Data entry bot for websites, where to start? Posted: 01 Jul 2021 08:43 AM PDT Hello, I'm an amateur coder. Built some mods and games using C++, and some fairly complex excel "programs". My new job is largely data entry/accounting. I take documents from multiple sources, do some math to balance all the figures, then enter these figures as well as some misc. text data into two separate websites, and make sure everything matches. My job would be much faster (at least 50%) if I could just run a bot to fill out both websites once I have all the data ready in excel. Where should I start researching about how to do this? [link] [comments] |
You are subscribed to email updates from AskProgramming. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment