Skip to content

Instantly share code, notes, and snippets.

View SirmaXX's full-sized avatar
🏠
Working from home

Deniz Balcı SirmaXX

🏠
Working from home
View GitHub Profile

Yapay Zeka - 2022

(Aşağıdaki fotoğraf Yapay Zeka tarafından üretilmiştir.)

Alt

Yapay Zeka'da baş döndürücü gelişmeler yaşanırken, toplumumuzda hangi tekniklerin daha heyacan verici bulunduğunu anketle ölçtük. Yetmiş kişinin katıldığı oylmanın sonuçları aşağıda görülüyor. 👇

Screenshot | 40%

@hungneox
hungneox / pget.go
Created December 26, 2017 22:43
Download file with golang
package main
import (
"fmt"
"io"
"net/http"
"os"
"path/filepath"
"runtime"
"sort"
@justgage
justgage / HowToElm.md
Last active January 17, 2020 23:49
How To Elm

How to Elm

This is a basic guide on how to learn Elm rather than actually teach you. I'm going to mostly link to resources that I feel are valuable and try to "teach you how to fish".

The main purpose is to accelerate your learning and save you a lot of googling and weeding through bad explinations.

Essential links

@wenzhixin
wenzhixin / ubuntu14.04-command-line-install-android-sdk
Last active January 16, 2024 21:15
Ubuntu 14.04 command line install android sdk
# install openjdk
sudo apt-get install openjdk-7-jdk
# download android sdk
wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz
tar -xvf android-sdk_r24.2-linux.tgz
cd android-sdk-linux/tools
# install all sdk packages
@kirang89
kirang89 / model_relation_ex.py
Created April 7, 2014 18:59
Example for many-to-many relationship with extra columns in SQLAlchemy
import sqlalchemy
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, Integer, String, ForeignKey
from sqlalchemy.orm import sessionmaker, relationship
engine = sqlalchemy.create_engine('sqlite:///:memory:')
Base = declarative_base()