This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="application/ld+json"> | |
{ | |
"@context": "https://schema.org", | |
"@type": "FAQPage","mainEntity": [ | |
{"@type": "Question", | |
"name": "زمان دقیق اعلام نتایج کنکور سراسری چه زمانی است ؟ | |
", | |
"acceptedAnswer": { | |
"@type": "Answer", | |
"text": "</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -XPUT '/fess.20190727/_settings' -d '{ | |
"index": { | |
"max_result_window": 50000 | |
} | |
}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.no-border { | |
border: 0 !important; | |
} | |
.no-padding { | |
padding: 0 !important; | |
} | |
.no-margin { | |
margin: 0 !important; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@caifagithub I use hint.css and some javascript: | |
clipboard.on('success', event => { | |
if (event.text) { | |
showTooltip(event.trigger, 'copied!'); | |
} | |
}); | |
showTooltip(elem, msg) { | |
var classNames = elem.className; | |
elem.setAttribute('class', classNames + ' hint--right'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-Project –All | Add-BindingRedirect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
routes.MapPageRoute("WebForms", "", "~/WebForms/Default.aspx", false, null, new RouteValueDictionary(new { controller = new IncomingRequestConstraint() })); | |
public class IncomingRequestConstraint : IRouteConstraint | |
{ | |
public bool Match(HttpContextBase httpContext, Route route, string parameterName, RouteValueDictionary values, RouteDirection routeDirection) | |
{ | |
return routeDirection == RouteDirection.IncomingRequest; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tf eula -accept |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
توجه: برای فعال سازی این ویندوز می تونید از سرور kms ما استفاده کنید. برای این کار Command Prompt رو در حالت Elevated Privilege اجرا کنید (همون حالتی که با استفاده از کلیک راست و run as administrator بوجود میاد). بعد دستور زیر رو برای استفاده از سرور kms ما بزنید: | |
slmgr /skms kms.digiboy.ir | |
slmgr /ato |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fess.201707091711/_settings | |
{ | |
"max_result_window": 50000 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string EncodedResponse = Request.Form["g-Recaptcha-Response"]; | |
bool IsCaptchaValid = (ReCaptchaClass.Validate(EncodedResponse) == "True" ? true : false); | |
if (IsCaptchaValid) { | |
//Valid Request | |
} | |
NewerOlder