Hi
Does anybody know once you install the prism templates vs2010 where are they Installed?
I cannot find in anywhere.
I am using windows 7
Thanks a lot
Hi
I would like to use Jasper reports and build the report without templates. How can i get started? I have all the necessary libraries but I don't know how to start and I couldn't find anything.
Thanks
So I can add new templates for single files, but I want Xcode to uses these files when setting up the new project (most noticeably the Controller and Delegate .h and .m files). How do I do that?
Hello,
only with a certain .Net 4.0 project I can not add a new Window item to my project in the solution explorer. In the installed Templates for WPF there is only the UserControl ?
What happened?
I have installed xcode 3.2 with iphone SDK. (without Mac OS 10.4 SDK). WHen i create new project i only got these options for Mac OS
-- Application
-- Framework and Library
-- Application plugin
-- System plugin
--Other
But a book named: Programming Object C 2.0. From which i am learning object C. Its showing XCode with these templates for Mac OS
--Application
--Audio Units
--Automater actions
--Bundles
--Command Line Utility
--dynamic library
--Framework
--Java
--Kernal Extensions
--Standard Apple plugin
--Static Library
--Other
I need the Command Line Utility template so that can create sample projects mentioned in book.
Where can I find good templates for svn commit emails?
Google led me to this. Even though it was much better than the default post-commit, I didn’t find it very useful.
Help much appreciated.
I am looking fr someone to make me two website templates for my site for free.
Here is a quick design of what I want:(Took me 2 minutes in Paint)
http:/ /i50.tinypic.com/33p9aut.jpg (You have to push backspace on the first link to join up the http:/ and the other /)and http://i50.tinypic.com/2qmogoo.jpg
Email me at [email protected] or [email protected] for more information
I have a customized live fedora 12 USB which is working fine. What i want to do is to make a partition of my hard disk bootable so that my customized fedora can be run from hard disk. To accomplish this i did the following steps:
Created a primary partition(/dev/sda2) and format it as ext3 and
set it as active.
Copy all the files in the live usb to /dev/sda2. Following are the live
usb contents(all directories): a.
boot b. EFI c. LiveOS d.
syslinux
Then i installed the GRUB in boot/grub
Created the grub.conf in boot/grub
Following are the contents of each directory in the USB:
syslinux/
boot.cat
isolinux.bin
splash.jpg
vesamenu.c32
initrd0.img
ldlinux.sys
syslinux.cfg
vmlinuz0
LiveOS/
livecd-iso-to-disk
osmin.img
squashfs.img
EFI/
boot/
boot.conf
grub.conf
boot.efi
bootia32.conf
bootia32.efi
splash.jpg
splash.xpm.gz
vesamenu.c32
initrd0.img
isolinux.bin
isolinux.cfg
vmlinuz0
boot/grub/
core GRUB files
grub.conf
olpc.fth
Following are contents of grub.conf
default=0
splashimage=/EFI/boot/splash.xpm.gz
timeout 2 hiddenmenu
title funLinux
kernel /EFI/boot/vmlinuz0
root=live:LABEL=myFun
rootfstype=auto ro liveimg quiet
ssb.blacklist=1 selinux=0 vga=normal
nomodeset rhgb initrd
/EFI/boot/initrd0.img
Now when i try to boot from the hard disk it shows the grub menu and fedora starting to load but during loading it said
No root device found Boot has failed,
sleeping forever
So, where is the problem? what i am doing wrong?
I want to preface my question with the fact that I'm only a front-end web developer, so please excuse my gross lack of knowledge in this area.
My company has three webservers: one for development (IIS v5), one for staging (IIS v5), and one for live deployment (IIS v6). Staging is an exact mirror of live.
When I compare the staging and live web pages side by side in Firefox (3.6), the pages are identical. However, when I compare the staging and live pages with Internet Explorer (8), there are major differences...
In staging, the squares for bulleted lists are small. In live, the squares are big.
In staging, the borders for tables are thick. In live, the borders are thin.
In staging, an ASP generated image is the proper height. In live, the image is cropped at the bottom by about 10px.
In the end, the layout on live became broken because of these tiny differences, but why?
Does the fact that live is on IIS 6 and staging is on IIS 5 account for the small variance in display? And is there any way I can change this server side?
Also, is there any reason why Firefox displays both correctly and IE displays both incorrectly?
I need a way to use the jquery .live() function to act on elements that are loaded via ajax.
For instance a div is loaded via ajax .load()
<div id="mydiv"></div>
Normally I do .live() with a click event, but I need to know how to tell the dom that this new div has loaded without any explicit actions/events from the user.
This code doesn't work, but I want to do something like this:
mydiv = $("#mydiv");
mydiv.live("mydiv.length > 0", function() {
// do something
});
The "mydiv.length" being a substitue for the typical "click" or other event.
I'm looking for a template engine. Requirements:
Runs on a JVM. Java is good; Jython, JRuby and the like, too...
Can be used outside of servlets (unlike JSP)
Is flexible wrt. to where the templates are stored (JSP and a lot of people require the templates to be stored in the FS). It should provide a template loading interface which one can implement or something like that
Easy inclusion of parameterized templates- I really like JSP's tag fragments
Good docs, nice code, etc., the usual suspects
I've looked at JSP- it's nearly perfect except for the servlet and filesystem coupling, Stringtemplate- I love the template syntax, but it fails on the filesystem coupling, the documentation is lacking and template groups and stuff are confusing, GXP, TAL, etc.
Ideas, thoughts?
Alex
Hi,
I’ve throughout the last couple of years downloaded a lot of templates for websites and these are now starting to become chaotic in the different folders so I’m starting to get a overview of the different templates.
Regarding to this I was thinking about the way that WordPress displays the different themes installed in the themes folder. It provides a small overview (thumbnail) of the theme and a possibility to preview the theme. Of cause, I don’t need or want such a advanced system as Wordpress but I’m attractive to the idea of displaying my templates in the same kind of manner and without using a Database.
I’ve played around with different directory management scripts and tools for PHP but the best result I’ve got so fare is just to display the different content in the different folders but not create a preview which in each preview it will use the webpage itself and it’s stylesheets, images, etc.
Does anyone have an idea how to create such a script or have a link to a already existing script. Of cause is all the main pages named index.htm / .html
Sincere
Mestika
I know that the live() event handles event bubbling different than all other jQuery events. jQuery recommends using 'return false', but in my case that doesn't work.
The issue is:
I have a DIV which contains an anchor tag.
The DIV is bound using live(). Whenever I click the anchor tag inside this DIV it bubbles and calls the DIV's event. If I bind an event to that A tag which returns false it prevents the link from opening. Neither stopPropagation() or return false work in this case. Are there any other options? Ideally I'd like to keep the live() event around.
Hi,
I was working on an application that streams live video using Flash client and Wowza media server.
As of now, I use an independent desktop based encoder(Flash Media Live Encoder) to publish my live stream.
I wanted to know if it is possible to do the encoding part in the browser? My application would be a used by many to publish their streams so I cannot ask everyone to use FMLE to publish.
I was wondering how do the other web based video chat applications do the encoding part over the web.
Please help.
Thanks
It doesn't currently seem as though there is a way to do live events in YUI similar to jQuery: http://api.jquery.com/live/
It sure would be nice if something like:
function handleClick(e) {
// click!
}
YUI().use('node-base', function(Y) {
Y.on("click", handleClick, ".foo");
});
caused handleClick to be fired when a node with the "foo" class was clicked on after being dynamically added to the DOM and sometime after the Y.on was evaluated. I feel like live events are one of jQuery's killer features that YUI lacks.
I have a large .NET based system running within the company intranet, which allows winforms users to see some live calculated numbers and a custom winforms control drawn live (but not real-time). The Forms users can also affect the operation of the system.
I would like to just show the live numbers on a website, along with the custom control. Nothing needs to come back from the web user, as the web app is meant to be just for monitoring. All the numbers can be calculated at the server.
It's been a long time since I touched ASP.NET, and I need to know how to proceed. What are the steps in building and deploying such a website? Any caveats I need to look out for?
On http://www.slideshare.net/eljefe/automated-deployment-with-phing in slide 15 they are talking about "locking the live site" when doing deployment.
We are running multiple webshops in a SAAS application where it is possible that users are adding products, buying products and paying for products online, and so on...
When deploying we want to do this as clean as possible, so that not payments or orders or other critical data will be lost.
We have a deployment scenario set up using phing (amazing tool!) but we are missing one crucial step being the "locking of the live site" while deploying.
What is a possible way to lock a live site and bring it back online after deploying?
I'm looking for a template engine. Requirements:
Runs on a JVM. Java is good; Jython, JRuby and the like, too...
Can be used outside of servlets (unlike JSP)
Is flexible wrt. to where the templates are stored (JSP and a lot of people require the templates to be stored in the FS). It should provide a template loading interface which one can implement or something like that
Easy inclusion of parameterized templates- I really like JSP's tag fragments
Good docs, nice code, etc., the usual suspects
I've looked at JSP- it's nearly perfect except for the servlet and filesystem coupling, Stringtemplate- I love the template syntax, but it fails on the filesystem coupling, the documentation is lacking and template groups and stuff are confusing, GXP, TAL, etc.
Ideas, thoughts?
Alex
I have images being dynamically added to a page, I don't seem to be able to get the 'load' event working dynamically with live().
This is the code I currently have:
$('#largeImg' + nextUniqueItemID).hide();
$('#largeImg' + nextUniqueItemID).live('load' , function() {
$('#loader' + nextUniqueItemID).hide();
$('#largeImg' + nextUniqueItemID).show();
});
with '#largeImg' + nextUniqueItemID being an image that was added to the page earlier in the function and '#largeImg' + nextUniqueItemID being a loading image.
I feel as if I may be misusing "live" as it doesn't really need a listener but to trigger the event immediately.
I am retriving this content from ajax
<div id="content">
click on image to close<img id="img_id">
</div>
jQuery code to close div:
$("#img_id").live('click',function(){
$("#content").slideUp('fast');
});
Once I click on image div closes. But in IE6 nothing happens. I don't know why IE6 doesn't take live click event, or if the problem is with image id.
Once image clicked (live click event not triggered in IE6) What would be the reason?
I'm trying to compute statistics for data held in an Access .mdb database. In order to avoid interfering with the live database, I'm working from a copy which I made by simply using copy-paste in Windows Explorer. The copy resides in the same directory, but with a different name.
I'm using R and RODBC to connect to the copy of the file. The strange thing is that new data that is being updated on the original live database is appearing in my queries. This is despite the file timestamps of the copy not changing at all. It is also causing some slowdown in the live database.
My understanding is that the .mdb files are standalone, or is this not the case? Should I have copied the database in a different way?
I am writing a Firefox Add-On that currently is depending on jQuery for the following things:
Selectors
Animations
A special .live("focus") hail-mary event-catching maneuver that happens to work with jQuery 1.4.2 (but not 1.4.4)
jQuery isn't well suited for functioning inside XUL, and it's a miracle we've gotten this far with it. We're trying to remove the jQuery requirements, the first two are easy (animations are simple, and we can use .querySelector() instead of jQuery), but the .live has proven impossible to do on our own. I've tried reading the source code, but I haven't been able to piece it apart.
What is the jQuery .live function doing? There's clearly a lot more going on than document.addEventListener("focus"/"focusin",function_to_pick_apart_events). What else is going on here?
After upgrading from Windows 8 Pro with Media Center to the 8.1 preview, I need some help in being able to watch live TV again.
When I try to now, it says Please Wait. Searching for tuners.
I tried reinstalling the software for the Hauppauge WinTV DCR-2650 TV tuner, and upgrading the firmware for both the tuner and the Cisco STA-1520 tuning adapter.
I also tried swapping around the USB ports, cold-booting the devices, and running the Set Up TV Signal setting in WMC, but that says The TV signal cannot be configured because a TV tuner was not detected.
Both devices look fine in Device Manager, reporting the "This device is working properly" status.
I'm not sure if this is related, but I did have some network connectivity issues immediately after upgrading to Windows 8.1 where my either my subnet mask or default gateway was missing, and since the TV tuner shows up as a network device, I wonder if that might be related. However, I really don't know how those settings should look and Hyper-V sort of further complicates things with the virtual Ethernet adapters:
I really do not like the Windows Live Messenger interface, and every time they revise it, it gets even worse. I want to use a replacement, ...
but I don't want to lose the message history.
My company uses Messenger for discussion of technical problems, and I often need to visit the history to find a previous discussion.
Is there any substitute client that will use/continue the message history?
It must also support file transfer.
I'm running Windows XP/Pro, as required by my company.