• Breaking News

    Friday, January 19, 2018

    Is B a compiled or interpreted language? Ask Programming

    Is B a compiled or interpreted language? Ask Programming


    Is B a compiled or interpreted language?

    Posted: 19 Jan 2018 05:30 PM PST

    I'm researching this for a presentation for school and I haven't been able to find a definite answer. Is B, or specifically, was B when it was developed by Thompson, compiled or interpreted?

    Wikipedia says he wrote a compiler, so that implies it's compiled, but it's Wikipedia. This video I watched about someone who worked at Bell Labs at the time says it's interpreted.

    Can anyone give me further clues?

    submitted by /u/RedScud
    [link] [comments]

    Are most computer programmers passionate about programming? If not: is there a divide between the passionate ones and the others? Is it growing?

    Posted: 19 Jan 2018 11:58 AM PST

    It used to be that computer programmers were nerds who fell in love with computing at an early age. They probably started to learn how to use computers, and/or how to write code, before they had a chance to do so in school. Maybe they volunteered code to big open-source projects, and/or to hobbyist projects of their own.

    But now, being a computer programmer is a guaranteed path to success, like "a doctor or a lawyer" used to be. I'm guessing that this causes people to enter the field in (or after) college who never coded for fun (and probably still don't), who aren't very familiar with its history, who don't wonder about (or try to look into) how various pieces of software work, who aren't interested in learning skills that are not professionally useful.

    Are most programmers today in the passionate camp or in the second camp?

    Has there been a shift over the years from mostly-passionate to increasingly-not?

    What impact does that have? For example, do companies now need stricter methods/guidelines for creating code, when previously they could just trust programmers to come up with something that worked and to test it properly?


    Background about me and why I'm asking, in case you're curious.

    I do materials research/testing and stress analysis for a large company in an industry that makes products that some people are very passionate about, but most people in my company are not. Kids out there have posters of our products in their bedrooms (and I was that kid) but most of my coworkers never thought much about these products until our employer offered them a job. So during work, something that I think of as "common sense" has to be spelled out to a coworker ("What does it mean to say that our product encounters a situation called [blah]?"), or I see coworkers doing certain checks only because some stupid process requires them to – because they have not heard of the tragedy that caused this process to require this check. In a way, the most amazing thing about the company where I work is that people who are almost entirely unfamiliar with the history and operation of our products can follow recipe-like manuals and processes and checklists… and be a part of the creation of a successful products, while personally having zero intuition other than about how things go in their narrow field. Only a few people (mostly at the top) have a general understanding of what every part of the product does and how it came to look and work the way it does today.

    So sometimes I think "I would be nice to work in a company where everyone is excited about the product, knows generally how it works, followed its history since they were kids… like people must at Google!". But I could be totally wrong, so I'm asking.


    Xpost in AskProgramming , AskProgrammers , cscareerquestions , and coding , because I'm not sure which is the most appropriate for this. Apologies to the mods if they need to remove one that is not in its most appropriate subreddit.

    submitted by /u/NX211
    [link] [comments]

    Looking for PDF of a Java textbook.

    Posted: 19 Jan 2018 07:14 PM PST

    Hello everyone.

    I have been notified by my college instructors that I need to get a textbook for class (Java: An Introduction to Problem Solving and Programming, 8/E) which is this one here:

    http://catalogue.pearsoned.ca/educator/product/Java-An-Introduction-to-Problem-Solving-and-Programming-8E/9780134462035.page

    It costs $200 CDN.

    My search so far has yielded nothing.

    As most students, I want to avoid paying this much money for a textbook as much as possible, but if I absolutely have no choice by the end of all this, then I will have to.

    If any of you happen to have access to a PDF version of this book, would you please share it here. I would be ever so grateful.

    Cheers

    submitted by /u/thesaferchoice
    [link] [comments]

    TypeError: must be str, not datetime.datetime <---Super simple Python type error, that I don't understand.

    Posted: 19 Jan 2018 03:13 PM PST

    My code is very simple:

    import datetime import time x = datetime.datetime.now() print (x) time.sleep(5) y = datetime.datetime.now() print (y) print ("Then: " + x +"\n Now: " + y) 

    output is:

    2018-01-19 16:08:14.948247 2018-01-19 16:08:19.953097 Traceback (most recent call last): File "dateTest.py", line 10, in <module> print ("Then: " + x +"\n Now: " + y) TypeError: must be str, not datetime.datetime 

    Obviously my understanding of what's happening behind the scenes here is lagging. Does datetime.datetime have a print method that's not getting invoked when I try to concatenate the strings in one line before printing?

    If not, why does it print (x) fine, but can't print it further down?

    Edit: After typing this out I realized I could test my theory by splitting up the print statements to print the strings and the datetimes separately. I did that and it worked. So that seems to support my theory that datetime has a print function that doesn't get invoked when I try to concatenate it before printing. I'll leave this here for future people and so that I can most likely eat some well-deserved mocking.

    submitted by /u/Siiimo
    [link] [comments]

    Can I exploit my i service provider?

    Posted: 19 Jan 2018 01:35 PM PST

    I didn't know where to ask this so I'm hoping this isn't too far off. I've got this plan with my mobile provider, 3Gb of mobile data plus free data for Facebook/messenger/Instagram. I'm running out of data, is there any way to redirect Internet through Facebook? Like you could access porn sites on your school pc through google translate five years ago? I have some experience with programming but i don't know anything about Internet protocols, thank you for any help :)

    submitted by /u/faquada
    [link] [comments]

    Win32 api/environment - It used to be possible to use shared components from other apps (eg MS Word) is that still true?

    Posted: 19 Jan 2018 12:28 PM PST

    Basic problem I am trying to solve:
    I'd like to use a robust text editor embedded into a pet project of mine, I did something like this decades ago but not sure even where to look now.

    Context:
    I have a file based wiki abstracted enough that I can swap out wholesale the presentation/view layer and I believe it would take minimal refactoring to work around a different event model (either directly changing code or writing some sort of proxy).

    What I've found so far:

    100% of my searches under keywords like "MS word api", "MS Word com", or similar themes have all directed to user level instructions and not developer resources. Coming up empty makes me wonder if Microsoft did away with exposing the components of one of their flagship applications or perhaps it has become so tightly glued together that isn't viable.

    Alternatives I am researching: http://www.scintilla.org/SciTE.html or alternatively QT's text editor but while I like pyqt and pyside, the c/c++ API and me are not friends.

    submitted by /u/zynix
    [link] [comments]

    How to read a text file into a multidimensional array in python?

    Posted: 19 Jan 2018 03:59 PM PST

    I want to write a program that can read a text file with 10x10 matrix. Then modify it. How can I do this without using any python functions?

    1 3 5 7 9 1 3 5 7 9

    2 4 6 8 2 4 6 8 2 4

    3 5 7 9 1 3 5 7 9 5

    4 6 8 2 4 6 8 2 4 6

    5 7 9 1 3 5 7 9 1 3

    6 8 2 4 6 8 2 4 6 8

    7 9 1 3 5 7 9 1 3 5

    8 2 4 6 8 2 4 6 8 2

    9 1 3 5 7 9 1 3 5 7

    0 2 4 6 8 2 4 6 8 2

    submitted by /u/metalloidica
    [link] [comments]

    Help choosing framework for first project

    Posted: 19 Jan 2018 03:52 PM PST

    Like the title says, I could use a point in the right direction when it comes this. I'm a novice coder with a basic understanding of programming, but I enjoy learning and doing. I've puttered around with django, RoR, and a few others but as soon as I start diving in, I run into roadblocks with how it performs compared to what I need it to do. Honestly at this point I'm not even sure I'm asking the right questions, so:

    The project: Think a stripped down no voice version of discord where users would use a phone/desktop/browser app to see what games their friends are playing. Users would (for now) manually enter what they're playing and it would propagate that to all other users in their respective app. That's the jist of it. I'm guessing it would need to be some sort of web based app where users would pull their respective information from.

    Is there a framework out there that suits this type of project that also has manageable GUI elements as well? Am I asking the right questions? Any feedback would be great!

    To be clear, I am not looking for an easy button. I really don't mind putting in the effort needed, I would just like to use the best tool for the job!

    submitted by /u/jags887
    [link] [comments]

    Unity tutorial is goofed up

    Posted: 19 Jan 2018 02:00 PM PST

    So I am working on a Unity tutorial course, and I'm stuck on a weird issue. I've already asked in a few places, but haven't got what I need yet. Anything helps, thanks!

    This details the question: https://teamtreehouse.com/community/space-to-start-and-game-over-text-dont-appear-as-well-as-weird-visual-glitch

    submitted by /u/TheButtMan123
    [link] [comments]

    Reading array from text file and printing from java

    Posted: 19 Jan 2018 01:58 PM PST

    I am trying to read a text file and convert it into an array in java. How would I do this. For example, I have a text file with the contents:

    I want to convert this into a 10x10 matrix.

    Here is my attempt but I kepe runnign into errors with <String type>

    import java.io.BufferedReader; import java.io.FileReader; public class ArrayList { public static void main(String[] args) { // TODO Auto-generated method stub BufferedReader in = new BufferedReader(new FileReader("C:xxtexts/1.txt")); String str=null; ArrayList<String> lines = new ArrayList<String>(); while((str = in.readLine()) != null){ lines.add(str); } String[] linesArray = lines.toArray(new String[lines.size()]); print string[]; } //including text file as part of code for reddit formatting purposes 1 3 5 7 9 1 3 5 7 9 2 4 6 8 2 4 6 8 2 4 3 5 7 9 1 3 5 7 9 5 4 6 8 2 4 6 8 2 4 6 5 7 9 1 3 5 7 9 1 3 6 8 2 4 6 8 2 4 6 8 7 9 1 3 5 7 9 1 3 5 8 2 4 6 8 2 4 6 8 2 9 1 3 5 7 9 1 3 5 7 0 2 4 6 8 2 4 6 8 2 } 
    submitted by /u/metalloidica
    [link] [comments]

    Using VBA to identify pattern changes?

    Posted: 19 Jan 2018 07:18 AM PST

    Hello, I work in a large cities water department. One main project the city is foused on is recording flow data from sewers. At times the pattern changes without a known reason (such as rainfall) ( e.g. https://imgur.com/7NDyQnc) given that there are some 230 flowmeters currently in operation would it be possible to code for recognizing some shifts in pattern using VBA. I've been trying to do figure out a way but so far I have been unable to. Any suggestions would help.

    Thanks

    submitted by /u/Ime117
    [link] [comments]

    Trouble scraping website with BeautifulSoup.

    Posted: 19 Jan 2018 12:59 PM PST

    Hello everybody. I am writing a python script to scrape the images of the day from Bing. My understanding of web technologies is pretty limited, as I develop mostly desktop applications.

    I found this answer on StackExchange explaining how to get the image relevant information through AJAX calls, but when I try and parse the content in that web address it is as if there is nothing there.

    I am using the JSON method and trying to pull the <pre> tag out, which contains all the relevant information. If somebody could help me out or at least point me in the right direction on where to research, I would greatly appreciate it.

    submitted by /u/roflsausage
    [link] [comments]

    Good book/guide/documentation for the differences in functionality between unix & Windows linkers/compilers/binary formats/dynamic librarys?

    Posted: 19 Jan 2018 12:53 PM PST

    I work on systems/toolchains code for Linux & Darwin but occasionally have Windows issues come up and do not know how to diagnose any of the issues caused by differences in Windows implementations. Does anybody know of a good reference to learn from?

    submitted by /u/lanzaio
    [link] [comments]

    Softbridge Basic (SBL) Query to Oracle

    Posted: 19 Jan 2018 12:41 PM PST

    Hey guys! Thanks in advance for the help. SA here, not a dev :)

    Using SBL to query Oracle and getting some odd errors. I'm betting money the issue is with concatenating the WHERE clause and quotes around its parameter. Below are two lines we've tried and the errors we get:

    SQL = "SELECT FIELD1, FIELD2, FIELD3 FROM TABLE WHERE COLUMN = " & KfxVAL_ "SQLExecQuery Error [Microsoft][ODBC driver for Oracle][Oracle]ORA-00904: "VAL": invalid identifier #S0022" 

    and

    SQL = "SELECT FIELD1, FIELD2, FIELD3 FROM TABLE WHERE COLUMN = '" & KfxVAL_ &"'" "SQLExecQuery Error [Microsoft][ODBC driver for Oracle][Oracle]ORA-00911: invalid character #37000" 
    submitted by /u/Xechorizo
    [link] [comments]

    Digitize and create a searchable database for a 60 year old ledger.

    Posted: 19 Jan 2018 11:41 AM PST

    So the camp I run has officially filled our "Big Book", a book in which every camper has signed their name since the beginning in 1954. I have a dream to be able to digitize the book and have people be able to search through it to find names of people they know, i.e. parents, grandparents, former boy/girlfriends, coworkers, etc. Problem is I have no idea how it's possible.

    The digitizing will be difficult, but not impossible. I just need to find a library or archive of some sort with a book scanner.

    It's the searchable database of names is where I'm really struggling to figure out something. So I'm hoping this is the right place to ask.

    After I have all the names in a spreadsheet of sorts, what's next? To be accessible on the internet, does it have to be on our webhost, is there an online program that does things like this, what kind of database am I looking for, is it even a database that I'm looking for?

    I just don't know! So any help and guidance is appreciated! Thank you!

    https://imgur.com/a/ReaHQ

    submitted by /u/appgrad22
    [link] [comments]

    Any online composer tools for designing a code base?

    Posted: 19 Jan 2018 07:55 AM PST

    I am looking for an all in one tool that can help me architecture a new application's code design. I have tried Mural, but I don't really like it. Any other recommendations?

    submitted by /u/JoeOfTex
    [link] [comments]

    Removing duplicate items in array.

    Posted: 19 Jan 2018 11:01 AM PST

    I'm trying to write a program to remove duplicate items in an array. For some reason, this gives me an infinite loop:

    def removeDuplicates(nums): c = len(nums)-1 i= 0 while i <=c: print(i) if nums[i] == nums [i+1]: del nums[i+1] print(nums) c = len(nums)-1 i = i + 1 print(removeDuplicates([1,1,2,3,3,4])) 

    I haven't been able to figure out where I can improve here. Could you help me with this?

    submitted by /u/metalloidica
    [link] [comments]

    Using codeanywhere with institution ssh?

    Posted: 19 Jan 2018 09:27 AM PST

    Hello everyone, please let me know if this is the wrong place to ask this question and I will delete it asap.

    I have been taking a bunch of programming classes (you right here have helped me in the past) and I noticed that a lot of people were using codeanywhere.

    The interface looked a little bit nicer than the shell that we usually used (and it actually allows the usage of the mouse to select and move stuff around) but I can't for the life of me understand how to connect that thing to our shell.

    We are supposed to click on the container and put our hostname but how do I put my username and password on it?

    If you know how to do it or have a resource that demonstrates how this is done I would be very thankful.

    The description on their FAQ did not help me (keeps mentioning ssh key gen and cabox and I have no idea what those are).

    Again thank you everyone.

    submitted by /u/Lechateau
    [link] [comments]

    Into to programming

    Posted: 19 Jan 2018 05:18 AM PST

    Hey guys! I have used unityscript slightly but I want to learn how to program properly, not necessarily anything specific. Not sure if the right place to ask but could I have some tips on how to start out? I see different languages and formats and it's all going over my head, so I need a basis to start with. Any help would be appreciated.

    submitted by /u/Rubalf
    [link] [comments]

    Questions After First Interview

    Posted: 19 Jan 2018 09:03 AM PST

    I have a couple of questions for the community because I'm getting close to graduating with a Software Development degree, and I'm starting to apply for jobs.

    First, I went to an open house job fair at a company, and had an interview with a few people who seemed to think the only path to being a developer is to start as a network tech or help desk person, and then move to a developer position from within (I have networking experience). My first instinct is that they were just trying to fill positions that they were hurting for. Do companies hire Junior Developers straight out of college?

    I later talked to a recruiter about a Junior Developer position, and she said it would be difficult for me because the position requires two years of experience. Are entry level programmers not considered junior developers? What were your responsibilities as a junior developer?

    Any other advice for brand new software developers? Thanks!

    submitted by /u/datamasked
    [link] [comments]

    Learning for a beginner-intermediate programmer?

    Posted: 19 Jan 2018 08:54 AM PST

    Ok, so I know a bit of Python 3 (mostly procedural stuff), I can write a basic script with conditionals, functions, some scientific computing (numpy, scipy, pandas), that kind of level.

    When I get to OOP, I'm toast. I kinda see a class as a program in and of itself, with its own functions (methods), and multiple classes as different programs being able to call each other. I know it sounds ridiculous, but that's my basic take on OOP.

    What I want is:

    1. To properly understand OOP in Python 3.
    2. To learn basic algorithms and data structures and be able to implement them in Python, whenever I need them.

    Any idea what book / tutorial would be good for these aims?

    submitted by /u/hyperqube12
    [link] [comments]

    What's the difference between mutex and recursive_mutex?

    Posted: 19 Jan 2018 12:58 AM PST

    From what I understand, the recursive mutex will be unlocked as many times as it was locked. What does that even mean. If a thread wants to enter a critical section, it will just acquire the lock once or it simply get stuck in a spinlock.

    submitted by /u/zimmer550king
    [link] [comments]

    Python - help with importing non built-in modules

    Posted: 18 Jan 2018 11:29 PM PST

    Hi. I am very new to Programming. I have dabbled in some C with Arduino, and have worked a fair bit with HPVee.

    playing with Python, now and finding it a better place to start. My question is regarding importing modules to a program. Do I need to have some scripts, relevant to the modules I would Like to import saved in a directory on my local machine?

    Like Libraries in C?

    For instances "os - module" isn't built into the Python 3.6 environment.

    submitted by /u/taoist_water
    [link] [comments]

    Alternatives to LINQ to SQL and DBML for .NET?

    Posted: 19 Jan 2018 03:42 AM PST

    I'm looking into ORM frameworks as we currently use LINQ queries and DBML files for data access. I'm trying to figure out what some of the newer frameworks are for when we update our libraries/projects and am looking for advice as I've not kept up with that side of things.

    The main one I know of is Entity Framework (6), but I was wondering if there was anything newer or more adopted by others, or is that still the go to?

    submitted by /u/Kyrela
    [link] [comments]

    No comments:

    Post a Comment