Skip to content

Instantly share code, notes, and snippets.

View AlfiyaZi's full-sized avatar
🎯
Focusing

Ziganshina Alfiya AlfiyaZi

🎯
Focusing
  • Bremen
  • 04:18 (UTC -12:00)
View GitHub Profile
@AlfiyaZi
AlfiyaZi / about.md
Created November 18, 2012 18:52 — forked from halyph/about.md
Programming Achievements: How to Level Up as a Developer
@AlfiyaZi
AlfiyaZi / about.md
Created November 18, 2012 19:02 — forked from fredgalvao/about.md
Programming Achievements: How to Level Up as a Developer

Programming Achievements: How to Level Up as a Developer

  1. Select a particular experience to pursue.
  2. Pursue that experience to completion. (Achievement unlocked!)
  3. Reflect on that experience. Really soak it in. Maybe a blog post would be in order?
  4. Return to Step 1, this time selecting a new experience.

This gist is a fork of the gist from this blog post.

@AlfiyaZi
AlfiyaZi / c_sharp_for_python.md
Created May 24, 2016 07:43 — forked from mrkline/c_sharp_for_python.md
An intro to C# for a Python developer. Made for one of my coworkers.

C# For Python Programmers

Syntax and core concepts

Basic Syntax

  • Single-line comments are started with //. Multi-line comments are started with /* and ended with */.

  • C# uses braces ({ and }) instead of indentation to organize code into blocks. If a block is a single line, the braces can be omitted. For example,

@AlfiyaZi
AlfiyaZi / BitmapToDicom.cs
Created August 18, 2016 22:03 — forked from mdubey82/BitmapToDicom.cs
Create dicom dataset from secondary capture image
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Runtime.InteropServices;
using System.Text;
using Dicom.Imaging;
using Dicom.IO.Buffer;
namespace Dicom
{
@AlfiyaZi
AlfiyaZi / 0-startup-overview.md
Created April 24, 2017 20:50 — forked from dideler/0-startup-overview.md
Startup Engineering notes
@AlfiyaZi
AlfiyaZi / tensorflow_self_check.py
Created October 19, 2017 09:07 — forked from mrry/tensorflow_self_check.py
TensorFlow on Windows self-check
# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
Verifying my Blockstack ID is secured with the address 1Hkfbcr77Xi4TWZfv5SmxzSjtotpu18E3P https://explorer.blockstack.org/address/1Hkfbcr77Xi4TWZfv5SmxzSjtotpu18E3P
@AlfiyaZi
AlfiyaZi / graph.py
Created December 8, 2017 17:33 — forked from theonewolf/graph.py
Dijkstra's Recipe in Python Example (shamelessly stolen; links embedded)
#!/usr/bin/env python
graph = {
'N1': {'N2': 1},
'N12':{'N13':1},
'N2': {'N4': 1, 'N13':1},
'N4': {'N5': 1, 'N12': 1},
'N5': {'N6': 1},
'N6': {'N7': 1},