Invalid CSS after "... floor(math": expected expression (e.g. 1px, bold) - gulp

I know that similar question exists but it doesn't solve my problem. I want to work with not my project. When I try run gulp watch, it display me this errorsenter image description here. Probably problem is with env configuration because this code works with other person. Any idea?

Related

SSRS - Accessing System.Drawing.Image.FromStream

I am currently trying to center an image on screen in SSRS. While this functionality is not directly support it is possible to provide custom padding based on the image size. This is an external image provided by a database, so the image changes repeatedly and I cannot hard code a padding. I am trying to retrieve the width of the image using:
=System.Drawing.Image.FromStream(new System.IO.MemoryStream(CType(System.Convert.FromBase64String(Fields!HomeLogoImage.Value), Byte()))).Width
However when this is entered into an expression place holder, "FromStream" is not recognised.
I can confirm that I have added the reference to the system.drawing assembly and I am using version 4.0.0.0.
I am returning to SSRS for the first time in quite a while so any advice on this would be greatfully received. Or even if there is a way to center images without resorting to the System.Drawing method, I would love to hear.
Many thanks.
Try the following. I've tested this against some .png database images I had lying around and it seemed to work.
=System.Drawing.Image.FromStream
(new System.IO.MemoryStream(CType(Fields!Image.Value,Byte())))
.Width
EDIT after OP update
To do the same with an external image you can use the following
=System.Drawing.Image.FromStream
(new System.IO.FileStream(Fields!HomeLogoImage.Value, IO.FileMode.Open))
.Width
This assumes that the HomeLogoImage field contains a valid path and filename to the image.
However You will probably encounter a permissions error. I have not done this myself so I can only point you to a link that discusses the issue with possible solutions. I've not done anything other than a quick search to find this so better solutions may be available
https://social.msdn.microsoft.com/Forums/sqlserver/en-US/31490332-c2f7-48a4-9928-29916ce002b4/request-for-the-permission-of-type-systemsecuritypermissionssecuritypermission-mscorlib?forum=sqlreportingservices

problem in using emmet in visual studio code

I am experiencing a strange problem with emmet in vs code.
after typing some emmet abbreviation and pressing tab I get a warning saying "command emmet.expandAbbriviation not found"
I have double-checked my settings.json and "emmet.triggerExpansionOnTab": true is there in the file.
I have been using vs code for a month but never before I had any problem with emmet, but suddenly this problem has come up
Update: I have noticed that suddenly other extensions like live server have also stopped working and also I'm no longer getting autocomplete suggestions from MDN docs.
Judging from this emmet won't work issue, the problem might have begun as a result of the last update.
Search #builtin in the Extensions view and make sure the Emmet extension is enabled.
Open the VS Code. Go to the Vscode settings by pressing the setting icon or ctrl+.
In the setting tabs, click on the HTML option.
Click on the “Edit in settings:json” hyperlink to edit the settings in JSON format. Click on the Edit in settings.json to edit and fix emmet problems.
Inside the curly braces, enter the following code under the already written JSON code:
“emmet.triggerExpansionOnTab”: true,
“files.associations”: {“*html”: “html”}
5.Save the file. Now if you try to apply emmet in your code, it will work smoothly!!
Because the error you are reporting reads like this:
"command emmet.expandAbbriviation not found"
You may have a typo in that command which would explain the interpreters inability to find the command. Of course it could be that you have the typo here in this post while your settings in VS Code are correct.
Either way, the correct spelling is emmet.expandAbbreviation. Notice the letter before the 'v' is an 'e' not an 'i'.
This link here seems to have the same issue..
VS Code - command 'emmet.expandAbbreviation' not found
I had the same issue as well and could not find much help..
But what fixed it for me was using a previous version.. so something with the never version might not work with my settings I guess (and some them I can't change like my Mac OS..;-).. as my mac is 2015 edition).. Anyways if you are still having this issue.. this link is what worked for me..
https://code.visualstudio.com/updates/v1_55
Download an earlier version and you should be fine... Hope it works for you.
I added a vetur.config.js file to my root directory, and it is working fine.
I can tab as per normal. HTML autocomplete is also back.
got the reference here:
https://vuejs.github.io/vetur/reference/#example

How can I fix these Linter Issues in Atom?

I'm currently learning WebDev with an Instructor from Udemy and I noticed that the behavior of my Atom is not the same as here (Even though I installed the same packages as she did).
The following pictures are from the instructor's screen
When I create an error like the picture below, I get a linter suggestion at the bottom, however, I do not get the pop-up annotation like the picture: Picture1
I also do not receive an alphabetical order suggestion like the picture below in CSS either:
Picture2
I don't receive any errors on HTML pages or see a red dot on the left like this:
Picture3
Instructor's Packages (besides the default ones) : Atom Packages
How can I fix my atom linter?
PS: I did write in the Q&A section of the course but no reply, I'm on Windows 10 if it makes a difference (the instructor is using a mac).
Thanks in advance for the help.
In the first one you should use
h1 { color: red; }
instead of:
h1 { color red; }
With number two I am not quite sure what is meant there and that's why I don't want to say anything wrong.
In number 3, 2 same Id's were used. If you want to use more than one then you should use class instead of id. In CSS you address id's with # and classes with ..
Turns out it was all because Node.JS was not installed.
Once I installed it and ran it, everything started to work.

browser error while declaring CSS3 variables, Expected RBRACE, This rule looks for recoverable syntax error

I am trying to use variables in my CSS3 file, I have used following code
:root{
--nvc-theme: green;
--nvc-themelite: grey;
}
this is the css I am using to declare two variables in my project but when I compile CSS with csslint it is showing error
ERROR: Expected RBRACE at line 17, col 3. This rule looks for recoverable syntax
errors. (errors) Browsers: All
and it is also showing
WARNING: Rule is empty. Rules without any properties specified should be removed.
(empty-rules) Browsers: All
I know this warning because in the root element I have used only variables I didn't declare any css properties just variables so it is showing a warning, but how can I overcome this situation. Any solution helps a lot. Thank you
Given an outstanding issue on github for this problem, and another issue asking "Is anyone here?" with no response from the devs and no real way to merge fix in, it doesn't seem this will be fixed any time soon.
So your only real option is to migrate to a different lint such as stylelint

abp.auth.gantedPermissions is always empty

I am trying to follow these examples:
http://aspnetboilerplate.com/Pages/Documents/Authorization
Everything works fine in backend, but in JavaScript frontend, abp.auth.gantedPermissions is empty.
I'm probably missing something but I have no clue what it could be.
abp.auth.gantedPermissions is misspelled. It should be abp.auth.grantedPermissions.
If you just misspelled it when writing the question, you can try the following:
Add AbpZeroCoreModule as a dependency of your Core module. The reason this fixes the issue is that, if the AbpZeroCoreModule is not referenced, the NullPermissionChecker is used and as the name implies, it doesn't provide any permissions at all.