project-directory/
├───.git/ # Git configuration and source directory
├───assets/ # Uncompiled raw CSS, JavaScript , images, etc.
│ ├───css/
│ ├───images/
│ ├───js/
│ └───sass/
├───bin/ # Command line scripts
This file contains hidden or 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
| $(document).ready(function () { | |
| window.addEventListener("scroll", function () { | |
| let offset = window.pageYOffset; | |
| console.log(`${offset * 1}px`); | |
| $("#home-header--bg-image").css( | |
| "background-position-y", | |
| `${offset * 0.2}px` | |
| ); | |
| }); | |
| }); |
This file contains hidden or 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
| CREATE TABLE room ( | |
| room_id NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY, | |
| room_no NUMBER NOT NULL, | |
| capacity NUMBER NOT NULL, | |
| status NUMBER NOT NULL, | |
| price FLOAT NOT NULL, | |
| amenities VARCHAR2(526), | |
| room_type VARCHAR2(526) NOT NULL, | |
| floor_no NUMBER NOT NULL, | |
| room_view VARCHAR2(526), |
This file contains hidden or 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
| oh-my-posh --init --shell pwsh --config "C:\Users\aland\scoop\apps\oh-my-posh\current\themes\mytheme.omp.json" | Invoke-Expression |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Vasai</title> | |
| </head> | |
| <style> | |
| * { | |
| line-height: 1.4; |
This file contains hidden or 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
| List imageLinks = ["http://www.sfit.ac.in/images/recruiters/1.png", | |
| "http://www.sfit.ac.in/images/recruiters/2.png", | |
| "http://www.sfit.ac.in/images/recruiters/3.png", | |
| "http://www.sfit.ac.in/images/recruiters/4.png", | |
| "http://www.sfit.ac.in/images/recruiters/5.png", | |
| "http://www.sfit.ac.in/images/recruiters/6.png", | |
| "http://www.sfit.ac.in/images/recruiters/7.png", | |
| "http://www.sfit.ac.in/images/recruiters/8.png", | |
| "http://www.sfit.ac.in/images/recruiters/9.png", | |
| "http://www.sfit.ac.in/images/recruiters/10.png", |
This file contains hidden or 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
| return ExpansionPanelList( | |
| expansionCallback: (int index, bool isExpanded) { | |
| setState(() { | |
| isExpanded1 = !isExpanded; | |
| }); | |
| }, | |
| children: gridTiles.map<ExpansionPanel>((tile) { | |
| return ExpansionPanel( | |
| body: Text("test body"), | |
| headerBuilder: (BuildContext context, bool isExpanded) { |
This file contains hidden or 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
| return Expanded( | |
| child: ListView( | |
| children: gridTiles | |
| .map( | |
| (tile) => ListTile( | |
| contentPadding: EdgeInsets.all(10), | |
| leading: ClipRRect( | |
| borderRadius: BorderRadius.circular(4), | |
| child: Container( | |
| padding: EdgeInsets.all(7), |
To check if GCC already exists by running the following command in your command promt gcc -v
-
Install MSYS2 MSYS2.
-
This will install the linux shell on your Machine.
-
Update packages and mirrors using
pacman -Syu. -
You may have to restart
-
To install GCC copy the following code and paste in the shell
Ctrl + vmight not work -
Note: Keep pressing ENTER to select the default installation instructions.
NewerOlder