Trick How do I create a paragraph break in Google Form With Form Builder - google-forms

This is Solution to create line break in question google form.
Install Add ons - Form Builder
Create question in google sheet with line break (Only question) - Many question its OK
Open add on form builder click start
then click impor from > google sheet > Select sheet > choose tab / sheet > write range question > Select pattern Q's > Write Enter Rang > Then Get
Click ready to impor > impor selected > OK
Enjoy it
Note: Form Builder Free only can impor max 50 questions permonth, so select priority question, or use another google account.

Related

Web automation with R code

Is it possible to get information from a url by making search on it, under R with any package?
I would like to make a loop for searching different code on the url and click on a precise place to write the code and to download document. A software does that, Actionaz, but I don't manage to make a loop with different code executing one after one.
Thank's,
Xavier
I found on forum "RSelenium" package like you suggest but it is not avalable on the CRAN ? I will see the over packages. I would add some informations of what i would do to know if it's realy possible on not ^^ :
1/open the url : http://hydro.eaufrance.fr/selection.php?consulte=rechercher
2/clic on the search region (precise point on screen)
3/type a name of station the first : "K0120020"
4/Search it on the website by clic on buton search
5/Select the station found with a clic
6/an over clic to get access to the data
7/Select the year on a dawn drop menu
8/Export data by clic on buton export

FF: debugging places.sqlite - logging of different visit_type

i have a question concerning the history file places.sqlite. It's a sqlite file containing several tables. My question concerns the table moz_historyvisits. It has a column "visit_type", which is well explained here:
http://www.forensicswiki.org/wiki/Mozilla_Firefox_3_History_File_Format#moz_historyvisits .
I can read places.sqlite e.g. with "SQLiteBrowser" under Windows.
If i visit a page using the history (visit_type = 2), in places.sqlite each visit is stored. That means if i click the link several times in a short period, each click is recorded in places.sqlite.
If i click the SAME URL using a link in the webpage (visit_type = 1) itself several times in a short period, only the first click is recorded in the places.sqlite.
The requests are in both cases identical, i can check it with our own webserver.
Con someone confirm this behaviour ? Does anyone know why it is like this ?
Thanks.
I'm using FF 46.0.1 on Windows 7 64bit.
Bernd
I think it is explained on the page you linked to:
1 TRANSITION_LINK This transition type means the user followed a link and got a new toplevel window.
When you click a link inside the page that refers back to itself several times, then you do not get a new toplevel window every time.
The top level window stays the same, and therefor of those repeated link clicks, only the first one is counted/recorded.

Creating custom metric with GTM

I am new to GTM V2.
I would like to track PDF downloads using custom metric. I can built custom dimension for the same, but am not able to create custom metric.
I want report similar to below:
PDFname no. of download
xyx 1
abc 5
xyz pdf downloaded 1 time abc 5
PDF name and no. of download are column heading , rest are it values
I want to create metric using GTM v2. I don't want to write JavaScript for the same. I have done above report using event tracking, but want to do the same with custom metric
Please explain in detail on how to create custom metric, using GTM.
Please help me on the same as soon as possible.
In the new version of Google Tag Manager, 'Macros' have been renamed to 'Variables' so I will be referring to them as such.
I implemented a tag which tracks when a PDF is downloaded on my website. I did this by creating a custom Variable. Follow the steps to create the variables required to track PDF downloads.
1) Create a new variable called 'element', make this variable an 'auto-event' variable. Select 'Element' from the Variable Type drop-down menu. Click 'Save Variable'
2) Create a new variable called 'Click Link File Name'. Make this variable a Custom Javascript Variable. Insert the following code into the configure variable field.
function() {
var filepath = {{element}}.pathname.split("/");
var filename = filepath.pop();
return filename.indexOf(".")>-1?filename:'n/a';
}
Click 'Save Variable'
3) Create the Trigger - Name the Trigger "PDF Download"
Event : Click
Configure: Just Links
Enable When: [Page URL] [matches RegEx] .*
FireOn: [Click URL Path] [matches RegEx] .(pdf)$
4) Create the Tag
Product : Google Analytics
Tag Type : Universal Analytics
Configure Tag:
Tracking Id : "Your Tracking Code Here"
Track Type : "Event"
Category : "Click"
Action : "Download"
Label : "{{Click Link File Name}}"
Fire On: "PDF Download"
What this set of instructions will do for you is set up variables able to record the name of your PDF file as well as the ability to track it as an event. The trigger that we set up in step 3 tells GTM to ACTIVATE the tag on every page (.*) and FIRE the tag when the user CLICKS a link ending with the string ".pdf". The tag we set up tells GTM to send an event to your GA Account with the category, action and label listed above. The label of the event will contain the name of the PDF file that was downloaded.
If you want any more customization than this let me know and I will provide you with a solution to track things like
- Which page the PDF was downloaded from

Team foundation User Permission

we are working on a project using C#,5 developers, we are using team foundation to share the code between the developers. each developer can check in and edit only his part and he is allowed to view other developers parts.
we are adding a new member to the group for a temporarily period.
the permission i want to give him is:
- CANT view any source code but his part
- edit and check in/check out for his code.
we dont want him to view any of our code but he will use some of our methods, we only wants him to view these classes. but other classes we want them to be disappeared.
how to do this?
I am using tfs 2010
You need to be project admin to be able to add TFS groups and update permissions/security.
Team Explorer > right click on the team project > Team Project Settings > New > add Group Name e.g. Contractors > Ok > double click on the group name > add the contractor > Ok
Then right click on the individual folders/files in source control > Properties > Security > Add TFS Group > select your new group > select permissions for that group for that folder/file.
You can prevent the contractor from accessing code by checking the Read permission's Deny check box.

Anguilla - Get the version and user information

I have created a command button on the Ribbon Toolbar. When I select an component an click on "Display Info" button, an popup should open telling me about the latest version of the Component, Modified date, and the User who last modified it.
I do get the component with the following code:
var item = $models.getItem(selection.getItem(0));
How can I get the other information from here.
Part 2:
When I try to see the JS code in Firebug, I see them in one single line. I am unable to put an break point on the execute function within my code.
Any suggestions on the above points. ?
To deminify the JS, to allow you to add breakpoints, and also to allow you to use a JS console to inspect objects that are available, you can follow the instructions at http://code.google.com/p/tridion-2011-power-tools/wiki/DeactivateJSMinifier.
User information can be retrieved using the information at How to get the user Id of the currently logged user in Tridion?
I find that the only way to find anything with Anguilla is to use a JS Console like Chrome's.
Once you get the current item - like you do now - you can do stuff like:
var version = item.getVersion();
var lastModifiedDate = item.getLastModifiedDate();
var lastEditorId = item.getStaticRevisorId();
getStaticRevisorId() gives you the Tridion URI of the last user to change the item, and you can then load this to retrieve further information from it.

Resources