What's new

Search results for query: *

  1. N

    Changing a programs language?

    You would have to translate it yourself. However, I would be careful of the quality of code as most blogs and support are written in English. What you trying to do and what language is it written in.
  2. N

    Web Favourite HTML editing software?

    visual code perfect for all round development including c#
  3. N

    Web Round Tables

    Why are you using tables? I barely use tables these days as divs provide a better solution
  4. N

    Web Nameservers & DNS

    I think you are actually asking two questions here: What is DNS How does SSL work DNS stands for Domain Name System. It allows you to route to a server/servers without knowing the IP. Where as encryption encrypts the data flow to and from the server to the user. In short if the I changes then...
  5. N

    C/C++ Currently Majoring in Computer Science (Need Advice)

    Spec out classes using UML and unit test and it will. You can already make simole programs with algorithm. You out AI with something like Neo4j and you have the knowledge of the language documentation in the brain along with public Github. You have everything you need. No drag and drop. Thanks...
  6. N

    C/C++ Currently Majoring in Computer Science (Need Advice)

    I believe it will be automated saying I've worked with AI and that you can already make a self programming application for working out maths. All you need is good unit tests to test against automated code and UML to say what the class does. This will be ample enough to make it code itself. It's...
  7. N

    Twain's IP Sniffer v1.4

    You can't. You would have to be connected to the PS4.
  8. N

    C/C++ Currently Majoring in Computer Science (Need Advice)

    Actually I believe your wrong. In around 20 years time coders won't be needed
  9. N

    Twain's IP Sniffer v1.4

    Then your not a professional coder if you don't get what that means. So I go back to the OP. Why are you moaning about someone learning. You obvs can't make anything yourself
  10. N

    Twain's IP Sniffer v1.4

    a bit harsh. i love to see your coding style. unlike many here i write my own ****
  11. N

    [NodeJs] UDP Console chat

    UDP Console Chat nodeJS So after developing for years in C# I decided with a friend we are going to work on a fitech web application. So as I started working on the infrastructure I was relying heavily on Azure bus Service and c# for the backend. However, if you know me I hate relying on...
  12. N

    .NET Need ASP.NET Gridview Help

    Sorry I meant for the grid
  13. N

    .NET Need ASP.NET Gridview Help

    Hi, Are you wanting it to change the database? Also what control you using. I tend to use c# for back end and use normal HTML CSS and JavaScript for front-end. But I'll be more than happy to write you an example.
  14. N

    Web  HTML to in memory representation

    Hi SO i'm in the process of of creating a strip back run time virtual dom which allows you to only monitor whats need. As part of the first times I needed to clone the dom into an in memory object. To do this I imported my unflatteren located here. Next step was to read the dom node and put it...
  15. N

    Web  Unflatten JS

    So I've been working on an in memory dom and also a flatten menu structure which required structuring. So i wrote this independent function that doesn't require any third party libraries such as loaddash or underscore. function unflatten(arr, options= {}) { options.id = options.id || 'id'...
  16. N

    Web simple HTML templates using JavaScript

    I forgot to add you are also capable of adding two way binding if you use a template system like this
  17. N

    Web simple HTML templates using JavaScript

    I know you was. I was just pointing out that it's not what this was attended for. I only posted this to help others learn how to code rather than learning a framework
  18. N

    Web simple HTML templates using JavaScript

    I know how template string works. I use it daily in my job. The post is about recreating the way the view is made in frameworks. You write it in HTML and JavaScript will update
  19. N

    Web simple HTML templates using JavaScript

    It's a good question but unfortunately, it doesn't work. First off ignoring the name "template" it was never designed for editing HTML code. It was brought it for the same reason C# brought in the functionality to a .net compiler. converting strings use to be painful with "something " + b.a...
  20. N

    Web  Creating custom components in JavaScript (plus Lazy loading)

    Custom Elements (Components) Getting started When you are after creating a component you have two options to chooses encapsulation or not. Encapsulation ensures any CSS and JavaScript defined in the element will not affect any external selectors. If you decided against this then you have a...
Top Bottom
Login
Register