BusyBird-Input-Feed

 view release on metacpan or  search on metacpan

t/samples/stackoverflow.atom  view on Meta::CPAN

ColorPanel1 color=new ColorPanel1();

public ColorPanel2()
{
    setLayout(new BorderLayout());
}

public void paintComponent(Graphics graphics)
{   
    super.paintComponent(graphics);
    int r = (int) color.jRed.getValue();
    int g = (int) color.jGreen.getValue();
    int b = (int) color.jBlue.getValue();
    graphics.setColor(new Color(r,g,b));
    graphics.fillRect(100, 50, 300, 150);
} 
</code></pre>

<p>}</p>

        </summary>
    </entry>
    <entry>
        <id>http://stackoverflow.com/q/24592990</id>
        <re:rank scheme="http://stackoverflow.com">0</re:rank>
        <title type="text">Are Heroku&#39;s environmental variables a secure way to store sensitive data?</title>
            <category scheme="http://stackoverflow.com/tags" term="ruby-on-rails" />
            <category scheme="http://stackoverflow.com/tags" term="ruby" />
            <category scheme="http://stackoverflow.com/tags" term="heroku" />
        <author>
            <name>tdkr</name>
            <uri>http://stackoverflow.com/users/2419441</uri>
        </author>
        <link rel="alternate" href="http://stackoverflow.com/questions/24592990/are-herokus-environmental-variables-a-secure-way-to-store-sensitive-data" />
        <published>2014-07-06T05:28:09Z</published>
        <updated>2014-07-06T05:28:09Z</updated>
        <summary type="html">
            

            &lt;p&gt;I use Heroku to deploy a Rails app. I store sensitive data such as API keys and passwords in Heroku&#39;s environment variables, and then use the data in rake tasks that utilize various APIs.&lt;/p&gt;

&lt;p&gt;I am just wondering how secure Heroku&#39;s environmental variables are? Is there a way to hash these variables while retaining the ability to use them in the background somehow?&lt;/p&gt;

&lt;p&gt;I came across a previous thread here: &lt;a href=&quot;http://stackoverflow.com/questions/12461484/is-it-secure-to-store-passwords-as-environment-variables-rather-than-as-plain-t&quot;&gt;Is it secure to store passwords as environment variab...

&lt;p&gt;But it doesn&#39;t quite cover instances when I still need to unhashed password to perform important background tasks.&lt;/p&gt;

        </summary>
    </entry>
    <entry>
        <id>http://stackoverflow.com/q/24592989</id>
        <re:rank scheme="http://stackoverflow.com">-1</re:rank>
        <title type="text">Upload multiple files to server through WCF Service</title>
            <category scheme="http://stackoverflow.com/tags" term="c#" />
            <category scheme="http://stackoverflow.com/tags" term="winforms" />
            <category scheme="http://stackoverflow.com/tags" term="wcf" />
        <author>
            <name>Ranish</name>
            <uri>http://stackoverflow.com/users/1792110</uri>
        </author>
        <link rel="alternate" href="http://stackoverflow.com/questions/24592989/upload-multiple-files-to-server-through-wcf-service" />
        <published>2014-07-06T05:28:02Z</published>
        <updated>2014-07-06T05:28:02Z</updated>
        <summary type="html">
            

            &lt;p&gt;As per requirement, I want to upload multiple files to Server from a windows application.  I am planning to use a WCF service to upload the files. Is there any other better approach?
If possible please provide me the code samples.&lt;/p&gt;

&lt;p&gt;Thanks in Advance.&lt;/p&gt;

&lt;p&gt;Ranish&lt;/p&gt;

        </summary>
    </entry>
    <entry>
        <id>http://stackoverflow.com/q/24592988</id>
        <re:rank scheme="http://stackoverflow.com">0</re:rank>
        <title type="text">How do I incorporate full-scale responsive images, horizonatal scrolling, and lazy loading?</title>
            <category scheme="http://stackoverflow.com/tags" term="jquery" />
            <category scheme="http://stackoverflow.com/tags" term="responsive-design" />
            <category scheme="http://stackoverflow.com/tags" term="lazy-loading" />
            <category scheme="http://stackoverflow.com/tags" term="horizontal-scrolling" />
        <author>
            <name>user3808880</name>
            <uri>http://stackoverflow.com/users/3808880</uri>
        </author>
        <link rel="alternate" href="http://stackoverflow.com/questions/24592988/how-do-i-incorporate-full-scale-responsive-images-horizonatal-scrolling-and-la" />
        <published>2014-07-06T05:27:53Z</published>
        <updated>2014-07-06T05:27:53Z</updated>
        <summary type="html">
            

            &lt;p&gt;I&#39;ve been working on these images-based projects that are meant to be full-screen horizontal scrolls. This is meant as sort of an art project, not meant for optimal quick and practical web viewing. The images are high resolut...

&lt;p&gt;I am not sure if what I want is possible, but it seems like it is just on the cusp of working. I have a demo below. In it you can see that images that are viewable within the window are loaded, but when you scroll horizontally nothing is loa...

&lt;p&gt;Here is the demo: &lt;a href=&quot;http://connorwillumsen.com/shadow_scroll_demo_2_test/test2.html&quot; rel=&quot;nofollow&quot;&gt;http://connorwillumsen.com/shadow_scroll_demo_2_test/test2.html&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I will list the Jquery scripts I am using in case they are conflicting;&lt;/p&gt;

&lt;p&gt;a) A mouswheel script that makes the page scroll horizontally when using the scroll up/down function on a trackpad or mousehweel.&lt;/p&gt;

&lt;p&gt;b) A Jquery function to make the proportion of the images relative to the browser window&lt;/p&gt;

&lt;p&gt;c) Lazy Load script.&lt;/p&gt;

&lt;p&gt;I&#39;m not very experienced with this and learning as I go, so I apologize if my code is sloppy. I tried to clean it up as much as possible.&lt;/p&gt;

&lt;p&gt;CSS:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;body {

}

html,body {
width: auto;
margin:0;
padding:0;
overflow-y: hidden;
overflow-x: scroll;

}

#container {
width: 100%;
height:100%;



( run in 1.905 second using v1.01-cache-2.11-cpan-b16cb0d3907 )