CFChart Item Titles with Spaces Wrap

I am using CFChart.
The titles for the items in the chart often have spaces in
them.
Here is the JPG that gets created if I leave the spaces in
the titles.
http://test.bcccc.net/test/Bar_Graph_w_Wrapping_Titles.jpg
Here is the JPG that gets created if I replace the spaces
with underscores.
http://test.bcccc.net/test/Bar_Graph_w_Underscore_Titles.jpg
I have tried replace the spaces with #Chr(160)# which are
non-breaking ASCII spaces, but that does not do any good.
I have spent over 2 hours searching for solutions on line,
but cannot find one anywhere.
Swithin

Photoshop is fine for images only.  But the HTML it generates is not acceptable for use on real web sites.  Photoshop HTML is for quick comps to show a client before you set out to rebuild the page in Dreamweaver.
Save images only in Photoshop. 
Start over with one of the pre-built CSS Layouts that comes with DW.
     File > New > Blank > HTML > Layout.  I recommend fixed-width, centered, header & footer for your first project.
Look at this 3-part tutorial
Taking a Fireworks (or Photoshop) comp to a CSS Layout in DW
Part 1 - Initial Design
http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html
Part 2 - Markup preparation
http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt2.html
Part 3 - Layout and CSS
http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt3.html
If you get stuck on anything, post back with specific questions.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/

