How do I maintain Focus as a Full Stack? Ask Programming |
- How do I maintain Focus as a Full Stack?
- Udemy course that you believe is a must-have
- What is the best coding language to code a game in?
- Trying to make a reddit bot but im missing an important part... not sure what
- Final Decision: React-Native vs PHP custom framework vs larvel framework
- Need help regarding InputStreamReader in Java
- Azure functions connecting flow to sharepoint with mfa
- Parsing an HTML Ordered List with JavaScript
- Fragments that Can be swiped in all 4 directions(Android Studio)
- [java] trying to achieve Externalization, but can't plz help
- New Year's resolution to learn a new language: Rust, ReasonML, or Scala?
- [java-IO] [CharArrayWriter] no output coming in Demo_2.txt
- Which program would be best suited for some data mapping.
- Using UWP CalendarDatePicker results in Windows.Foundation.IReference`1 <Windows.Foundation.DateTime>
- What should/could I use to make this?
- Advice on Languages/steps
- Apparently these d's (ddddddd) need to be erased twice (copy-paste and try). Here's a 10x one: d
- Is there a corollary to YAGNI, when a more correct design is eschewed in anticipation of a change (which will never actually occur)?
- im trying to open programs automatically when something is open and close when ien it closes
- How would I go about creating this application? (Webforms/PDF/docx)
- Anyone knows Phonegap? Got a small issue
- CodeForces 4C - time limit exceeded.
- Want to build a "Skin Gambling Site" to see how they are put together etc.
- In general how does the process of rendering a GUI differ from a game? Isn't a GUI just 2D graphics?
How do I maintain Focus as a Full Stack? Posted: 04 Jan 2018 07:02 PM PST I'm working on a side project/app which is taking forever to build. I originally estimated to build it in 2 weeks (6 hours a day) but it's been 3 months now. I noticed that the primary reason for me not being able to finish is getting bored and losing focus. I started with backend and finish 30% of it and got bored. Then I started frontend and finished another 30% of it and got bored. How do you guys normally work on full stack stuff? Do you finish 1 side of the application before touching another or do you go by stories? Would using Trello be good idea? [link] [comments] |
Udemy course that you believe is a must-have Posted: 04 Jan 2018 05:58 PM PST With the sale going on with a lot of courses going for 89% what courses do you think that they offer is a must-have? Could be a must-have for everyone, for people interested in your field of work, or for something on the side. [link] [comments] |
What is the best coding language to code a game in? Posted: 04 Jan 2018 09:29 PM PST |
Trying to make a reddit bot but im missing an important part... not sure what Posted: 04 Jan 2018 08:48 PM PST The bot as is it currently can be found here: https://pastebin.com/XZQ58xgz I'm trying to get the bot to reply to the keywords in the config = [] but no dice Notice: I'm trying to update the bot I made 2 years ago into newer and better code. For reference the old code can be found here: https://pastebin.com/Y19PnM8w and the code above worked perfectly back then. What am I missing? [link] [comments] |
Final Decision: React-Native vs PHP custom framework vs larvel framework Posted: 04 Jan 2018 04:27 PM PST I currently have a PHP Mysql sever that accepts data for a php and Android app. I am starting a new app for the first time in years and I'm not sure if I want to use my previous infrastructure or start new with React-Native. Requirements:
This seems routine, but I've never had to do passwords/sign in before. I need to grind the hours. However- I do have experience with PHP, its one of the 8+ languages I've had to use. I have not had to use Javascript. PHP was also my last language I've written in and have an infastructure for. Any suggestions? I'm open to anything. Goal is to get a beautiful app across 3 platforms. [link] [comments] |
Need help regarding InputStreamReader in Java Posted: 04 Jan 2018 07:55 PM PST public static void main(string[] args ) throw exception { InputStreamReader reader = new InputStreamReader(System.in, StandardCharsets.UTF_8); BufferedReader in = new BufferedReader(reader); String line; while ((line = in.readline()) != null){ System.out.println(line) } } the idea is that I am given a set of text and I have to use standard output to give back the answer. My question here is where do I write my function? How do I take the "line of text" as an input. My input for my function is supposed to be an integer so how can I access it. Lastly, with this being void, how do I standard output my result for testing? Please help! [link] [comments] |
Azure functions connecting flow to sharepoint with mfa Posted: 04 Jan 2018 06:40 PM PST I am trying to use this tutorial: https://medium.com/plumsail/how-to-call-sharepoint-from-microsoft-flow-with-a-help-of-an-azure-function-a5740794341 to set up custom MS Flow triggers using Azure Functions to do stuff with sharepoint docs. So, I followed the tut exactly and only changed my credentials so far. I get the following error telling me that the account is not authorized and I must first browse to the site and enable automatic login Not really sure exactly what they mean there, but regardless my login requires mfa. Has anyone tried to do this before, is there something special I need to do when using mfa? Following is the few lines where client connection is made. Any help greatly appreciated. edit: I've set up app registration in AD and tried using that password as an access token but that didnt work. Also tried giving the app registration extra permissions in AD -> App Registrations -> picked my app -> Required Permissions. Basically, looking for anyone who may have set up a flow with sharepoint and mfa .. or auth management with mfa in general. PLS HELP! Thanks. [link] [comments] |
Parsing an HTML Ordered List with JavaScript Posted: 04 Jan 2018 01:53 PM PST Hi there, I've got a site that has an ordered list in the source similar to this: https://pastebin.com/6xxbQtYe . What I'm trying to do is create a GreaseMonkey script that adds a button to the webpage, and when it is clicked, a parsed version of the ordered list gets downloaded as a txt file. I've got the button and txt file download working fine, but I'm having some issues with the actual parsing. My goal is to take the above input and get something that looks like this: https://pastebin.com/vZ3p8b8p . What would be the best way to accomplish this? I was thinking using JS so it's compatible with the GreaseMonkey script. Any help would be greatly appreciated. Thanks! [link] [comments] |
Fragments that Can be swiped in all 4 directions(Android Studio) Posted: 04 Jan 2018 03:19 PM PST So basically I want to create an app that when I swipe left it shows a fragment and so as up down and right. Here is the code I have so far. @Override public Fragment getItem(int position) { switch (position){ case 0: return ChatFragment.create(); case 1: return EmptyFragment.create(); case 2: return StoryFragment.create(); } return null; } @Override public int getCount() { return 3; } } I have two more fragments already set up that I want to put on top and below the EmptyFragment. I'm just not sure what code to use or where to put it. [link] [comments] |
[java] trying to achieve Externalization, but can't plz help Posted: 04 Jan 2018 12:21 PM PST Note: plz copy this code into your favourite editor, as I have lots of comments : and it looks cumbersome. file Car.java. file AddCarRecord.java. file ReadCarRecords.java. execution. [link] [comments] |
New Year's resolution to learn a new language: Rust, ReasonML, or Scala? Posted: 04 Jan 2018 08:09 AM PST ( For clarity, I'm an experience dev, computer science degree, been a developer full time for 6 years out of college and two years while in college ) I see a lot of discussion in here about developing GUIs in Rust. Writing native GUIs with Rust sounds awesome to me, and I'm drawn to it for the obvious benefits. One of the things I want to do in 2018 is learn a new programming language. Last year I learned groovy, which is terrible, and Elixir, which is great and I highly recommend it. I'm currently tore between three languages: Rust, Reasonml, and Scala They have the following requirements:
My goal is to write GUI applications that help me design my board games.
Scala has a nice type system, runs on the JVM so we get all of that sweet sweet Java interop, is functional with a mutable escape hatch, and is a "boring" language that is used extensively. Additionally, the story for writing GUI applications for Java isn't as slick as web technologies. Listen, I'm a millennial. We don't believe in anything. I don't mind opening up a web browser to interact with a graphical user interface, so languages with a better web technologies story is more attractive to me. Scala is not much of a departure from my previous languages, so I fear I wouldn't learn much. I already have Elixir for writing restful APIs and GoLang/Hugo for static sites, so Scala over-laps with these use cases making it less productive.
Reasonml is a newer language from Facebook that compiles to the OCaml syntax tree, and then uses the OCaml compiler to produce the machine code. Currently, Reason's only target is Javascript, but the community has already written a bunch of back-ends to have reason output to other formats. There is a Facebook-developed React library called ReactReason, so targeting web technologies is Reasons JAM. A lot of Messenger.com has already been re-written using reason. Reason has a language server implementation that hooks up to my Emacs config quite nicely, so I'm efficient in my development environment. Reason uses OCaml's type system, which has 25 years of development and is extremely effective. Reason has a compiler. After working with dynamic languages for so long, I have learned to love my compiler. Reason is designed for productive Javascript interop, so I have access to the gigantic nodejs ecosystem. The humans who are d Reason ticks a LOT of my boxes, but it has some warts:
Rust is the language I WANT to learn and use, but I am hesitant for a number of reasons. I want to learn rust because:
I'm hesitant because:
[link] [comments] |
[java-IO] [CharArrayWriter] no output coming in Demo_2.txt Posted: 04 Jan 2018 11:49 AM PST plz open it in your editor : so you will see it in better formatted and syntax highlighted way, plz help its weird [link] [comments] |
Which program would be best suited for some data mapping. Posted: 04 Jan 2018 08:01 AM PST Hi, I've been given a project where i have a series of data schemas: 1) I will need to firstly generate a huge amount of test data based upon the schema constraints 2) I will then need to transform some of the data as best i can so that it will fit a target schema 3) I will then want to run tests against the mapped datasets to ensure that if i were to run it for real X amount of fields would be ingested correctly and X amount still need work/business decisions I'm looking for something free/open source that i could use for this POC. I'm not too familiar with a lot of ETL programs but am after something thats relatively user friendly. Still trying to ascertain what datatypes the source and target will be. However it should just be standard alphanumeric / date type data and nothing crazy (geospatial) Any help is much appreciated. [link] [comments] |
Posted: 04 Jan 2018 11:07 AM PST This may be stupid, as I am just learning UWP and figured I'd try making a tool that uses CalendarDatePicker, however I cannot get it to display the date entered in the box. XAML
C++
When I run this code, I can select a date but what displays is the following:
Any help would be appreciated. [link] [comments] |
What should/could I use to make this? Posted: 04 Jan 2018 05:07 AM PST Solution provided in comments. Thanks for your help, r/AskProgramming! I'm trying to find all possible combinations of 4 items, by groups of 3, where there are never 3 of the same, and some never pair together. Why: My daughter has a rare disease and requires a very unique type of food via a blended diet. I need to be able to schedule her blends for family and nurses to prepare each day. Occasionally there is a change and I want to be able to come to a simple web app or spreadsheet (or something) and change one of the 4 items, or add a 5th item, and get a list of possible combinations that I can then use to schedule on my calendar. So I have items A, B, C, D, and I want all possible combinations of 3 of these, but there should never be two B's together, and I'd like to add E or change the combination amount to 4 and have a new list generated. I'm looking for advice on what language to use to create something like this. Or maybe this could be easily created in Google Sheets. I'm open to whatever. I'm not asking anyone here to jump in and make this for me, and this is not a job posting. Again, sorry if I'm in the wrong place, please point me in the right direction if I am. Thanks in advance. All help is appreciated! [link] [comments] |
Posted: 04 Jan 2018 10:40 AM PST Hello, I'm currently learning html/css, and have some basic knowledge about wordpress and was looking to get into web developing. Im wondering what i should learn and what i should do to land a job i can do from home. [link] [comments] |
Posted: 04 Jan 2018 10:16 AM PST I know, this isn't exactly programming, but I'm not sure where else to ask. These have 2 each: ddddddd Also, I found out that you can make even larger ones by pasting "in between" the characters: 1. Paste. 2. Press left arrow key to move the cursor (not visibly). 3. Paste. 4. Copy the new one to clipboard for testing These have 10: dddddd This has 1146 d's: d I can't make it to display different characters overlapping, but if I paste, go for example 5 steps backwards and write a h, then the h takes 5 more deletes to be deleted: dh If I then copy the h, it will be a 6x: h What the hell? I found this on a torrent folder name. For some reason lamedrop didn't want to convert a file. Apparently it won't convert files or files in folders with japanese characters but even after deleting them it didn't work. I narrowed it down to that one d. How does that kind of multi character even technically work? A glitch in the matrix? [link] [comments] |
Posted: 04 Jan 2018 06:26 AM PST Maybe I'm the only one that's experienced this, but I doubt it. ME: We've got some essential duplication between modules A and B, and the story is to introduce module C; we should extract some common functionality first from A and B and then have C take advantage of that. OTHER GUY: Nah, once ProjectedFeatureX is written, we'll be scrapping all those modules anyways. Just copy/paste/rename module A again. (Ten thousand years pass, and NewFeatureX keeps being delayed. Meanwhile, the pain of copy/pasted code only grows) Is there a pithy phrase to caution against this thinking, in the same way as YAGNI cautions against over-enginnering? The best I've come up with is NIMY (Never in a Million Years). [link] [comments] |
im trying to open programs automatically when something is open and close when ien it closes Posted: 04 Jan 2018 07:54 AM PST just like the title says I'm trying to for example close a program while a game is open but once the game is closed the program opens right back up automatically, any softwares capable of doing that? any idea? [link] [comments] |
How would I go about creating this application? (Webforms/PDF/docx) Posted: 04 Jan 2018 06:54 AM PST Hey! [link] [comments] |
Anyone knows Phonegap? Got a small issue Posted: 04 Jan 2018 04:34 AM PST Hello folks! I am making a phonegap app. Displaying my webapp like this. <iframe id="thing" src="https://www.liverpool.no/" frameborder="0" style="overflow:hidden;" height="1000vh" width="100%"></iframe> The site is mobile friendly, so it might work out great. Further on i want to add a navigation bar at the bottom. I tried to add them as ordinary html Lists items, but when i link those, they send me out of the phonegap "loop" or site. So they disapear. Any idea if this can be done in a easy way easy? my setup is basiclly: Anyone know anything about this? Or where i can ask for help? :) Edit: Made my butons like this: [link] [comments] |
CodeForces 4C - time limit exceeded. Posted: 04 Jan 2018 03:21 AM PST I have used Dictionary, Hashtable and Hashset for solving this problem! I couldn't fix the issue of time limit when it is trying to input 100,000 inputs. I have searched thoroughly and found that Hash and Dictionary are fastest. Not sure what is the problem exactly. The below one uses Dictionary. Taking input first into array and then trying todo the check in the below. solution! I have other solutions where I have done checks in the same loop when I read the input string. solution! Can somebody help me in catching the issue? [link] [comments] |
Want to build a "Skin Gambling Site" to see how they are put together etc. Posted: 04 Jan 2018 10:01 AM PST Need someone who can build me a site, and show me how they work exactly. Just really interested and trying to make a little money on the side. Message me. [link] [comments] |
In general how does the process of rendering a GUI differ from a game? Isn't a GUI just 2D graphics? Posted: 04 Jan 2018 12:02 AM PST From what I think I understand, the generation of UI in a windowed application is generally handled by the window manager. Correct me if I'm wrong. Does, at some point, the rendering of desktop UI boil down to the same process to the CPU/GPU as the animated graphics you see in games, or are both types of graphics fundamentally processed differently through and through? Sorry for the load of questions. edit: my title is poorly worded. I meant desktop GUI applications vs animated graphics for... lack of a better word. Not sure what the proper terminology would be. Edited the text to hopefully be more clear. [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