Skip to content

Instantly share code, notes, and snippets.

View CesarNog's full-sized avatar
☁️
Developing your Cloud Solution

Cesar Augusto Nogueira CesarNog

☁️
Developing your Cloud Solution
View GitHub Profile
@CesarNog
CesarNog / Calisthenics.md
Last active April 9, 2018 15:48 — forked from bobuss/Calisthenics.md
The 9 Rules of Object Calisthenics / As 9 Regras de Object Calisthenics

[EN-US] Object Calisthenics outlines 9 basic rules to apply when performing the exercise:

  • One level of indentation per method.
  • Don't use the ELSE keyword.
  • Wrap all primitives and Strings in classes.
  • First class collections.
  • One dot per line.
  • Don't abbreviate.
  • Keep all classes less than 50 lines.
@CesarNog
CesarNog / npm-commands.md
Last active June 28, 2017 19:39 — forked from ankurk91/npm-commands.md
Useful npm commands and tricks

npm v3.10 - ◾

Update npm itself

npm install -g npm
# Downgrade to a specific version
npm install -g npm@2
@CesarNog
CesarNog / Android Studio .gitignore
Created February 15, 2017 12:54 — forked from iainconnor/Android Studio .gitignore
A .gitignore for use in Android Studio
# Built application files
/*/build/
# Crashlytics configuations
com_crashlytics_export_strings.xml
# Local configuration file (sdk path, etc)
local.properties
# Gradle generated files
@CesarNog
CesarNog / yesOrNo.py
Created September 6, 2016 14:34 — forked from garrettdreyfus/yesOrNo.py
Dead simple python function for getting a yes or no answer.
def yes_or_no(question):
reply = str(raw_input(question+' (y/n): ')).lower().strip()
if reply[0] == 'y':
return True
if reply[0] == 'n':
return False
else:
return yes_or_no("Uhhhh... please enter ")
@CesarNog
CesarNog / FindTheNumberClosestToZero
Created July 6, 2016 16:44 — forked from tgruber5150/FindTheNumberClosestToZero
This program finds the number in an array that's closest to zero.
import org.junit.Test;
public class BetterProgrammer05122012Test extends junit.framework.TestCase {
public static int[] numbers = new int[] {5, 10, -5, 0, 25, 35};
public static int[] numbers2 = new int[] {5, 10, -5, -2, 0, 25, 35};
public static int[] noNegativeNumbers = new int[] {5, 10, 15, 25, 35};
@Test
public void testBetterProgrammer05122012 () {
@CesarNog
CesarNog / latency.txt
Created January 12, 2016 10:47 — forked from lgarciasbr/latency.txt
Latency Numbers Every Programmer Should Know
Latency Comparison Numbers
--------------------------
L1 cache reference 0.5 ns
Branch mispredict 5 ns
L2 cache reference 7 ns 14x L1 cache
Mutex lock/unlock 25 ns
Main memory reference 100 ns 20x L2 cache, 200x L1 cache
Compress 1K bytes with Zippy 3,000 ns
Send 1K bytes over 1 Gbps network 10,000 ns 0.01 ms
Read 4K randomly from SSD* 150,000 ns 0.15 ms
@CesarNog
CesarNog / aecho.py
Created November 11, 2015 13:30 — forked from dabeaz/aecho.py
Live-coded examples from my PyCon Brasil 2015 Keynote
# aecho.py
from socket import *
import asyncio
loop = asyncio.get_event_loop()
async def echo_server(address):
sock = socket(AF_INET, SOCK_STREAM)
sock.setsockopt(SOL_SOCKET, SO_REUSEADDR, 1)
@CesarNog
CesarNog / median.py
Created February 3, 2015 14:59
Median Python function
_
@CesarNog
CesarNog / remove_duplicates.py
Created February 3, 2015 14:46
Remove duplicates in a list
def remove_duplicates(listNumbers):
total=[]
for i in listNumbers:
if i in total:
continue
else:
total.append(i)
return total
@CesarNog
CesarNog / censor.py
Created February 3, 2015 12:10
Function Censor
def censor(text, word):
asterisk = ''
for letter in word:
asterisk += '*'
newText = text.replace(word, asterisk);
return newText