Thursday, January 14, 2021

PFX File from CER/PEM(Public) and Key File(Private)

https://support.globalsign.com/ssl/ssl-certificates-installation/install-pfxpkcs12-internet-information-services-iis-7


openssl pkcs12 -export -in linux_cert.pem -inkey privateky.key -out output.pfx


PFX file has a Password - This password is for protecting contents of this container to be visible to others except those who know password


Private Key - While Making a Private Key -We too give a Passphrase for encryption


PrivateKey Passphrase and PFX Container Passphrase are different.


https://stackoverflow.com/a/808742/2413870 


Wednesday, January 13, 2021

Authorization Basic




<credentials>
If the "Basic" authentication scheme is used, the credentials are constructed like this:
  • The username and the password are combined with a colon (aladdin:opensesame).
  • The resulting string is base64 encoded (YWxhZGRpbjpvcGVuc2VzYW1l).

Tuesday, January 5, 2021

Salesforce Documentation

 Tooling API         Query           SObject


REST API Developer Guide
Build versatile and lightweight solutions that integrate your Salesforce data using REST API. This simple RESTful interface is powerful, convenient, and great for writing mobile and web apps.
Documentation|Force.com|Integration
https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/intro_what_is_rest_api.htm


Object Reference for Salesforce and Lightning Platform
Get details on standard objects so that you can interface with your Salesforce data.
Documentation|Force.com|Database, Objects, Query, and Search
https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_concepts.htm


Salesforce Field Reference Guide
Use this concise reference to quickly look up details of the standard fields for most of the major objects in Salesforce.com.
Documentation|Force.com|Database, Objects, Query, and Search
https://developer.salesforce.com/docs/atlas.en-us.sfFieldRef.meta/sfFieldRef/salesforce_field_reference.htm


SOQL and SOSL Reference
Query and search your org’s data for specific information with Salesforce Object Query Language and Salesforce Object Search Language.
Documentation|Force.com|Database, Objects, Query, and Search
https://developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_sosl_intro.htm


Tooling API
Integrate Salesforce with your other systems using Tooling API. Metadata types are exposed as sObjects, so you can access one component of a complex type. This field-level access speeds up operations on complex metadata types. You can also build custom development tools for Salesforce applications. REST and SOAP are both supported
Documentation|Force.com|Integration
https://developer.salesforce.com/docs/atlas.en-us.api_tooling.meta/api_tooling/intro_api_tooling.htm

----------------------------------------------------------------------------------------------


Salesforce Object Query Language (SOQL)
Salesforce Object Search Language (SOSL)

/vXX.X/search/?q=SOSL search string
A SOSL statement that is properly URL-encoded
SEARCH API - Search Resources
Use the "Search" resource to execute a SOSL search




Use the "Query" resource to execute a SOQL query that returns all the results in a single response

Float, Flexbox, Grid, Bootstrap, CSS, Less, SASS

 Float  Flexbox Grid Bootstrap


Tables as layout ??? ---- Very Bad - Very Primitive

Next Option was ::Float::
Images /text - Float was originally designed for text to be wrapped around image

img  {
  float: left_Which side it goes
  clear : which_Side_They are not allowed
}


//h1 in general
h1 {
}

//h1 Nested inside div
div h1{
}

.greet , .welcome .{
font: ;
    color : black;
margin-
}


float when applied to div inside a section becomes responsive kind of 
and we get a layout, You also need holding Container 1st which will contain all div's.


<section>
<div> clear:both  ---- Top
<div> float: left   ---- Left
<div> float: none ---- Centre
<div> float:right  ---- Right
<div> clear:both  ---- Footer
<section>


Float Clear --> Flawed Logic  --> Hackish



-------------------------------------------------------------

Multiple classes on 1 element in Html attribute - space separated - Inside HTML


Inside .css File
Define Multiple Class  - Comma Separated - All styles shared by multiple classes
Nested Class - Space separated
Pseudo Classes  ??? ::after ?
Selectors ???
Less SASS CSS ???  


https://medium.com/@saanstone/understanding-css-precedence-specificity-d8ca24712417

https://stackoverflow.com/questions/25105736/what-is-the-order-of-precedence-for-css

https://www.w3schools.com/css/css_combinators.asp

Descendant vs Child Selector


Azure - Pipeline - Add Approver for Stage

https://learn.microsoft.com/en-us/azure/devops/pipelines/process/approvals?view=azure-devops&tabs=check-pass