Skip to content

Instantly share code, notes, and snippets.

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

Shashikant Dwivedi skdblog1999

🏠
Working from home
View GitHub Profile
@skdblog1999
skdblog1999 / bs-media-queries.css
Created October 10, 2019 07:55
Bootstrap Css Media Queries
/* xLarge Devices col-xl */
@media (min-width: 1200px) {
}
/* Large Devices col-lg */
@media (min-width: 992px) and (max-width: 1200px) {
}
@skdblog1999
skdblog1999 / media-query.css
Created October 7, 2019 15:48 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@skdblog1999
skdblog1999 / dart-practice-problems.md
Last active October 18, 2025 18:31
Dart Practice Problems

Dart Practice Problems

Total Problems - 54

Question Sources - w3resource.com


  1. Write a Dart program to print the following string in a specific format Sample String : "Twinkle, twinkle, little star, How I wonder what you are! Up above the world so high, Like a diamond in the sky. Twinkle, twinkle, little star, How I wonder what you are" Output:
@skdblog1999
skdblog1999 / aws-region-name.csv
Created September 27, 2019 04:26
Aws Regions Naming Table
code name
us-east-1 US EAST (N. Virginia)
us-east-2 US EAST (Ohio)
us-west-1 US WEST (N. California)
us-west-2 US WEST (Oregon)
ca-central-1 Canada (Central)
eu-central-1 EU (Frankfurt)
eu-west-1 EU (Ireland)
eu-west-2 EU (London)
@skdblog1999
skdblog1999 / 1.dart
Last active August 17, 2019 20:34
Dart Programming Practice Problems
main() {
var value = '''
Twinkle, twinkle, little star,
\tHow I wonder what you are!
\t\tUp above the world so high,
\t\tLike a diamond in the sky.
Twinkle, twinkle, little star,
\tHow I wonder what you are
''';
print(value);
<VirtualHost *:80>
ServerName <your-server-name-or-domain-name>
WSGIDaemonProcess <project_name> python-path=/home/ubuntu/<project_name>:/home/ubuntu/miniconda3/envs/<project_name>/lib/python<version>/site-packages
WSGIProcessGroup <project_name>
WSGIScriptAlias / /home/ubuntu/<project_name>/<project_name>.wsgi
<Directory /home/ubuntu/<project_name>/>
Require all granted
Order allow,deny
Allow from all
</Directory>
#!/home/ubuntu/miniconda3/envs/<project_name>/bin
import sys
import logging
logging.basicConfig(stream=sys.stderr)
sys.path.insert(0,"/home/ubuntu/<project_name>/<project_name>/")
from app import app as application
application.secret_key = 'your-secret-key'