Skip to content

Instantly share code, notes, and snippets.

View carlosasj's full-sized avatar
💻
Programming...

Carlos Alberto Schneider Júnior carlosasj

💻
Programming...
  • exame.com
  • São Paulo, SP, Brazil
View GitHub Profile
{
"basics": {
"name": "Carlos Alberto Schneider Jr",
"label": "Frontend Developer",
"picture": "https://media.licdn.com/dms/image/v2/C4D03AQENvYTO1D7ucg/profile-displayphoto-shrink_800_800/profile-displayphoto-shrink_800_800/0/1615770297657?e=1756339200&v=beta&t=uaNpcCRLtuofDGCehFt1fiGK_yeNb1FoL_bgBM-XMfU",
"email": "hire@carlosasj.dev",
"phone": "+351 915 521 972",
"website": "",
"summary": "",
"location": {
{
"basics": {
"name": "Thomas Edison",
"label": "Inventor and Businessman",
"picture": "https://example.com/photo.jpg",
"email": "thomas.edison@example.com",
"phone": "(123) 456-7890",
"website": "https://thomasedison.com",
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.",
"location": {
{
"basics": {
"name": "Thomas Edison",
"label": "Inventor and Businessman",
"picture": "https://example.com/photo.jpg",
"email": "thomas.edison@example.com",
"phone": "(123) 456-7890",
"website": "https://thomasedison.com",
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.",
"location": {
{
"basics": {
"name": "Thomas Edison",
"label": "Inventor and Businessman",
"picture": "https://example.com/photo.jpg",
"email": "thomas.edison@example.com",
"phone": "(123) 456-7890",
"website": "https://thomasedison.com",
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.",
"location": {
@carlosasj
carlosasj / LICENSE
Last active October 8, 2018 13:18
Angular Resolved Decorator
MIT License
Copyright (c) 2018 Carlos Alberto Schneider Júnior
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@carlosasj
carlosasj / spread.py
Created May 23, 2017 21:34
Dynamic Spread-dot Operator in Python
'''
This function allow you to describe a "path" on the iterator (itr)
and then create a generator that yields all elements that match
the path. You can use the token "[*]" do describe an iteration over
the list.
Example:
itr = {"foo": {
"bar": ["baz", "foz"]
}}
@carlosasj
carlosasj / simpleNotification.html
Created February 17, 2017 00:13
Simple Browser Notification Example
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Simple Notification Test</title>
</head>
<body>
<button onclick="notifyMe();">Press ME!</button>