Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
K

Kimberly Weldon

@Kimberly Weldon
About
Posts
11
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Should I add something to the website? Need your advice!
    K Kimberly Weldon

    But I really need some advice and money of course :laugh: So please take it serious :laugh:

    The Lounge

  • Should I add something to the website? Need your advice!
    K Kimberly Weldon

    lol :laugh:

    The Lounge

  • Should I add something to the website? Need your advice!
    K Kimberly Weldon

    Oh yeah..that's what I'm talking about..

    The Lounge

  • Should I add something to the website? Need your advice!
    K Kimberly Weldon

    Yeah, not the best name for the website =)

    The Lounge

  • Should I add something to the website? Need your advice!
    K Kimberly Weldon

    What do you wanted to say with this message? I don't get it..

    The Lounge

  • Should I add something to the website? Need your advice!
    K Kimberly Weldon

    Hey folks!=) So basically, I am working for somewhat like 5-6 months, creating websites for small businesses mainly. Mostly, I use WordPress and HTML5, cause I found them "easy-breazy" in terms of building sites and web pages. The other day,some guys (not the biggest company apparently) have contacted me via e-mail, 'cause I posted my profile at the UpWork website. Anyways, they asked me if I can do something with their website, as it apparently needs some fixes, maybe even rebuilding, I don't know. As far as I understood this website works with customers who need some sort of homeworks to be done(?) This is my first time dealing with such a website, so I am asking you guys to briefly look at the website and maybe give me some ideas, because I haven't the foggiest idea :(( Any advice would be appreciated! Please help me!=) The website itself: Do My Programming Homework[^]

    The Lounge

  • What is Spring like?
    K Kimberly Weldon

    Basically Spring is a framework for dependency-injection which is a pattern that allows to build very decoupled systems. For example, suppose you need to list the users of the system and thus declare an interface called UserLister:

    public interface UserLister {
    List<User> getUsers();
    }

    And maybe an implementation accessing a database to get all the users:

    public class UserListerDB implements UserLister {
    public List<User> getUsers() {
    // DB access code here
    }
    }

    In your view you'll need to access an instance (just an example, remember):

    public class SomeView {
    private UserLister userLister;

    public void render() {
        List<User> users = userLister.getUsers();
        view.render(users);
    }
    

    }

    Spring (Dependency Injection) approach What Spring does is to wire the classes up by using a XML file, this way all the objects are instantiated and initialized by Spring and injected in the right places (Servlets, Web Frameworks, Business classes, DAOs, etc, etc, etc...). Going back to the example in Spring we just need to have a setter for the userLister field and have an XML like this:

    <bean id="userLister" class="UserListerDB" />

    <bean class="SomeView">
    <property name="userLister" ref="userLister" />
    </bean>

    It is great, isn't it? :cool:

    Java csharp question java css algorithms

  • The main purposes of learning java
    K Kimberly Weldon

    These are the reasons that I personally came up with: Java has a very rich API, and an incredible supporting open source ecosystem. There are tools upon tools for just about everything you would like to do. Java is an Object Oriented language. It internally embraces best practices of object oriented design. The IDEs available for Java will blow your mind. Java is running just about everywhere you can imagine. It’s usually where most large applications end up due to its scalability, stability, and maintainability. All Android Apps are written in Java. Java is a verbose language, which at first can seem daunting. However, after learning the basics you’ll find that you can easily grab onto more advanced concepts because the code is very explicit. Hope it will help you!

    Java

  • Can anybody help me with sourse code for quantum key distribution (QKD) written in any general language.
    K Kimberly Weldon

    I don't think that you could find a source code for QKD.. There is only some general info and schemes..Well it seems to me so.

    Algorithms

  • How to convert .docx file to .html with image and equation
    K Kimberly Weldon

    I would suggest you using Open xml sdk 2.5 along with Power tool. Trust me, it works everytime.:thumbsup:

    C#

  • Does Sitefinity CMS support SAML 2.0 ?
    K Kimberly Weldon

    Sitefinity does not handle SAML out of the box. There are a few ways to handle it though: customizing the STS project to handle SAML, or use an external STS integration (see https://github.com/Sitefinity/Sitefinity-External-STS-Integration for an example)

    Web Development
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups