Should I be making my app in both Xcode and Android Studio, or some Universal platform like Xamarin Ask Programming |
- Should I be making my app in both Xcode and Android Studio, or some Universal platform like Xamarin
- Need help on text processing with bash script
- If you had to build Pokemon Red (the original to keep things simple) without using OOP, how would you go about it?
- Programming learning! Textbooks vs practical problems?
- Is it really possible to program TRUE randomness?
- How do i go about learning to write scripts for botting?
- Swift basics: Hello World with buttons and unresolved identifier?
- Hello, how would I create software for real use of the control f button?
- What are your Pega PRPC experiences from a Developer's Perspective?
- Recursively reversing a string in javascript
- [Relational Algebra] string != number error...
- I think that writing a status bar (like xmobar or i3bar or polybar) would be a fun project. What resources would be helpful in starting this project?
- [Databases] Functional dependencies: I don't see how any of these are transitive dependencies...
- Communication between servers
- When is it necessary to use the constructor in object-oriented programming?
- Javascript - Looping over records returned in a JSON array and performing data operations
- Data Visualization Dashboard
- When to use generic method vs an interface argument
- Is there a dedicated Browser for Development?
- Looking for resources to edit music notation efficiently
- Is your company measuring your coding productivity via automated systems?
- Is my use of Date() object correct?
- R Studio: failing to load package “maps”
- Software licensing question; no distribution, modifications allowed, but have to be given back to the copyright holder
- What's your choice for a Javascript tree grid?
Should I be making my app in both Xcode and Android Studio, or some Universal platform like Xamarin Posted: 27 Feb 2020 04:59 PM PST At my company I'm making a mobile app, currently I'm using Unity to make it since our connecting project is in Unity, and that's the only think I know how to use that can build to mobile. I've tried using Visual studio's Xamarin, but had a difficult time. I'm learning Xcode, because I have to use that to submit the app to the iOS store. I also just wanted to learn more how it works because I ran into some issues with our most recent push that would have been simple to fix if I knew the fundamentals of how XCode/iOS development works. I also want to switch away from Unity since the app I'm making isn't a game, and the things I am trying to do are much easier to accomplish in other languages (swift, android studio java) compared to unity. Is it common practice for companies to make separate projects (xcode and android studio) and work on them separately or use something universal, and if they do work on them separately is it one developer making both, or a dedicated iOS developer and a dedicated Android Developer [link] [comments] |
Need help on text processing with bash script Posted: 27 Feb 2020 09:18 AM PST Hello people,I'm a bit of a total beginner when it comes to shell scripting so pardon me if I'm asking very simple thing.So, for a course of mine I need to write a shell script to get some informations from a file named log.txt the file contain an e-mail head and is presented like this What I need to do is to write a script which will extract relevant data from the file such as : expediter, destination, number of server crossed by the e-mail and the list of said servers with the time it was received by them. It it supposed to looks like this : The script I started to write looks like this Thanks in advise, sorry if I misused some word, I'm not a native speaker. EDIT : Corrected code & log layout, thanks [link] [comments] |
Posted: 27 Feb 2020 10:02 PM PST As the title says. I've always grown up on OOP, mostly from playing games - it seemed the most logical and I thought all games were made in OOP. But someone said to me the other day that pokemon was NOT made in oop and I was flabbergasted, how in the world would you build a game like that without OOP? [link] [comments] |
Programming learning! Textbooks vs practical problems? Posted: 27 Feb 2020 09:14 PM PST I saw books at teachyouselfcs.com I found it very hard to understand where things are going with outdated language(lisp) and boring topics without going about practical problems. Like sorting data. Yeah its cool but how do you use it in real world i know big business have it but still sound boring and not much important. Why so much obessesion with algorithims&da when so much practical real appearance stuff you can do. Like video game, website devp etc. I know algorithims are important but they seem boring tools for doing boring business work. Unless there are algorithims which are fun ? How should i learn networking and programming what books or just videos?i am a high school graduate, know basic java, python,pygame, linux commands [link] [comments] |
Is it really possible to program TRUE randomness? Posted: 27 Feb 2020 07:50 PM PST Are things that are programed to be random really random? Since they inevitably follow some sort of algorithm can we truelly say that it is possible to program randomness? Since there is always a code behind every random output that we create, I'm thinking we can only create unpredictability but never REAL randomness. Am I right? Or is there a way we can create true randomness? [link] [comments] |
How do i go about learning to write scripts for botting? Posted: 27 Feb 2020 03:27 PM PST As the title says i want to learn how to bot using scripts. Im not even sure if using scrips is the right method or not. Any help would be appreciated. If you could point me in some direction and maybe resources? Thank you so much!! [link] [comments] |
Swift basics: Hello World with buttons and unresolved identifier? Posted: 27 Feb 2020 07:10 PM PST Hi I'm learning Swift for the first time and am trying to follow this tutorial but can't seem to get exercise 2. In the code below I'm trying to initialize meaning to the corresponding value in the emoji dictionary I made but I get an "Use of unresolved identifier 'meaning'" error under the alertController initialization. How would I do this with the skeleton code provided in the article I linked? // // ViewController.swift // HelloWorld2 // // Created by on 2/27/20. // Copyright © 2020 All rights reserved. // import UIKit class ViewController: UIViewController { } [link] [comments] |
Hello, how would I create software for real use of the control f button? Posted: 27 Feb 2020 07:04 PM PST |
What are your Pega PRPC experiences from a Developer's Perspective? Posted: 27 Feb 2020 06:42 PM PST Background: I like my company and it's culture, but in Mid-2019 my direct management changed and i can no longer stand to remain under them. While looking at internal postings. Found a promising one and talked to the associated manager. They are having difficulty filling it as they get senior-level applicants, but they want a mid-level. I then found out the position would primarily focus on developing/maintaining applications on the PEGA platform, and could not promise work on anything outside of that. They don't expect experience with PEGA, and will train the individual hired. They just require some experience in software development and OOP concepts. I didn't really know much about Pega other than having heard the term occasionally in the office, and knew it was a platform, but assumed it was just the name of an internal application team or similar. After work today i then went and did a bit of searching and so far it seems questionable how much 'Software Development' would be involved. from what i've skimmed thus far, it sounds like it the majority of the work would be manipulating things inside the GUI of a platform to configure business rules and such, and very little 'Programming' (i.e. writing literal code). My personal history is that i've been in the official role as a software developer for about a year, having finally worked my way here after being a sysadmin for many years who did a great deal of scripting and automating. So i'm seeking to understand a bit more what a typical developer position is like when working on the PEGA Platform. Any information is appreciated. Thank you in advance. [link] [comments] |
Recursively reversing a string in javascript Posted: 27 Feb 2020 02:44 AM PST I don't understand why my code doesn't work, it only returns an empty string. Any help would be greatly appreciated! :-) [link] [comments] |
[Relational Algebra] string != number error... Posted: 27 Feb 2020 05:45 PM PST I have the following query to make:
I have the following error: Can anyone see what's going on? I'm unsure why there's even an error in the first place. [link] [comments] |
Posted: 27 Feb 2020 12:43 PM PST |
[Databases] Functional dependencies: I don't see how any of these are transitive dependencies... Posted: 27 Feb 2020 04:15 PM PST For 1, 2, 3, these dependencies are directly dependent and you cannot take a longer route to get from LHS to RHS. So none of these are transitive. [link] [comments] |
Posted: 27 Feb 2020 03:55 PM PST I have two servers with scripts and I need to send requests from both servers to get files and some variables but I'm not sure how to do it. [link] [comments] |
When is it necessary to use the constructor in object-oriented programming? Posted: 27 Feb 2020 01:53 PM PST Hi, Sometimes I look in object language I have come across several times that the constructor will not be in a class but you still managed to access it. How could one invoke it? [link] [comments] |
Javascript - Looping over records returned in a JSON array and performing data operations Posted: 27 Feb 2020 08:59 AM PST The trouble I am having in my code is, instead of wanting to output the console.log(counter) every time I increment it, I want to take the final value of that counter and store it in a variable so I can use that variable in Apexcharts for visualisation and I am stuck. [link] [comments] |
Posted: 27 Feb 2020 12:42 PM PST I am looking at visualizing live data streaming from a microcontroller. The way that I am currently thinking about implementing this is by running a few python scripts in parallel (1 for data IO, 1 or more for visualizations). I have my data IO scripts working in the way that I want (no bottleneck) and asynchronous data flow but I am struggling with the visualization aspects. The way that I have tested so far is that I have been using Dash (from plotly) and have been running into issues with the speed that the graphs are updating. I have data streaming in at 2kHz and the graph updating at around 10Hz on the website. This results in a datastream that seems "chunky" when in reality it's just because there is a ton of data that is coming in between frames. I am wanting to have data visualized at around 30Hz and up to fix that. So my question to reddit is: What frameworks/applications/packages are typically used for live data streaming? The system that I want this to run on is a macbook pro or a microsoft surface (needs to be platform independent) with interfaces to python or c++. [link] [comments] |
When to use generic method vs an interface argument Posted: 27 Feb 2020 12:31 PM PST Quick question. Note I'm in C# but I'm sure this applies to other languages with same features. What is the preferred method or when would you use one over the other for the following cases. { // Do Stuff } VS To me they feel very similar in this context all though one is less verbose and probably easier to read IMO. [link] [comments] |
Is there a dedicated Browser for Development? Posted: 27 Feb 2020 08:07 AM PST Hi, i've been doing alot of web development recently and as a student I generally program on my laptop, meaning that im pressed for space between an IDE, any resources i'm referencing, and my browser output. That being said I never really liked the dev tools for chrome/fire fox. having the window shrink so I can view a console has led to some problems in the past and I just imagine there's a browser out there with dev tools built in so I don't have to click around to view the JS Console, Elements and Network. I don't love that I have to view them in a small window, in addition to shrinking my existing output window. Has anyone come across these problems and found a better solution than just dealing with it? [link] [comments] |
Looking for resources to edit music notation efficiently Posted: 26 Feb 2020 11:21 PM PST Hello, I'm starting to work on my bachelor thesis and the theme I chose was AI music generation. I'll probably try to teach a neural network to write some simple tunes by feeding it some sample music using Java. Are there any good libraries or tools which could be used to convert music files (I guess MIDI) into text, so that a learning algorithm could manipulate with them easily? [link] [comments] |
Is your company measuring your coding productivity via automated systems? Posted: 27 Feb 2020 10:40 AM PST So I read this interesting automation article. on the Verge., about automation systems and how they're being deployed and they mentioned tracking programmer productivity via clicks and scrolls and Git commits ..Does anyone have experience with that ? This is the first I heard of it for software development... the specific software mentioned in the article. "WorkSmart..The software tracked his keystrokes, mouse clicks, and the applications he was running, all to rate his productivity. He was also required to give the program access to his webcam. Every 10 minutes, the program would take three photos at random to ensure he was at his desk. If Rony wasn't there when WorkSmart took a photo, or if it determined his work fell below a certain threshold of productivity, he wouldn't get paid for that 10-minute interval. " [link] [comments] |
Is my use of Date() object correct? Posted: 27 Feb 2020 10:32 AM PST Hello! I have had problems with Date() for some time because it gave me greenwitch time always, so I made a script that shows the output of almost every Date() method in hopes to figure something out: https://www.w3schools.com/code/tryit.asp?filename=GCBINXJWTU5M But I didn't. Until just now. It suddenly occurred to me that my highly customized privacy-freak browser might have something to do with it. And lo and behold, my other browser outputs the correct time just beautifully, without any need of conversion. So, since you said that I should store the unix time, I just want to double check whether this is correct: So yea:
Tnx! [link] [comments] |
R Studio: failing to load package “maps” Posted: 27 Feb 2020 10:13 AM PST Hey all, just made a post on StackOverflow, but figured I would post it here anyway. I am trying to install a packaged called "maps" but for some reason it keeps failing. I can install other packages just fine, and a reinstall of R Studio did not help. You can view the code and output here: https://stackoverflow.com/questions/60438831/compilation-failed-for-package-maps I would really love any help you can give on the matter, as I need this package for my homework due soon. Thanks! [link] [comments] |
Posted: 27 Feb 2020 03:13 AM PST Hey guys, I'm currently developing some software. I might soon be hired for exactly this software in a company. I will continue to work on the software while at the company and want to retain all the progress done at the company.
This way any modifications I or anyone else does within the company to my software have to be given back to me (as an instance outside of the company). I've been searching quite a bit for a license like this, but couldn't find any. Thanks for the help! [link] [comments] |
What's your choice for a Javascript tree grid? Posted: 27 Feb 2020 09:01 AM PST So far I've played with DataTables with an extension and jQWidgets. [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