Skip to content

Instantly share code, notes, and snippets.

View Zaryob's full-sized avatar
🦾
Sayılmayız Parmak İle Tükenmeyiz Kırmak İle

Suleyman Poyraz Zaryob

🦾
Sayılmayız Parmak İle Tükenmeyiz Kırmak İle
View GitHub Profile

awesome-c

A curated list of awesome C frameworks, libraries and software.

  • git/git - Git Source Code Mirror - This is a publish-only repository and all pull requests are ignored. Please follow Documentation/SubmittingPatches procedure for any of your improvements.
  • SamyPesse/How-to-Make-a-Computer-Operating-System - How to Make a Computer Operating System in C++
  • ggreer/the_silver_searcher - A code-searching tool similar to ack, but faster.
  • grpc/grpc - The C based gRPC (C++, Node.js, Python, Ruby, Objective-C, PHP, C#)
  • bang590/JSPatch - JSPatch bridge Objective-C and Javascript using the Objective-C runtime. You can call any Objective-C class and method in JavaScript by just including a small engine. JSPatch is generally used to hotfix iOS App.
  • [FFmpeg/FFmpeg](https://github.com/
from numpy import exp, array, random, dot
class NeuralNetwork():
def __init__(self):
# Seed the random number generator, so it generates the same numbers
# every time the program runs.
random.seed(1)
# We model a single neuron, with 3 input connections and 1 output connection.

Awesome Pipeline

A curated list of awesome pipeline toolkits inspired by Awesome Sysadmin

Pipeline frameworks & libraries

  • ActionChain - A workflow system for simple linear success/failure workflows.
  • Adage - Small package to describe workflows that are not completely known at definition time.
git filter-branch --subdirectory-filter . -- --all
git reset --hard
git gc --aggressive
git prune
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
final appTitle = 'Main Page';
@override
Widget build(BuildContext context) {
return MaterialApp(
```
import 'dart:convert';
import 'package:http/http.dart' as http;
import 'package:flutter/foundation.dart';
/*
Future<List<Publish>> fetchAll(http.Client client) async {
final response =
await client.get('https://api.themoviedb.org/3/trending/all/day?api_key=f476c933beeb792de073665402a501ad');
return compute(parseMovies, response.body);
import 'dart:convert';
import 'package:http/http.dart' as http;
import 'package:flutter/foundation.dart';
/*
Future<List<Publish>> fetchAll(http.Client client) async {
final response =
await client.get('https://api.themoviedb.org/3/trending/all/day?api_key=f476c933beeb792de073665402a501ad');
return compute(parseMovies, response.body);
}
deneme
diff --git a/src/caffe/layers/window_data_layer.cpp b//src/caffe/layers/window_data_layer.cpp
index 1bf3760..f41169d 100644
--- a/src/caffe/layers/window_data_layer.cpp
+++ b/src/caffe/layers/window_data_layer.cpp
@@ -290,7 +290,7 @@ void WindowDataLayer<Dtype>::load_batch(Batch<Dtype>* batch) {
image_database_cache_[window[WindowDataLayer<Dtype>::IMAGE_INDEX]];
cv_img = DecodeDatumToCVMat(image_cached.second, true);
} else {
- cv_img = cv::imread(image.first, CV_LOAD_IMAGE_COLOR);
+ cv_img = cv::imread(image.first, cv::IMREAD_COLOR);
import 'package:flutter/scheduler.dart';
show timeDilation;
timeDilation = 0.65;