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'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">
<p>I use Heroku to deploy a Rails app. I store sensitive data such as API keys and passwords in Heroku's environment variables, and then use the data in rake tasks that utilize various APIs.</p>
<p>I am just wondering how secure Heroku's environmental variables are? Is there a way to hash these variables while retaining the ability to use them in the background somehow?</p>
<p>I came across a previous thread here: <a href="http://stackoverflow.com/questions/12461484/is-it-secure-to-store-passwords-as-environment-variables-rather-than-as-plain-t">Is it secure to store passwords as environment variab...
<p>But it doesn't quite cover instances when I still need to unhashed password to perform important background tasks.</p>
</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">
<p>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.</p>
<p>Thanks in Advance.</p>
<p>Ranish</p>
</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">
<p>I'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...
<p>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...
<p>Here is the demo: <a href="http://connorwillumsen.com/shadow_scroll_demo_2_test/test2.html" rel="nofollow">http://connorwillumsen.com/shadow_scroll_demo_2_test/test2.html</a></p>
<p>I will list the Jquery scripts I am using in case they are conflicting;</p>
<p>a) A mouswheel script that makes the page scroll horizontally when using the scroll up/down function on a trackpad or mousehweel.</p>
<p>b) A Jquery function to make the proportion of the images relative to the browser window</p>
<p>c) Lazy Load script.</p>
<p>I'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.</p>
<p>CSS:</p>
<pre><code>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 )