Fired for going to coding bootcamp? learn programming |
- Fired for going to coding bootcamp?
- I'm currently a second year student taking IT. I feel hopeless and I'm at the brink of giving up.
- How normal is it to remember 10% of what you've learned if you haven't used it for some time?
- 30 mins phone interview tomorrow. How do I impress the interviewer?
- What technology would you use to create a web/mobile app that is similar to yelp?
- Where to begin
- Best courses on discrete mathematics?
- Dijkstra Algorithm Question: Which node do you visit if 2 options have the same distance?
- How to create multiple variations of an XML structure?
- How important is just a notebook and pen to programmers?
- Making Dice using CSS and using Javascript Switch Statements to display the dice
- IT Ticketing system?
- What do i do to improve my coding after the beginner stage?
- Coding and scripts for usernames of followers on twitch
- Understanding some code golf in Python
- Database Update Function Best Practice
- If this is stupid please don’t downvote but can you learn to code on a Chromebook?
- Best bootcamps for coding/software engineering?
- Css working in Chrome but not on Firefox
- Computer science final year project
- How do you deal with code you don't understand?
- Raspberry Pi or Arduino for a Complete Beginner?
- Is it possible to write a bash script that opens a video with xdg-open, plays it until the video finishes and then moves on to another specified video?
- Looking for a place to get started for a specific project
Fired for going to coding bootcamp? Posted: 08 Oct 2020 06:56 PM PDT I started a part time bootcamp during the pandemic that I do after work hours. My CEO found my personal website (he must have searched for it because I don't have it posted) and I got fired today. I didnt use my work laptop to code at all but they said they think I was learning during work time. Anyone else go through something like this? It will probably blow over because my CEO is really emotional and normally calms down but I just never thought something like this could happen. I cant be the only person. [link] [comments] |
I'm currently a second year student taking IT. I feel hopeless and I'm at the brink of giving up. Posted: 08 Oct 2020 09:02 AM PDT I discovered my love for computers since I started high school, I learned about computer hardware, networking, and other stuff related to computer hardware. I graduated from high school and contemplating my future. The nearest University in our home only offers an IT course and Computer Science course. I chose IT since I thought that it would be about hardware. Then it hit me. There is no hardware here, just pure software. We took C++ in the first sem of our first year then took Java in the second sem. Guess what? the pandemic hit and we only got up to loopings. The time for second-year came since they automatically promoted us, we are now in Object-Oriented Programming and It sucks cause our professor just gives out all the powerpoints from our lessons and just lets us study by ourselves. We have an activity right now about classes, objects, parameters, and switches packed into one program. I'm regretting my choices right now and thinking If I should continue doing this? Actually, I'm not learning and I'm not happy and feeling depressed in my current situation. [link] [comments] |
How normal is it to remember 10% of what you've learned if you haven't used it for some time? Posted: 08 Oct 2020 01:36 AM PDT For example, today I am watching an angular fullstack tutorial and as the instructor shows how to make forms (i built forms a couple of times) I have this feeling of vaguely remembering how forms work, but I would need 10 minutes of "freshening up" to use them again. I think a large part of my API knowledge is like that. Its not "ready for use" and needs freshening up. And by the time I freshened up, whatever I was doing before has now started moving a little towards the "vague recall" zone (since my focus is elsewhere). Is that common? [link] [comments] |
30 mins phone interview tomorrow. How do I impress the interviewer? Posted: 08 Oct 2020 06:23 PM PDT So stressed out 😥 how would I respond to a question I don't know? I also have a stuttering problem and I tend to stutter in interviews too. 😞 This is my first professional interview, so I'm very anxious. Edit: Thank you so much for the good advices, everyone. I will report back here after the interview is over. [link] [comments] |
What technology would you use to create a web/mobile app that is similar to yelp? Posted: 08 Oct 2020 05:52 PM PDT I need to create a over view of a web and mobile app. The app is similar to yelp in that it is a service and review based app. It also is responsible for storing images and has a chat messaging system, similar to something like Ebay. Im kind of stumped on what tech I should be incorporating. Besides main languages like using a web and mobile development language what else can I include as a possible part of the tech stack. Like what AWS services can I include and whether or not I should use a relational or non relational database. Im trying to learn as much as possible about choosing appropriate software but its been hard so far trying to connect the dots. Any help is welcomed [link] [comments] |
Posted: 08 Oct 2020 09:34 PM PDT Hi, I'm interested in majoring in Computer Science and I would like to know where I can learn to program (free online resources would be preferable)? [link] [comments] |
Best courses on discrete mathematics? Posted: 08 Oct 2020 06:47 PM PDT Hi, so after learning about hash tables in cs50, it got me thinking, and in the rabbit hole that followed, I ended up wanting to find a course on discrete mathematics. So any good (free) courses? [link] [comments] |
Dijkstra Algorithm Question: Which node do you visit if 2 options have the same distance? Posted: 08 Oct 2020 08:44 PM PDT Do you do both before moving on and the program splits? Example: https://i.imgur.com/LJsUXSF.png Starting with s, the smallest distance is to node 2. So you visit node 2 next. Next, the distance to node 1 and node 3 will be the same. So which do you visit? I tried following just one path when there were 2 same options. However, this backed me into a corner on the graph and I got stuck on Node 3, with Node t being the only node left that was unvisited. [link] [comments] |
How to create multiple variations of an XML structure? Posted: 08 Oct 2020 10:13 PM PDT Hi, so my main goal is to be able to create multiple variations of an XML element (using powershell if possible). For example, the xml structure below: <note> <to>Tove</to> </note> Question 1: Is there a way to save that entire structure in one variable? Question 2: How would I "save" that structure and create multiple copies of that structure with only one modification such as changing the <from>Jani</from> to <from>cody</from> and <from>John</from>? I want to be able to make modified copies of that structure at will but don't know where to start. Any help appreciated. Thank you! [link] [comments] |
How important is just a notebook and pen to programmers? Posted: 08 Oct 2020 07:06 PM PDT I understand the bread and butter is the computer, obviously. But in programming how important is just a regular old notebook and pen? How about whiteboards? [link] [comments] |
Making Dice using CSS and using Javascript Switch Statements to display the dice Posted: 08 Oct 2020 09:09 PM PDT So I am currently learning and taking classes on HTML, CSS, and Javascript all at the same time. Which probably was a mistake because lack the knowledge in certain areas to complete assignments properly. So this is what I need to do I need to write a script that can produce a user-specified number of dice with random dice faces. I can't use images the dice have to be created using css. I have gotten it to display the correct number of dice squares when entered in the prompt using a for loop. I have also drafted the start of a function that is to display the random dice patterns. So first I need help in creating the dice using css and then help with the switch statements, because I am not entirely clear on how it is supposed to use the css to display random dice faces. any help is much appreciated. [link] [comments] |
Posted: 08 Oct 2020 08:55 PM PDT Hi, I have been tasked with an internship project to build a Help Desk Service Request tracking system for the technicians of an IT department. I have to create a program to keep track of open service requests. Data that should be tracked include, date of requested, description of request, technician assigned, date of completion and notes. Create a report that will produce a list of open requests by technician. So, I have absolutely not been educated over how to do any of this, but my internship is happy with my work in other aspects of my job and wants to hire me regardless. HOWEVER for some reason, in addition to my actual job and classes I apparently have to do a final project as well. Yay. Is there some guide out there that shows something similar? I've taken like Python 1 or C++ 1, never a second level, so this is very out of my league and I'm 100% going to have to teach myself. The course that would teach me I will take AFTER this is required (bc that's smart right) Thanks again! Prefer C++ as that's what I have the most experience with, but at this point I'm teaching myself, so who cares. [link] [comments] |
What do i do to improve my coding after the beginner stage? Posted: 08 Oct 2020 06:05 PM PDT All or a lot of coding courses are only for beginners, i am wondering what to do after that first stage, what more stuff do you have to know after? [link] [comments] |
Coding and scripts for usernames of followers on twitch Posted: 08 Oct 2020 11:46 PM PDT Hey! So I have a twitch channel and on that you can see your followers under the "follow" tab. On my streams I have a list showing the usernames of everyone who follows me, because I think its a cool way of showing my appreciation to everyone who supports me. However I'm currently doing it manually so I was wondering if any of you would know how to make this an automated process. thank you !!! [link] [comments] |
Understanding some code golf in Python Posted: 08 Oct 2020 11:45 PM PDT Hey all! I was recently looking to solve a problem and stumbled upon a code golf solution that addresses this very problem. Unfortunately, I don't understand what it is doing (I also need to convert it to C++ at some point). I was wondering if anyone could help me ```
[link] [comments] |
Database Update Function Best Practice Posted: 08 Oct 2020 07:51 PM PDT Is a generic database update function like UpdateUser(...some params) vs. UpdateUserPicture better? On one hand,, the UpdateUser function would allow the caller to update multiple fields with one database call, where UpdateUserPicture is a clear function that does exactly one thing, but if I needed to update multiple fields at once, then I need to make multiple database requests. What are your thoughts on this? [link] [comments] |
If this is stupid please don’t downvote but can you learn to code on a Chromebook? Posted: 08 Oct 2020 11:27 PM PDT I don't have more than 100 to spend and my local best buy has a chromebook for 114 that looks pretty good and I want to start programming one day. [link] [comments] |
Best bootcamps for coding/software engineering? Posted: 08 Oct 2020 07:40 PM PDT So I'm sorry if this is against the rules and I understand if it gets deleted but I couldn't find a specific thread for this in the FAQs so here I am. I am newly getting into coding and am looking for a bootcamp to enroll in, specifically one for software engineering. Can anyone point me in the right direction? I have done some research online but there are just SO many options that I have been getting extremely overwhelmed. Any help would be amazing!! [link] [comments] |
Css working in Chrome but not on Firefox Posted: 08 Oct 2020 11:25 PM PDT I wrote html and css in VSCode and opened it in chrome. It worked perfectly. But when I did the same in Firefox, it is not working! Only partial CSS is working and the rest isn't. And I need to use firefox from now. Can someone help me please? It's frustrating. [link] [comments] |
Computer science final year project Posted: 08 Oct 2020 10:57 PM PDT I am a final year student at a UK University doing a computer science degree. I have to decide on a final year project very soon and I'm not entirely sure on what to do. I hate essay writing as I am more of a practical person who would like to make something like an app/website instead of doing a research focused project. Does anyone have any decent ideas for a final year soft engineering project such as apps/websites to make? Something that would be useful but not too difficult/overcomplicated to build. Thanks! :-) [link] [comments] |
How do you deal with code you don't understand? Posted: 08 Oct 2020 07:29 AM PDT I'm still learning js, but sometimes i stop and start to ask why the "x" is here, how this happened, and things become non logical for me. [link] [comments] |
Raspberry Pi or Arduino for a Complete Beginner? Posted: 08 Oct 2020 06:43 PM PDT I'm planning on getting either a Raspberry Pi or an Arduino to learn in my spare time. To note, I am a beginner with little knowledge in python programming. There are heaps of projects I want to explore, such as doing simple tasks as turning lights on and off, to building functional robotic arms. Where should I begin? I think that an Arduino is more friendly for beginners, but I am leaning towards the Raspberry Pi because it seems to have a lot more options in terms of what it can do. Thanks guys! [link] [comments] |
Posted: 08 Oct 2020 10:17 PM PDT Hello, I'm BM. A very nice and polite guy. Is it possible to write a bash script that opens a video with xdg-open, plays it until the video finishes and then moves on to another specified video? Yes or no? [link] [comments] |
Looking for a place to get started for a specific project Posted: 08 Oct 2020 10:15 PM PDT So I'm most likely going way over my head, but there is this site called deathroulette that basically let's twitch streamers integrate just to notate that they are streaming one of the approved games and if so it will show every level and enemy combination of where the steamer can die. At this point in time the website is dead. The Twitter hasn't posted done 2015 and the creator never replies to tweets about it. The audience can place bets (fake money) on where they think the steamer will die and what to. The round is started, voting closed and round ended by the streamer so no need for twitch integration for that. Basically what I'm asking is what coding language do you think would be best for me to start learning to end up being able to make this. I know I should prob just freelance someone and save a lot more time, but I thought I would at least try to learn something before I went that route. Any help is appreciated. Thanks! [link] [comments] |
You are subscribed to email updates from learn programming. 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