Skip to content

Instantly share code, notes, and snippets.

View EduardoJM's full-sized avatar

Eduardo Oliveira EduardoJM

View GitHub Profile
@sibelius
sibelius / LookingForTheFirstJob.md
Last active July 3, 2023 08:48
Looking for the First Job state

Looking for the First Job

Versão em Português

This is a very common state for people in college, people before/after a bootcamp, or people from another area.

The first job will be the hardest one to get, but it will get easier over time.

The interview will be harder than the job itself

@rambabusaravanan
rambabusaravanan / client.py
Created November 13, 2017 14:20
Simple TCP Streaming Server Client in Python
# Streaming Client
import socket
HOST = 'localhost'
PORT = 50007
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((HOST, PORT))
while True:
@clarkwinkelmann
clarkwinkelmann / Blender.desktop
Created April 2, 2015 18:54
Blender desktop file, compatible with "open with..." and prevents duplication of icon in launcher
[Desktop Entry]
Name=Blender
Comment=To place in /usr/share/applications/ or $HOME/.local/share/applications/
Exec=/PATH/TO/BLENDER/FOLDER/blender %U
Terminal=false
Type=Application
Encoding=UTF-8
Icon=/PATH/TO/BLENDER/FOLDER/icons/scalable/apps/blender.svg
StartupNotify=true
StartupWMClass=Blender