Need help in using a huge template Ask Programming |
- Need help in using a huge template
- Is it possible to program from your iPhone?
- GO vs RUST?
- Do you ever suffer from code writer's block?
- Do you know any good video live streaming API?
- LINQ, lambdas, and Java
- Programming languages with TeX-like macros?
- When applications have keywords that aren't allowed, like cuss words, does this mean that somewhere in the source code there's an enum or array that contains "fuck"?
- How can I fix the conflicts in this YACC grammar?
- Why does my method say it must return a type string and gives me an error even though my method does return a type string
- What are the different ways to flaunt your coding skills?
- Web design vs Programming?
- [C++] How do you convert a compile-time if statement into two separate compiled functions?
- How can i do this better ?
- How make open all outbound links in new "continue destination" page
- How to come up with ideas?
- Why is my method returning false even though the conditions are true
- Function from type Class
- How do I Turn On/Off a TP Link Plug with Children [Javascript]?
- Why do I get this unexpected output, regarding Threads and intrinsic locks [Java]?
- How difficult is it to learn Qt for a modestly experienced programmer?
Need help in using a huge template Posted: 10 Mar 2019 08:53 PM PDT I discovered this admin template called, Stisla (https://getstisla.com/) I haven't tried something so huge like this before, after I downloaded the depencies, it grew in size up to 200+mb, just for a template :3 I am also planning to use this with symfony ang angularjs, though I am having trouble as how I would set the directories, where to create or put new pages, and mainly, HOW TO CUSTOMIZE the pages together with symfony and angularjs. It contains a lot of javascripts and css, looking at it makes me frustrated. It would truly help if someone could provide me a workflow? or what steps should I take. [link] [comments] |
Is it possible to program from your iPhone? Posted: 10 Mar 2019 07:26 PM PDT I met someone this past summer who had some sort of command line interface on his Android. I'm not really sure what capabilities he had, but it looked like he could enter in bash commands and explore file directories and whatnot. Is this (or will this ever be) possible on iPhones? If not, is there any way I could work on larger projects (for college assignments mainly) from my iPhone? Thanks! ~ Shoot for the Stars ~ [link] [comments] |
Posted: 10 Mar 2019 02:32 PM PDT I am thinking to learn a new low level programming language but i am between learning Rust and Go, any help/suggestion would be great. Thanks in advance. And btw just for general purpose, and nothing special in mind. [link] [comments] |
Do you ever suffer from code writer's block? Posted: 10 Mar 2019 05:37 AM PDT I've noticed a pattern in my own work where i suffer from a kind of code writer's block. When i googled this, it was hard to come up with a conclusive definition, so what I'm talking about here is:
I'm curious about whether others have experienced the same thing, and what you've tried to do to alleviate it. [link] [comments] |
Do you know any good video live streaming API? Posted: 10 Mar 2019 11:22 AM PDT I need to make a website supporting multiple live streams simultaneously. Basically, I need users to be able to start a live from my website, and to watch those lives from the same website.I'm looking for an API that would allow me to do so. I've looked the following:- livestream.com: Seems fine, but when looking through the documentation, there is nothing about starting a livestream - mux.com: The pricing is by viewer, which is going to cost a lot at the end of the month - api.video: They are acting like they are free while they're not (saying "free" everywhere, hiding their Pricing tab at the end of a long page) - this isn't a good sign. And they cost way too much. I'm a junior developer, and I'm not sure what's needed for such a website sadly. If anyone can help with information or ideas about other APIs I could use, I would appreciate that a lot. [link] [comments] |
Posted: 10 Mar 2019 02:38 PM PDT Background: I'm I'm one of the weird ones who has an education in a discipline not in CS but have been working in software engineer for a little while. I'm curious if LINQ is just C# fancy functionality on top of your basic Lambda. In Python is was map lambda, I'm not sure what it is Java but if I had a need to know it I'm sure it's a variation of map reduce. I'm just curious why people use LINQ with anonymous functions for everything. Got a need to act on a collection, use LINQ. You can use anonymous functions without LINQ in C# but I don't know if people are abusing what was intended to good way to do database stuff almost everything. [link] [comments] |
Programming languages with TeX-like macros? Posted: 10 Mar 2019 06:06 PM PDT Are there any programming languages with TeX-like macros? What I mean by this is a language where one could define macros to redefine keywords, redefined what for loops look like, and basically redefine the syntax of the entire language (of course, like TeX, the original syntax would remain valid; I do not mean this `redefine'). There are, of course, languages with macro capability; what I'm asking about is a language where you can literally redefine the entire look of it. Note: I'm not saying such a design decision would be good, I'm just wondering whether something like this exists out there. [link] [comments] |
Posted: 10 Mar 2019 08:32 AM PDT |
How can I fix the conflicts in this YACC grammar? Posted: 10 Mar 2019 05:00 PM PDT |
Posted: 10 Mar 2019 09:10 AM PDT public static String grade(){ return d; i dont understand what is wrong with this at all it it just keeps saying this method must return a result of type string even though it does [link] [comments] |
What are the different ways to flaunt your coding skills? Posted: 10 Mar 2019 08:26 PM PDT |
Posted: 10 Mar 2019 01:54 PM PDT Hello. I am considering a major career change (my primary profession is very far removed from anything computer) mainly for health reasons. I have experience with web design and major CMSes but I fear it isn't profitable, especially as a freelance designer. Would investing in learning programming and then delving into it as a beginner be a wise choice? Are either a viable source of income these days (as freelance)? [link] [comments] |
[C++] How do you convert a compile-time if statement into two separate compiled functions? Posted: 10 Mar 2019 01:43 PM PDT I have two functions, which are identical except for one constant array value. A ternary statement does the job but conceptually nothing is 'conditional' on anything; they're two different functions! This doesn't extend well to when there are more than two variants of a function because Is there some clever trick with the newfangled Edit: is C++20's constinit what I'm looking for? [link] [comments] |
Posted: 10 Mar 2019 10:22 AM PDT Hello guys! So I'm working on a Angular project for myself to test out stuff. And i have this database with products taht i display through array using a service that i subscribe to. The service function basically sends a get request to an API(.Net Core based) to fetch the products. So its all dandy and good with displaying. The problem is I'm having hard time filtering the information using checkboxes. So i went around the internet looking for solutions trying to figure out what i can do and testing and i came up with this very(stupid) i would say on my end idea that somewhat works, but i'm not sure how to make it better or to make it dynamic, so i don't have to run all this functions and checkers. I was told only 1 filter would be enough, but i guess i didn't understand how to use it properly, so here is my code : Product-list.html Product-list.component.ts I honestly think this is a very very bad way to do this. But i spent fair share of hours today, trying to figure a more smart way with checkboxes. On top of that, i am unable to use both checkboxes, it either shows the value of one or the other. I really found a lot of text input ways that i know how they work etc, but i don't know why checkboxes are being so tough on me ;/ Thanks in advance ! [link] [comments] |
How make open all outbound links in new "continue destination" page Posted: 10 Mar 2019 09:55 AM PDT Hi i have a website and have only basic programming skills. I want to have all outbound links on my site to first go through a page showing people that they are leaving my site and where they have the option to continue or go back. However, like i said, i want it to only do that on outbound links, not on my own domain links like menu navigation. Is this possible? Thank you in advance. [link] [comments] |
Posted: 10 Mar 2019 01:29 PM PDT |
Why is my method returning false even though the conditions are true Posted: 10 Mar 2019 09:42 AM PDT public class Lab3Exercises { I checked and the reverseWord is the exact same as myWord yet it returns false everytime. I've tried hannah, racecar, etc. they all return false [link] [comments] |
Posted: 10 Mar 2019 07:17 AM PDT I have a class A, C and a function B. The function is written in class C, it looks like this: private A B() { } What does it mean when your function's type is a Class? [link] [comments] |
How do I Turn On/Off a TP Link Plug with Children [Javascript]? Posted: 10 Mar 2019 07:01 AM PDT I'm just starting to learn Javascript and I'm having trouble sending ON / OFF commands to individual plugs on my TP Link HS300 smart power strip. The tplink-smarthome-api documentation says this model will have a children property and if the plug is instantiated with a childId it will control the outlet associated with that childId. How do I send an on off command to it with the childid? API Documentation - https://www.npmjs.com/package/tplink-smarthome-api This is my code to toggle the device on without specifying children. Thanks in advance. [link] [comments] |
Why do I get this unexpected output, regarding Threads and intrinsic locks [Java]? Posted: 10 Mar 2019 12:56 AM PST Hey guys, I am currently going through Cave of Programming multithreading course. In that course, in one lesson there were two methods, both had synchronized blocks inside of them (and separate objects for locks). Tutor said that if two threads call those two methods at a roughly same time (both Threads call both methods), one would be able to run first method, the other one wouldn't be able to call that method (because it didn't obtain the lock), but it would be able to call the second method (so you get the effect of simultaneous execution of methods). However, when I ran the program, and added some print statements I don't get the expected output. Code:https://pastebin.com/fLrjfS7S I would expect to get: Current Stage:s1, Current Thread:Thread 0 followed by Current Stage:s2, Current Thread:Thread 1, since those two methods are ran by different threads in a parallel fashion. What I get is: Current Stage:s1, Current Thread:Thread 0 followed by Current Stage:s1, Current Thread:Thread 1 , as if Thread 1 is waiting for Thread 0? There are two locks, so basically Thread 1 should see that lock1 reserved for stageOne() is already taken (by Thread 0), but lock2 isn't for stageTwo(), so shouldn't it just go execute stageTwo()? I do get reduced time by 2, compared to just regular synchronize keyword added to the method (instead of sync block), because in that scenario Thread 1 has to wait for Thread 0 to free lock (since there is just one), so in that case methods aren't ran in parallel fashion. So I do get the desired result (of parallel execution, which is confirmed by the time it takes everything to finish), but the printing results don't reflect it. What is happening? [link] [comments] |
How difficult is it to learn Qt for a modestly experienced programmer? Posted: 09 Mar 2019 11:37 PM PST I am looking to make a desktop application with a team of 3 other people for a competition. We have moderate experience with C++ programming but are completely new to Qt. Is it difficult to learn? How does it compare in difficulty to JavaFX assuming we have equal skill level in C++ and Java? [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