Similar Messages

  • How to display all items titles from custom list with checkbox to select for each user

    Hi All,
    I have a requirement in a sharepoint 2013 development project.
    A custom list items will be created by admin with the following columns:
    Title
    Hyperlink
    User business unit (This column which is a metadata will be a userprofile property)
    In a page/form I have to display the list of titles with a check box based on each user business unit and each user will be allowed to check the list of titles and hit save. And then have to display the list chosen by the user in a webpart.
    If they want to modify their list they have to go to the page/form again and will uncheck the list.
    Am not sure whether I can achieve this through sharepoint out of box feature, I have not done any custom development.
    Please provide your valuable suggestions/ideas on this. Thanks for looking on this !!!

    Hi,                                                             
    Per my knowledge, there are no such OOTB features can meet your requirement, however, there is a workaround that if you can modify your requirement a bit.
    Based on your description, you want different users be able to select values from a list and generate a list own by them.
    If this is what you mean, we can do it like this:
    1. Create another list "Users" which stores the names of every users;
    2. Create a list "Result" which will be available for every user to add their own items, this list will have four Lookup columns and they look up to the "Users" list and the
    list you mentioned before;
    3. Users can add items into "Result" list by selecting the needed values from the other two list, then the items he/she created will be connected to them with the help of the
    Lookup column which looks up to the "Users" list.
    4. You can take use of the OOTB permission management of list to control the access of each item in the "Result" list, and it will be easier for you to manage and filter the
    information you needed.
    The links below about Lookup column for your reference:
    http://office.microsoft.com/en-us/sharepoint-server-help/create-list-relationships-by-using-unique-and-lookup-columns-HA101729901.aspx
    http://www.dummies.com/how-to/content/lookup-columns-in-sharepoint-2010.html
    Best regards
    Patrick Liang
    TechNet Community Support

  • Dmenu menu with spaces?

    I am trying to create a dmenu, that runs specific commands on each entry. but i fail to use entries with spaces.
    This is how i am trying to archive it, without success, i might add:
    #!/bin/bash
    prog="
    test
    test with space
    cmd=$(dmenu <<< "$prog")
    case ${cmd%% *} in
    test) notify-send "foo" ;;
    test with spaces) notify-send "bar"
    *) exec "'${cmd}'" ;;
    esac
    what would be a better solution?

    schalox wrote:
    What if you use double quotes when assigning array's items?
    declare -A actions=(
    ['1. Quick Fullscreen']="scrot -d 1 "$FILEMASK" && notify ${TIME} "Screenshot saved""
    since declare opens a subshell this wont work either. too bad, it looks much cleaner
    anyway, i was able to solve my good old case - here the whole script:
    #!/bin/bash
    # teiler - A script to share (german word: teilen) screenshots/casts for tiling WMs - Pun intended
    # (c) Rasmus Steinke <rasi at xssn dot at>
    # Additional Ideas, testing and some code by Zeltak <zeltak at gmail dot com>
    # Requirements:
    # xclip, fb-client, pinta, dzen2, dmenu, ffmpeg, scrot, bc, some notification daemon
    #changelog
    #v0.8
    #Put notify-send into its own function, Made delay being calculated from counter value.
    #v0.7
    #Massive Code Cleanup
    #v0.6
    #Countdown script stolen from Google and integrated.
    #v0.5
    #added clip uploading
    #v0.4
    #added screencast function
    #v0.3
    #added 1.notifications 2.unique names for each type (for quick launch) 3.better photo editor (pinta) 4.dmenu title
    ############### Configuration options ##############################
    IMG_PATH=/home/carnager/Pictures/Screenshots/
    FILEMASK=%Y-%m-%d-@%H-%M-%S-scrot.png
    UL=fb
    EDIT=pinta
    RES=1920x1080 #set your screen resolution
    TIME=3000 #How long will notifications be visible? (in miliseconds)
    COUNTER1=3 #Seconds to count for delay (Use $COUNTD variable)
    COUNTER2=6 #Seconds to count for delay (Use $COUNTD2 variable)
    #DMENU/DZEN2 CONFIGURATION
    FONT="Envy Code R-9"
    NF="#7c7c72"
    NB="#1a1a1a"
    SF="#FFFFFF"
    SB="#33B5E5"
    DZEN2_W=100 #Width of dzen2
    DZEN2_X=850 #X Padding
    ################## Configuration End ##############################
    # Needed for the countdown
    # Based on some script by Marco Fontani - MFONTANI at cpan dot org
    set -bm
    COLOR='#7c7c72'
    function countdown () {
    seq 1 ${1:-10} | tac | \
    perl -ne'BEGIN{$|++;$msg=shift}$m=int($_/60);$s=int($_-$m*60);printf("$m:%02d -- $msg\n",$s);sleep 1;' \
    "${2:-ready...}"
    # Outsource the notfiy-send to its own function to clean up the mess below a bit ;)
    function notify() {
    notify-send -u low --hint=int:transient:1 -t ${1} "Scrot" "${2}"
    ####Some Variables to clean up the code a bit
    COUNTD="countdown $COUNTER1 GO | dzen2 -fn \"$FONT\" -fg \"$NF\" -ta c -w \"$DZEN2_W\" -bg \"$NB\" -x \"$DZEN2_X\""
    COUNTD2="countdown $COUNTER2 GO | dzen2 -fn \"$FONT\" -fg \"$NF\" -ta c -w \"$DZEN2_W\" -bg \"$NB\" -x \"$DZEN2_X\""
    XCLIP="(xclip -o;echo) | xclip -selection clipboard"
    cd $IMG_PATH
    #!/bin/bash
    MENU="1. Quick Fullscreen
    2. Select Area
    3. Fullscreen Shot and Edit
    4. Selection and Edit
    f. Fullscreen and Upload
    d. Delayed Fullscreen and Upload
    e. Fullscreen and Edit and Upload
    s. Selection and Upload
    p. Selection and Edit and Upload
    x. Upload Clipboard Content
    c. Start Recording a Videocast
    k. Stop Recording a Videocast
    CHOICE="$(echo "$MENU" | dmenu -o 0.8 -l 20 -fn 'Envy Code R-10' -nf '#999' -nb '#000' -sf '#eee' -sb '#0077bb' -p "Make Your Wish:")"
    case "$CHOICE" in
    "1. Quick Fullscreen")
    scrot -d 1 "$FILEMASK" && notify ${TIME} "Screenshot saved"
    "2. Selection")
    eval $COUNTD & scrot -d $(echo $COUNTER1+1 | bc) "$FILEMASK" && notify ${TIME} "Screenshot saved"
    "3. Fullscreen Shot and Edit")
    scrot -d 1 "$FILEMASK" -e "$EDIT \$f" && notify ${TIME} "Screenshot edited and saved"
    "4. Selection and Edit")
    scrot -s "$FILEMASK" -e "$EDIT \$f" && notify ${TIME} "Screenshot edited and saved"
    "f. Fullscreen and Upload")
    scrot -d 1 "$FILEMASK" -e "$UL \$f" && eval $XCLIP && notify ${TIME} "Screenshot uploaded"
    "d. Delayed Fullscreen and Upload")
    eval $COUNTD & scrot -d $(echo $COUNTER1+1 | bc) "$FILEMASK" -e "$UL \$f && rm -f \$f" && eval $XCLIP && notify ${TIME} "Screenshot uploaded"
    "e. Fullscreen and Edit and Upload")
    scrot -d 1 "$FILEMASK" -e "$EDIT \$f && $UL \$f && rm -f \$f" && eval $XCLIP && notify ${TIME} "Screenshot uploaded"
    "s. Selection and Upload")
    scrot -s "$FILEMASK" -e "$UL \$f && rm -f \$f" && eval $XCLIP && notify ${TIME} "Screenshot uploaded"
    "p. Selection and Edit and Upload")
    scrot -s "$FILEMASK" -e "$EDIT \$f && $UL \$f && rm -f \$f" && eval $XCLIP && notify ${TIME} "Screenshot uploaded"
    "x. Upload Clipboard Content")
    eval $COUNTD2 & sleep $(echo $COUNTER2+1 | bc) && xclip -o | fb && eval $XCLIP && notify ${TIME} "Clipboard uploaded"
    "c. Start Recording a Videocast")
    ffmpeg -r 25 -f x11grab -s $RES -i $DISPLAY+0,0 -vcodec libx264 temp_cast.mkv && notify ${TIME} "Screencast started"
    "k. Stop Recording a Videocast")
    kill $(pgrep -f x11grab) && sleep 3 && $UL temp_cast.mkv && rm -f temp_cast.mkv && eval $XCLIP && notify ${TIME} "Screencast uploaded"
    notify-send "No Selection Made"
    esac
    and here is how it looks:

  • URLs with spaces

    I know that's a contradiction in terms but here is my problem. My database contains large numbers of 'URLs' with spaces in them reflecting where the corresponding files actually are in the file system. In the longer term I can get them converted to use %20 but in the meantime I have the problem that h:outputLink translates the spaces into +. I'm just wondering if there's something in JSF that will turn them into %20 for me? ... other than fn:replace() which I guess is not a bad alternative ...
    Thanks in advance.

    SharePoint is a Document Management system which is designed to be user-friendly. Naming all documents in your site farm with no spaces makes the document titles difficult to read for the end users. I agree that, programatically, no spaces is good, but unfortunately,
    systems are used by human beings. So even though your suggestion has been marked as an answer, it's not really a solution is it?
    The solution I came up with that solved my instance of this problem was to add a text column to the List I was working with, then put some JavaScript in the NewForm.aspx file that copies the file name into the text file and the applies an "encodeURI" to
    convert the word spaces into %20 ...
    So when I create a new item in my list, the JavaScript takes the file name, converts the spaces to %20, then copies the string into the text field in the list. When I build the WorkFlow Email, instead of concating the file name into a URL, I use the text
    field that pulls out (for example) "my%20file" and adds the pre-amble (http://myserver/path/) and the suffix (.pdf) and I have a working URL ...
    The full solution is posted at
    my blog ...

  • Transaltion in work item title not working consistently

    Hi,
    I am seeing a strange behaviour in SAP business workfplace with respect to the work item title (subject line) translation........................
    - Some prelimenary info : All work item translations for title (subject) and work item body are completly maintained
    - System : SAP ECC 6.0
    Problem being faced
    1. Workflow is trigerred by an user with English login and this generates a work item to the another users
    2. The work item receipent logs in in different langiage say german...................he then starts SBPW to check this work item
    3. The title of the work item appears in english while the same title which appears in the work item body also is shown in German (User log on language)..................
    4. The user displays (not execute) the work item........................The work item title is shown in in German.
    5. The user returns to the inbox and then the work item title changes to German language.........................
    Has any one encountered this problem.......................I looked for SAP notes but could not find any note suitable for this..........................
    I assume it is more a SBWP bug but want to gather some experience from this group
    Thanks
    Kiran

    Hi,
    This may happen due to the problem in language translation. Please maintain the language translation properly then test it agian.
    Pleae check the table HRS1206 where OTYPE = 'TS' and OBJID= 99000031 ( task number ) whether the multiple language translation is maintained or not. If not thenyou need to maintain through transaction SE63.
    Please visit below link for more details.
    http://wiki.sdn.sap.com/wiki/display/ABAP/TranslatingTaskDescriptionusingSE63
    Thanks and regards,
    SNJY

  • Handling flat file conversion with spaces inbetween  at sender side

    Hi,
       I am facing some problem in configuring the sender JMS adapter file content conversion. Please find the structure of my file below
    010AG  07/17/2007 000130800 TOZ07/17/200710:48:46
    010AU  07/17/2007 006682800 TOZ07/17/200710:48:46
    010-Record key
    AG-Metal code
    07/17/2007 -price Date
    000130800 -pricevalue
    TOZ-Unitofmessure
    07/17/200710:48:46-Unitofmessure
    there are 2spaces inbeween 1and 2nd fields and one space beween 2nd and 3rd ,one space between 3rd and 4th fileds
    I declared my source data strucute like below
    <source_MT>
    <PriceData>
         <Metal code>
          <price Date>
          <pricevalue>
          <Unitofmessure>
           <shipDate>
    </priceData>
    </source_MT>
    I am using this PDF to configure my serder communication channel https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/50061bd9-e56e-2910-3495-c5faa652b7
    . but i got struck up in declaring these two fields as i need deal with spaces.
    xml.NameA.fieldNames
    xml.NameA.fieldFixedLengths
    It would be great if sombody tell me how ican decalre content conversion rules for the file
    Thanks
    sudheer

    Hi,
    Please check some links on FCC.
    Introduction to simple(File-XI-File)scenario and complete walk through for starters(Part1)
    Introduction to simple (File-XI-File)scenario and complete walk through for starters(Part2)
    File Receiver with Content Conversion
    Content Conversion (Pattern/Random content in input file)
    NAB the TAB (File Adapter)
    Introduction to simple(File-XI-File)scenario and complete walk through for starters(Part1)
    Introduction to simple (File-XI-File)scenario and complete walk through for starters(Part2)
    How to send a flat file with various field lengths and variable substructures to XI 3.0
    Content Conversion (Pattern/Random content in input file)
    NAB the TAB (File Adapter)
    File Content Conversion for Unequal Number of Columns
    Content Conversion ( The Key Field Problem )
    The specified item was not found.
    File Receiver with Content Conversion
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/content.htm
    Regards,
    Phani

  • Document library: File name with spaces at EOF

    I noticed a strange issue with uploading files with space at end of file (example "ABC  .xlsx"). Such files are allowed to be uploaded for the first time but when the end user (with contribute permission) tries to upload the same file again
    (overwrite) then it uploads the file and goes to the next dialog box where properties for the form is collected (EditForm) and then when user tries to hit save, he gets "Sorry this site is not shared with you" error. The owners (with Full control
    permission) get the error message that the file needs to be renamed. 
    This does not happen with files having proper names. The files are automatically overwritten as expected.
    Is it a SharePoint bug or am I missing something ?

    Hi Prakash,
    When we upload a document which contains spaces at the end of the file name, then SharePoint will trim out the spaces in the Edit Item Form, so the name for this document should be “ABC.xlsx”.
    When we re-upload the document to SharePoint, because of that extra space it sees the filename(ABC  .xlsx) as different to the existing document (ABC.xlsx) so it adds it as a new document.
    And in the edit item form, the space has been trimmed out. Because there is already a document with that filename in the document library, it throws the error.
    So this issue is by design that SharePoint uploads the document first and then edit the properties of the document.
    For more details, please refer to the link below:
    https://discoverlars.wordpress.com/2012/10/27/sharepoint-doesnt-overwrite-a-document-with-the-same-name-but-creates-duplicates/
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • Link to Network Drive with Spaces

    I need to create a link in SharePoint 2010 that points to a network drive with spaces in the title. SharePoint substitutes %20 for spaces, but I need the space character.
    For example:
    file:///\\company\foldername   works
    file:///\\company\folder name   does not work, it becomes
    file:///\\company\folder%20name 
    Has anyone run into this issue before?

    Hi Andy,
    20% represents space in url encoding and it is hardcoded. I don’t think it is better to remain space character in the link.
    http://en.wikipedia.org/wiki/URL-Encoding
    Here is a thread discuss about that:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/5cc9881d-e72c-434f-be07-bd6d2a74eec6/sharepoint-file-issue-20-replaces-space-in-file-name?forum=sharepointadminlegacy
    http://www.networkworld.com/article/2221731/microsoft-subnet/simple-naming-conventions-that-improve-end-user-experience-in-sharepoint-sites.html
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Field names with spaces in target file using fcc

    Hello Friends,
    My target structure fields:
    MT_Target
    ItemNo, ItemName, ItemQuantity, AmountValue, TotalAmount
    My requirement here is - In the target file - these fields should be generated with space. Shown as below:
    Item No, Item Name, Item Quantity, Amount Value, Total Amount
    How can i achieve this.
    Thanx
    S.

    if i understood u correctly u want to have a header line in ut target file same as that ur field names but with a space in between??
    if yes  the use :
    NameA.addHeaderLine=3
    NameA.headerLine =Item No, Item Name, Item Quantity, Amount Value, Total Amount
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/content.htm

  • Passing where clause with spaces from forms to reports

    Hi,
    Has anybody passed where clause as lexical parameter with spaces from forms to preports..
    I have seen people mention that, we can replace the spaces with special characters and then replace it again in the before trigger report..does anyone have a working example of that??
    Thanks.

    i solved the issue..
    i had written the procedure in the before report
    trigger instead of writing it in the before parameter
    form trigger..
    it works perfecto now..
    Thanks.We had removed the spaces and used commas to delimit each item.
    So you are saying spaces are not a problem in 10g?

  • Cheque amount to word with space inbetween

    Hi All
    Has anyone come across printing cheque amount to WORD with space inbetween the word wrap to make the cheque look tidy.  
    Any help will be appreciate
    Raj

    Hi,
    Have you designed cheque through PLD or CR.
    regds,
    sampath.

  • Preventing Discoverer Admin replacing underscores with spaces on refresh

    Hello,
    On refreshing a Business Area, Discoverer Administrator will automatically replace underscores with spaces for any new items/folders to be incorporated. I would prefer this not to happen i.e. the names should retain the underscores. I haven't found any way to do this from within Discoverer Admin - are there some registry settings that I can tweak or is it just not possible,
    Thanks in anticipation,
    Kevin.

    Hi,
    Well, you could try using a eul_trigger$refresh_new_column trigger. I must admit I have never tried this, but the details are in the documentation (http://download.oracle.com/docs/html/B13916_04/appendix_b.htm#sthref2417).
    Rod West

  • Item title won't show in Content Search Web Part

    Hi,
    I am trying to show news items from one site on another site. I can show all attributes so far, except for the title.
    The field name of the title in the news item is 'title'.
    In crawled properties, I have linked the title to Title, RefinableString00 and RefinableString12.
    But the title either displays DispForm.aspx as a title (when I select title), or nothing (when I select the mapped property RefinableString00 or RefinableString12).
    What can/should I do to show the title field?

    Hi,
    According to your post, my understanding is that Item title did not show in Content Search Web Part.
    You need to open the webpart either in SP designer or visual studio or as matter of fact in Notepad and search for the special property. And then add your list columns which you wants to display.
    More information:
    How to: Display Custom Fields in a SharePoint Content By Query Web Part (ECM)
    SharePoint: Content Query Webpart - OOB, Custom Fields, Custom Style with Table format
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Word doesnt play nicely with spaces

    When i open up microsoft word i have it set up to open in my second space. the problem is, when i switch back and forth from that space to my first one or another space, and then back, parts of word get left behind. For instance, all the controls in the toolbox are just floating in another space, or my cursor is just floating in a random window. are people aware of this, is there anything i can do to fix it?

    You said it in your Subject title - MS Office is not completely compatible with Spaces. Menus sometimes appear in Spaces other than where they were assigned. But that happens on my machine with other applications, like switching from a Space running Safari to an empty Space. Using the Control-arrow or Control-keypad-number to change Spaces may help.
    It may be fixed in the next release of Office for the Mac, which occurs about every 4 years (Office 2000 to Office 2004 to Office 2008) so look for a fix in 2012.

  • Problem replacing  chart axis title  with &string. syntax

    Apex 4.1.1
    Hi,
    I am having a problem replacing a chart axis title with substitution syntax &P5_MYFIELD., where P5_MYFIELD is an item with Source Type PL/SQL Function Body:
    begin
    return web_message.show('LASTNAME', 'dk');
    end;
    The Item is defined on the same Page as the chart in a different region. I can see that function is working ok, because the return value is displayed in P5_MYFIELD.
    There is a second item in an other region on the same page where the source value is defined with substitution syntax &P5_MYFIELD. It also displays the expected value. But when I use the string &P5_MYFIELD. as axis title it is not displayed.
    I also defined a field P0_MYFIELD on Page Zero with the same function, when I reference that with &P0_MYFIELD. as axis title on Page 5 the value is displayed correctly. I tried the same with a field on Page 1, &P1_MYFIELD. and it is displayed correctly.
    I think, the chart axis title must be substituted before the item P5_MYFIELD is executing the PL/SQL function body to get its value. Can anyone tell me why?
    We want to use string substitution syntax to translate all our labels in different languages. I would like to create hidden items with source type PL/SQL function body for all labels on a page and reference these values as label definitions. I would like to place them on the same page as the labels.
    Thanks
    Anne

    I started the application again and now also the Items are not displayed, only the message 'Label not defined', so I probably did something wrong with the computation. Why the correct values were shown during the first run, I do not know, maybe i did not logout in between.
    Here is the debugging information, but I cannot see any error message:
    0.02844 0.00038 Computation point: Before Header 4
    0.02881 0.00032 ...Perform computation of item: P5_CYCLE, type=FUNCTION_BODY 4
    0.02913 0.00060 ...Performing function body computation 4
    0.02973 0.00464 ...Execute Statement: declare function x return varchar2 is begin begin return web_message.show('CYCLE','de'); end; return null; end; begin wwv_flow.g_computation_result_vc := x; end; 4
    0.03437 0.00042 ......Result = Wurf 4
    0.03479 0.00046 ...Session State: Save "P5_CYCLE" - saving same value: "Wurf" 4
    0.03526 0.00027 Processes - point: BEFORE_HEADER 4
    0.03553 0.00027 ...close http header 4
    0.03580
    Edited by: Anne-Marie Rosa on Jun 8, 2012 10:09 AM
    Now the correct value is displayed again in the P5_MYFIELD, because I had to set the item source back to PL/SQL Function body, but I am still getting the chart error and the chart is not displayed.
    Edited by: Anne-Marie Rosa on Jun 8, 2012 10:17 AM

Maybe you are looking for

  • Using Designer to generate Web Applications

    I'm using Designer R1.3 to generate Web applications but example in a textfield i need make a validation how ca i do this using designer without make this using schema manager to correct by hands line by line

  • Applets are not shown

    I have A problem as a beginner. I wrote a HTML script in which some Java Applets were included. After compiling the Applets with Java 1.2 the files were uploaded. But the Applets were only shown on those Computers, on which Java was installed, using

  • I can't see anymore in Robohelp 10 a pdf file in a chm file.

    In fact, I can open the pdf file when the chm file is opened just after its edition. But when I open again my chm file , the pdf file doesn't appear. There is just a small square with a white cross inside. Thank you.

  • Music videos from itunes onto dvd

    How can i make a cd that will play my music videos so that i can play them on a dvd player instead of using my ipod?

  • Report showing vendor having no activity

    Hi All, Do we have any such report where for a co code, we can view vendors list who do not have any activity for a given period & no open items. Please suggest. Regards Deepak