How can I format Search output in zerobane studio - configuration

Would like the output of my searches to be really visible in zerobane studio.
I am using the default tomorrow.lua | tomorrowNight theme.

I had to edit the Selection variable in the tomorrow.lua file.

Related

Facing problems while debugging python file which also includes html form file in Visual Studio 2019 IDE. Using XAMPP for displaying the html values

python file including html file in visual studio 2019
As shown in the above pic, I have started the debug in the 7 line by putting breakpoints in it.
But in the output window it's not showing the desired output i.e firstname value which I have inserted in the html form.
And I'm using XAMPP server to display the html forms values in python.
You do not write any print method to return the value. The output window only show the return value you specify and is not obligated to display the parameter value automatically under the code. If you want to display the value of a parameter, that is the job of the autos window or watch window under debug mode. If you want to show the value to the output window, you should use print to return its value.
So you have to use the print method to return parameter value to the output window.
use these:
import cgi,cgitb
form=cgi.FieldStorage()
first_name=form.getvalue('first_name')
print(first_name)
last_name=form.getvalue('last_name')
print(last_name)
if form.getvalue('gender'):
gender=form.getvalue('gender')
else:
gender="Not set"
print(gender)
.....

How do I create a csv file in SSRS with a .txt extension in the file name?

I have a report where I have added a data driven subscription that writes the report to a folder location on a daily schedule. The report is rendered as csv. the file name comes as MyReport1234.csv.
I need this to be Myreport1234.txt. How can I do this in SSRS?
I use SSRS 2008 R2 btw
found a solution for this:
Create a data driven subcscription
on Step 3, just write SELECT 1 or if you're trying to generate a dynamic file you could embed the logic for this in your select statement and give it an alias like SELECT 'Myreport1234.txt' as [FileName]
on Step 4, either Specify a static file name, or get the value from the database using the column "FileName" which you created in the previous step.
set the Render Format to CSV
This is the important step >> File Extension must be set to False. This will stop the renderer from adding the default extension for the renderer of your choice. leaving whatever thats on the filename to appear as the file extension.

Search file names that contain a string

I have a module named flume and file names that include that module name, like flumeIndexController, flumePlugin etc. Now I've decided to rename the module to oozie so I want to have these files renamed to include new module's name like oozieIndexController, ooziePlugin.
How can I get a list of files than include the flume string (in file name) possibly using built-in search or through any other option?
Navigate | File... Ctrl + Shift + N using Default keymap.
You can narrow your search results (just specify parts of the path, e.g. /abc/ and it will show results in a folders that match such pattern/abbreviation). Alternatively -- just do a post-filtering by excluding unwanted results (see below).
This window has only 2 buttons -- one of which will display results in a more traditional and permanent "Search results" tool window (the one that you see when you do Find in Path and alike).

Exporting BIRT report into CSV

I am Using BIRT for reporting in my project.
The report shows correct value for amount(String) as 123456789123, but when i try to export the same report into csv, the csv file shows same amount as 1.234E11.
I want to value as 123456789123 in csv too.
Please help
Thanks
I imagine this is probably an issue with viewing it in Excel. Exporting data does not export format codes. Open the csv in notepad and you will see the correct data. If you export the report to excel you can set a custom format code like #####0 in the Format Number property in the properties editor for the data item.
If the number is too large excel will display the value like that. If you expand the column and set the column to number under format cells it will display correctly. You will need to save it as an excel workbook.
We just had this problem with the our BiRT reporting tool. When we opened the exported file in a text editor the number was formatted in scientific notation. This was a bug with one of Birt's custom formatters.
We had to look at org.eclipse.birt.report.engine.dataextraction.impl.CommonDataExtractionImpl and change the line
valueFormatters[i] = new NumberFormatter( patterns[i], this.locale );
to
String pattern = patterns[i] == null ? "Unformatted" : patterns[i];
valueFormatters[i] = new NumberFormatter( pattern, this.locale );
Setting the pattern to "Unformatted" made default format stay as a normal integer rather than scientific notation (via a decimal formatter).

Appending timestamp in business objects scheduled reports

Can we append timestamp in the format 'mmddyyyy' to business objects reports name generated by scheduler. I know we can append file extension using '%EXT%'. I am looking for something similar.
Thanks for any help
I figured out this one:
I have to pass : RPT_NAME_%SI_STARTTIME%.%EXT%
This will generate only in yyyy-MM-dd-hh-mm-ss.fileextension format though
The format of the returned date is defined by your default locale. This may be examined using the Regional Settings in the control panel.
See this