Git Product home page Git Product logo

sre's Introduction

LEARN SRE README

My goal is to complete software engineering within the coming year. The expected target is to finish the goal by Dec 2019 and sooner start applying for jobs.

I always love to code. But because of my procarstination, kids and other financial stuff I was mainly lazying around doing tasks at very slow pace.

I am already working in a firm from last 10 years, but i would like to pursue my skills further, apply for better jobs with better oppurtunities.

Tasks: 26/11/2018 Start the Course CS 101 from Udacity. eDx: CS 50 Course.

So to start with. With my present job, I am going to start and finish my CS101(Udacity) and CS50(eDX) courses.

I will begin with my setup first.

I am going to primarily use emacs for my development work and here is my init.el

(setq inhibit-startup-message t)
(setq package-archives '(("gnu" . "https://elpa.gnu.org/packages/")
			 ("marmalade" . "https://marmalade-repo.org/packages/")
			 ("melpa" . "https://melpa.org/packages/")
			 ("elpy" . "https://jorgenschaefer.github.io/packages/")))
(package-initialize)
(when (not package-archive-contents)
  (package-refresh-contents))
(defvar myPackages
  '(better-defaults
    ein
    elpy
    flycheck
    material-theme
    py-autopep8))

(mapc #'(lambda (package)
	  (unless (package-installed-p package)
	    (package-install package)))
      myPackages)

(ido-mode)
(load-theme 'material t)
(elpy-enable)

(add-hook 'css-mode-hook 'my-css-mode-hook)
(defun my-css-mode-hook ()
  (rainbow-mode 1))
(put 'upcase-region 'disabled nil)

(defun now()
  "insert string for the current time format like '2:34 PM' or 1507121460"
  (interactive) ; Permit invocation in minibuffer
  (insert (format-time-string "%02y%02m%02d%02H%02M")))

(defun today ()
  "Insert string for the current time formated in Indian Style., w.g. Sunday, Spetember 17, 2000 or standard 17-09-2000."
  (interactive)
  (insert (format-time-string "%d-%m-%y")))

(setq python-shell-interpreter "ipython"
      python-shell-interpreter-args "-i --simple-prompt")

;; use flycheck not flymake with elpy
(when (require 'flycheck nil t)
  (setq elpy-modules (delq 'elpy-module-flymake elpy-modules))
  (add-hook 'elpy-mode-hook 'flycheck-mode))

;; enable autopep8 formatting on save
(require 'py-autopep8)
(add-hook 'elpy-mode-hook 'py-autopep8-enable-on-save)
(provide 'init)
;;;init.el ends here

With this, i would be using magit to commit my code to github.

I need to keep updating this document to track my progress.

Resources: The follwing courses will help me with my task

Curated list of study Material: https://github.com/jwasham/coding-interview-university Another original copy is: https://github.com/omps/coding-interview-university https://techdevguide.withgoogle.com/ - Google Technical Guide www.freecodecamp.org You Won't remember all: https://startupnextdoor.com/retaining-computer-science-knowledge/

sre's People

Contributors

omps avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.