Skip to content

Instantly share code, notes, and snippets.

View rampavan90's full-sized avatar
🏠
Working from home

Ram Gajulapalli rampavan90

🏠
Working from home
View GitHub Profile
https://www.youtube.com/kepowob
https://jensimmons.com/
https://gridbyexample.com/
https://lea.verou.me/
https://andy-bell.co.uk/
https://every-layout.dev/
https://briefs.video/
https://www.miriamsuzanne.com/2021/05/02/container-queries/
https://cssbattle.dev/
{
"body": {
"customerId": null,
"customerName": null,
"customerType": null,
"address": null,
"billToCustomerId": null,
"billToCustomerERPId": null,
"customerPoNumber": null,
"customerLocations": null,
@rampavan90
rampavan90 / vscode-settings.json
Created February 27, 2020 10:46
my vscode settings
{
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.enablePreview": false,
"window.zoomLevel": 0,
"workbench.colorTheme": "Night Owl",
"files.trimTrailingWhitespace": true,
"gitlens.views.fileHistory.enabled": true,
"editor.renderWhitespace": "all",
"editor.fontFamily": "'Operator Mono Lig','Source Code Variable', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"[javascriptreact]": {
@rampavan90
rampavan90 / clearfloat.css
Created October 2, 2018 05:08
clearfloat utility class
.group:before,
.group:after {
content: "";
display: table;
}
.group:after {
clear: both;
}
.group {
*zoom: 1;
@rampavan90
rampavan90 / homework_project.rb
Created September 18, 2016 20:05
Home work Project in Ruby(Udemy Course)
#Hash dictionary to store our cities and corresponding area codes
#Please suggest me better solutions and I want to learn from you.
$dial_book = {
"Hyderabad"=>"45",
"Pune"=>"56",
"Mumbai"=>"32",
"Chennai"=>"45",
"Delhi"=>"67",
"Kolkata"=>"89",
"Bengaluru"=>"12",