Skip to content

Instantly share code, notes, and snippets.

View edencakir's full-sized avatar
:shipit:
We are hiring!

Enes edencakir

:shipit:
We are hiring!
View GitHub Profile
@edencakir
edencakir / log.txt
Created July 20, 2018 12:09
airtest crash log
rocess: AirtestIDE [9931]
Path: /Applications/AirtestIDE.app/Contents/MacOS/AirtestIDE
Identifier: org.qt-project.Qt.QtWebEngineCore
Version: 0.1.4 (0.1.4)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: AirtestIDE [9931]
User ID: 501
Date/Time: 2018-07-20 15:08:03.222 +0300
@edencakir
edencakir / rf.c
Last active May 11, 2017 14:42
rf code test
#include <SPI.h>
const int MOSIp = 11;
const int MISOp = 12;
const int SCKp = 13;
const int SSp = A4;
byte INITIALIZATION_COMMANDS[43][2] = {
{0x86, 0x00}, //skipped read section
{0x85, 0x00},
getDataFromServer() {
fetch('http://178.211.49.209:9000/api/getEverything')
.then(response => response.json())
.then(responseJson => {
console.log('fetched data', responseJson);
this.setState({dataSource: ds.cloneWithRows(responseJson.response.categories)});
}).catch(error => console.log(error));
}
}
render() {
if (this.state.loading) {
return (
<View style={{flex: 1, justifyContent: 'center', alignItems: 'center'}}>
<ActivityIndicator style={{marginTop: -60}} size="large"/>
</View>
)
}
return (
<View style={styles.container}>
this.marketList = [
{
header: 'Süpermarketler',
imageSource: "http://www.clker.com/cliparts/r/t/S/Z/h/b/shopping-cart-md.png",
context: [
{
title: 'Migros',
companyImage: "http://thebrandage.com/wp-content/uploads/2016/05/2012-05-10_14-07-15_media_markt.png",
catalogImages: [
"https://www.migros.com.tr/assets/insert/637/insert.png",
@edencakir
edencakir / assignment.py
Created January 27, 2017 19:38
Making Data Management Decisions
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Thu Jan 27 11:30:33 2017
@author: mllearner
"""
import pandas
import numpy
@edencakir
edencakir / submission.py
Created January 26, 2017 20:46
Coursera Data Analysis First Assignment
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Thu Jan 26 21:44:11 2017
@author: mllearner
"""
import pandas
import numpy # Ignore the warning. going to be used later on.