How to share part of code with other Devs - C#, Git, VisualStudio Ask Programming |
- How to share part of code with other Devs - C#, Git, VisualStudio
- What would be the best language to handle website logging?
- Run a Spring server with a NodeJS server?
- Developer solutions for Walmart marketplace
- Software Engineering Internship at Google Winter 2019
- Hi! New here (and to coding)
- An example/use case of document database?
- Advice for poetry generator coursework.
- resources to learn android development?
- Should UI be coupled with logic in game programming?
- Development as a Second Career
- Need advice on VR programing
- How did the Teletext / Ceefax page navigation work?
- Python get HTML Files from single website
- What Sector of Programming Allows You to be The Most Creative
- Dev-C++ hello world help
- How can i use jshint-esnext in sublime text 3?
How to share part of code with other Devs - C#, Git, VisualStudio Posted: 27 Aug 2018 08:20 AM PDT We are a small team who working for proprietary software using C# on Visual Studio and Entity Framework. We use Git as our source control combine with Visual Studio Team Services. Now, we do have a temporary coder who only works for couple of months. So the problem is since we are working for proprietary software we cannot share whole code base with the new temporary worker as it may have a risk of code security as well as client's compliance requirements. Therefore I want to know what is the best option to share only the required code with temp worker yet still s/he can run and debug the part of s/he developing. Below is the current solution structure. We cannot use referencing DLLs since the new coder needs to works on all 3 layers (only for adding a new specific functionality). Project.sln
Thank You [link] [comments] |
What would be the best language to handle website logging? Posted: 27 Aug 2018 07:11 PM PDT I want to learn how to access the websites i visit along with logging all my clicks along side this. Where would be the best place to start learning about this topic? [link] [comments] |
Run a Spring server with a NodeJS server? Posted: 27 Aug 2018 02:03 PM PDT Would it be bad practice to run a Java Spring server (via spring boot) as an API-like service and then have a Node JS server run concurrently? Or should the whole thing run on one server? Sorry if this is really poorly worded. Some context, I need to learn angular for a job. [link] [comments] |
Developer solutions for Walmart marketplace Posted: 27 Aug 2018 04:47 PM PDT I create ecommerce listings for a 3rd party seller on Walmart's website. I want my listings to have customization options like this one does. This is not a possibility with their user interface. Is this something that can be accomplished through their developer tools? I'm pretty ignorant here, and I think we will need to hire a programmer, but I'm just wondering if it's something that is possible to do. Thank you! [link] [comments] |
Software Engineering Internship at Google Winter 2019 Posted: 27 Aug 2018 03:19 PM PDT Applications are due by September 28, 2018 at 11:59pm PT. Applications will be reviewed on a rolling basis and it's in the candidate's best interest to apply early. http://scholarshipcsc.com/software-engineering-internship-at-google [link] [comments] |
Posted: 27 Aug 2018 11:20 AM PDT So, I've always been a hardware guy, but I've started dabbling in code because of work. I wrote a macro for Outlook that Highlights keywords, but I also need it to Bold other words. No matter what, I can't get the Bold to happen. Can anyone tell me where in this piece of code I need to edit to add the element for Bold? (If you can also tell me what to edit to change it from highlighting to changing the font color, I'll send you a custom t-shirt). Snippet: strData = Replace(strData, wordToSearch, "<FONT style=" & Chr(34) & "BACKGROUND-COLOR: yellow" & Chr(34) & ">" & wordToSearch & "</FONT>") [link] [comments] |
An example/use case of document database? Posted: 27 Aug 2018 02:17 PM PDT After some search i could not find an example of a noSql DB. What are the most common cases where one should use them? [link] [comments] |
Advice for poetry generator coursework. Posted: 27 Aug 2018 02:07 PM PDT So I have been making a poetry generator for my year 13 computer science NEA. So far I have implemented a markov chain generator. Problem is its not very good with such a short data set as one poem so the results are pretty bad. My question is, what could I do to make it better and to increace the complexity. Thanks in advance. [link] [comments] |
resources to learn android development? Posted: 27 Aug 2018 02:03 PM PDT |
Should UI be coupled with logic in game programming? Posted: 27 Aug 2018 04:49 AM PDT I'm currently writing a game using Scala and LibGDX. I have a main class that has a `render` method. This then calls the `render` method for the objects I would like to draw. Here is an example. The alternative way of doing this is having the main class do all the rendering and for `pacman` to not have a render method. I could then store an enum with each game object and depending on the enum I would draw them accordingly. This will work fine but means that logic is being mixed with UI. I know in general GUI design you would separate out the client from the server side but for games is it a bit different? [link] [comments] |
Development as a Second Career Posted: 27 Aug 2018 09:45 AM PDT Today is one of those days were I look outside of my window and fantasize about embarking on a different career path. I've always had a fascination with development, and have taught myself some fundamentals. I never did take the plunge though. How hard would it be for someone in their mid 30's to embark on a second career in software development? I do not have a degree in CS, but I was pondering taking the program below to update my skills and make me employable. Thoughts? [link] [comments] |
Posted: 27 Aug 2018 06:18 AM PDT I am a construction managment student in my final year of college. I need to do a senior design project which I will have to present at the end of next semester. I really like the idea of creating a VR program where you can explore a building before it's built. However, I have limited programing experience. I took an AP computer science course in highschool where we used Java, and I took a intro to programing course in my freshman year of college where we used Fortran. In your opinion, would it be possible for a novice like me to learn how to program for VR over the course of a few months? I will have the opportunity to recruit computer science students onto the project, but I would feel uncomfortable doing the project without being able to contribute much to the programing side. [link] [comments] |
How did the Teletext / Ceefax page navigation work? Posted: 27 Aug 2018 12:59 AM PDT Teletext or Ceefax is a really old information retrieval service built into old TVs https://en.wikipedia.org/wiki/Teletext It worked that lots of content had a page number (i.e. 428) listed on a contents page. If you typed these numbers into your remote, they would pop up in the top right corner of the screen. Then, the current page number would, seemingly randomly, start cycling through numbers until it hit your number. Does anyone know what the seemingly random pattern it used was? Or do they have an interesting technique to mock one? I'm making an interactive prop that would really benefit from it. Here is an example: https://www.youtube.com/watch?v=Xbyxi5j_22s Thanks! [link] [comments] |
Python get HTML Files from single website Posted: 27 Aug 2018 08:03 AM PDT I'm writing a python script to request html files from a website, I literally have to copy a single phrase from thousands of pages from the same site. I wrote the script so it uses requests to get the html, and then scrubs the html for the phrases I need. Everything works except after about 20 seconds, the script exits and says it's been redirected 30 times and this is the max. How do I get around this? I'm just trying to automate this really menial project at work, I'm not trying to DOS a site. I'm literally copying a single phrase from multiple web pages. [link] [comments] |
What Sector of Programming Allows You to be The Most Creative Posted: 27 Aug 2018 06:16 AM PDT Hey Guys, I'm a second year accounting student, and self taught myself VBA and SQL. I like programming and would see myself doing work with analytics and data in the future, however I feel that that may get old and mundane fast. I would like to be creative and create software that's from my imagination and make it come to life, be that on web, desktop, mobiles. What programming languages and technology stacks do you think I should learn to keep up with my passion. [link] [comments] |
Posted: 27 Aug 2018 04:28 AM PDT I've recently tried to get back into programming and decided to start with a simple Hello World program. But no matter what I try, I can't get it to work. Here is my current program: [link] [comments] |
How can i use jshint-esnext in sublime text 3? Posted: 27 Aug 2018 03:34 AM PDT I have jshint installed globally and Currenty im using sublimelinter-jshint to lint my js but it doesnt suppor async/await. I discovered that there is a unnoficial JSHINT package, wich contains experimental support for await/async, called JSHINT-ESNEXT . How can i use it in sublime? [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