Skip to content

Instantly share code, notes, and snippets.

View aurelkurtula's full-sized avatar
🎯
Focusing

aurel kurtula aurelkurtula

🎯
Focusing
View GitHub Profile
@aurelkurtula
aurelkurtula / st:sass:mediaquerys.txt
Last active December 23, 2024 11:03
st:sass:mediaquerys
@mixin breakpoint($point) {
@if $point == alpha {
@media (max-width: 1000px) { @content; }
}
@else if $point == beta {
@media (max-width: 1250px) { @content; }
}
@else if $point == gamma {
@media (max-width: 710px) { @content; }
}
import './style.css'
// Define an interface for a Pokemon object
interface Pokemon {
name: string;
image: string; // Add more properties as needed
}
// A class for creating HTML elements for Pokemon objects
class PokemonDOM {
{"status":"ok","totalResults":0,"articles":[{"title":"Career Horoscope Today, February 8, 2023: Zodiacs may expect career changes - Hindustan Times","author":"Neeraj Dhankher","source":{"Id":null,"Name":"Hindustan Times"},"publishedAt":"2023-02-07T21:30:12Z","url":"https://www.hindustantimes.com/astrology/horoscope/career-horoscope-today-february-8-2023-zodiacs-may-expect-career-changes-101675783158952.html"},{"title":"Raveena Tandon opens up about her broken engagement with Akshay Kumar: People have divorces, what’s the b - Indiatimes.com","author":"etimes.in","source":{"Id":"the-times-of-india","Name":"The Times of India"},"publishedAt":"2023-02-07T20:12:00Z","url":"https://timesofindia.indiatimes.com/entertainment/hindi/bollywood/news/raveena-tandon-opens-up-about-her-broken-engagement-with-akshay-kumar-people-have-divorces-whats-the-big-deal/articleshow/97708635.cms"},{"title":"Thunivu uncensored version streaming on THIS OTT platform - 123telugu","author":null,"source":{"Id":null,"Name":"123telugu.com"},
@aurelkurtula
aurelkurtula / dabblet.css
Last active August 6, 2020 06:56
hover with animation
/**
* hover with animation
*/
article{
width: 150px; height: 150px;
background: #ede;
display: block
margin: 150px;
overflow:hidden;
@aurelkurtula
aurelkurtula / dabblet.css
Created March 5, 2013 18:25
The first commented line is your dabblet’s title
/**
* The first commented line is your dabblet’s title
*/
div{
width: 200px;
height: 200px;
background: red;
margin: 80px;
border-radius: 20px;
@aurelkurtula
aurelkurtula / README-Template.md
Created September 6, 2018 09:12 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

body{
background: green;
}
@aurelkurtula
aurelkurtula / index.js
Last active November 17, 2017 03:37
This is to illustrate how react and readux work together, it's the full code explained in this tutorial: https://dev.to/aurelkurtula/a-beginners-introduction-to-working-with-redux-in-react-13k
import ReactDOM from 'react-dom';
import React, { Component } from 'react';
import { Provider, connect } from 'react-redux';
import { createStore, compose } from 'redux';
const todos = (state = [], action) => {
switch (action.type) {
case 'CREATE_TODO':
return state.concat([action.text])
default:
@aurelkurtula
aurelkurtula / file1.txt
Created November 12, 2017 03:57
POSTING FROM EXPRESS
EXPRESS
@aurelkurtula
aurelkurtula / dabblet.css
Created December 2, 2013 14:52
Elegant layout
/**
* Elegant layout
*/
*{
margin: 0 ; padding: 0;
}
body{
background: url(http://static.tumblr.com/ajnepim/ERnmskide/pw_maze_white.png);
}