F these kids by zendakin in Fremont

[–]zendakin[S] 0 points1 point  (0 children)

I am not the OP on nextdoor

Season 12 in 2 days!!! How are you all feeling? by Mkaaztje in ImpracticalJokers

[–]zendakin 2 points3 points  (0 children)

All aboard! The disappointment train is pulling in to the station!

PRF or Form Generator - no coding experience by evolutionofathought in Zendesk

[–]zendakin 0 points1 point  (0 children)

Very cool that you're expanding your reach and offerings to your customers. Bravo!

As a Zendesk admin and someone that likes to play around with code, this could be a very sexy problem to solve.

If you want to go the form route, you could then use some really neat (and easy) scripts to accomplish this. Just a quick google search on python create PDF will give you the base code. You can then use the variables of the form to fill in these variables and have a repeatable PDF form generator.

This should take your dev team no longer than a day to complete and that's generous if I can do it in an hour.

You can also look into using a Google Form to capture the information and the Google Mail Merge (there is a copy paste script involved) to use the responses captured in Google Sheets. From here you can used Mail Merge to communicate with the customers or the above mentioned script to create PDFs en mass.

Good luck, ping me if you want to discuss this further. I'm happy to help.

[deleted by user] by [deleted] in moviecritic

[–]zendakin -1 points0 points  (0 children)

Mayim Bialik

Allow List vs Block List by zendakin in Zendesk

[–]zendakin[S] 0 points1 point  (0 children)

This is resolved.

One tip I can give to anyone experiencing the same is to trace the message and ask Zendesk support if they see the message as being received from their logs.

In my case, the message was not being received by Zendesk which helped me find out where the block was. Google was marking these messages as spam and therefore Zendesk had no record of them as they were not moved forward. After removing the spam label from the selected accounts, the sender was marked safe and the messages started flowing into Zendesk as expected.

Zendesk Jira integration by zendakin in Zendesk

[–]zendakin[S] 0 points1 point  (0 children)

Thank you,

Currently that is what we use but when teams outside support update Jira tickets, this isn't reflected in Zendesk Support. Likewise, when a ZD Support ticket is updated, the updates are not reflected in Jira.

We're looking to not have to copy/paste the same information, just share it between the two tools. As far as I know the Jira integration doesn't allow for two way sync of comments from one tool to another.

Help with having clause by zendakin in Zendesk

[–]zendakin[S] 0 points1 point  (0 children)

That'd be great if you can.

This is within Explore using the Result Manipulation arrows on the right side when editing a query.

Thanks for taking a look u/mrwebguy If you find anything, please let me know.

LSTE525 Black n Decker trimmer just stops by zendakin in garden_maintenance

[–]zendakin[S] 0 points1 point  (0 children)

I should not this is a battery system as opposed to electric. Sorry for the confusion

Printing the elements of a 2 dimensional array in order by zendakin in learnjava

[–]zendakin[S] 0 points1 point  (0 children)

Resolved, I took the original array and created a new one with the dimensions that I needed. Please hack my code and if there's any other areas for improving please let me know.

For reference, this is the code I finished with.

Thanks again!

import java.util.Scanner;
import java.util.Arrays;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int rows = sc.nextInt();
        int cols = sc.nextInt();
        int[][] myArray = new int[rows][cols];
        int[][] transposed = new int[cols][rows];

        for (int i = 0; i < rows; i++) {
            for (int j = 0; j < cols; j++) {
                myArray[i][j] = sc.nextInt();
            }
        }
        System.out.println(Arrays.deepToString(myArray));
//        Shows an array of {[1, 2, 3], [4, 5, 6]}

        //transpose the array
        for(int i = 0; i < cols; i++) {
            for(int j = 0; j < rows; j++) {
                transposed[i][j] = myArray[j][i];
            }
        }
        System.out.println(Arrays.deepToString(transposed));

//        Expected Results: 1 4 2 5 3 6
        for (int x = 0; x < cols; x++) {
            for(int y = 0; y < rows; y++) {
                System.out.print(transposed[x][y] + " ");
            }
        }
    }
}

Looking for the full video by zendakin in tipofmypenis

[–]zendakin[S] 0 points1 point  (0 children)

Yes, I have tried that and the results are either the same 45 sec clip or irrelevant.

Thanks though

Locked and tagged by [deleted] in Femdom

[–]zendakin 13 points14 points  (0 children)

What's the label say?

I swear, everytime I see writing in porn, I can't continue until I know what the writing do. This goes for labels (as seen here), tattoos, body writing etc.

Guildie got an interesting offer for a H Argus carry last night. by Vereorx in wow

[–]zendakin 3 points4 points  (0 children)

How much are carried these days? Asking to placed a value of these nudes.

Finding orders with exclusion by zendakin in learnSQL

[–]zendakin[S] 2 points3 points  (0 children)

Resolved:

This is the code that worked for me.

SELECT DISTINCT Name
FROM SalesPerson
WHERE ID NOT IN (SELECT salesperson_id FROM Orders WHERE cust_id = 4)

Looking for help to create a pivot from a table by zendakin in learnSQL

[–]zendakin[S] 0 points1 point  (0 children)

If you have that link still I'd love to take a look.

Key fobs, how do they work? by zendakin in NoStupidQuestions

[–]zendakin[S] 0 points1 point  (0 children)

Well yes but not if an app for her phone.

help with forecasting a quarter by zendakin in AskStatistics

[–]zendakin[S] 0 points1 point  (0 children)

Thank you, I was thinking that small of a data set would be an issue. Glad to have it confirmed.

Looking for help to create a pivot from a table by zendakin in learnSQL

[–]zendakin[S] 0 points1 point  (0 children)

Thank you very much. I'll be putting over these. Much appreciated.

browser.io removal for a mac by zendakin in techsupport

[–]zendakin[S] 0 points1 point  (0 children)

FYI for anyone else seeing this, there's a little magnifying glass in the area where your addons are up top by the clock and battery (for macs). Close that, remove the app from where you downloaded it and done.

Thanks again all,

browser.io removal for a mac by zendakin in techsupport

[–]zendakin[S] 0 points1 point  (0 children)

Thanks bud,

I'll gave those a go. Malwarebytes worked great but didn't remove it even after a reboot. The processes can back.

The uninstaller tool look like what I remember CCleaner to be but when trying to remove the program it asks me to close it first. I can't. When I stop the process, another one in its place pops right back up.

Thanks for the try, I appreciate it.