Skip to content

Instantly share code, notes, and snippets.

View NotYaz's full-sized avatar

Ivan Kozlov NotYaz

  • Enot LLC
  • St.-Petersburg
View GitHub Profile
lane :ci do
match(
type: 'appstore',
app_identifier: "****.******.*******"
)
increment_build_number
gym(
scheme: "*****",
include_bitcode: true
machine:
xcode:
version: 8.3
environment:
MATCH_KEYCHAIN_NAME: "circle"
MATCH_KEYCHAIN_PASSWORD: "circle"
# GYM_CODE_SIGNING_IDENTITY: "***** (7URLACGPD6)"
dependencies:
pre:
@NotYaz
NotYaz / gist:3669472
Created September 7, 2012 20:46 — forked from Kimtaro/gist:1779371
Installing the wordnet gem on OSX, as of February 9 2012

Getting the wordnet gem, version 0.0.5, working is a little tricky at the moment. It's being rewritten but isn't released yet and the dbd gem is in a similar state.

These steps got it working for me on OS X Lion and MRI 1.8.7. On 1.9.2 convertdb.rb segfaults.

WordNet

Download WordNet from http://wordnet.princeton.edu/wordnet/download/current-version/

$ ./configure
@NotYaz
NotYaz / .gitignore
Created June 17, 2012 11:35 — forked from ErikEvenson/.gitignore
Xcode 4 .gitignore file
.DS_Store
*.swp
*~.nib
build/
*.pbxuser
*.perspective
*.perspectivev3
@NotYaz
NotYaz / PohligHellman.cpp
Created June 1, 2012 17:47
Fast algorithm
//
// main.cpp
// PohligHellman
//
// Created by Иван on 25.05.12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#include <iostream>
#include <vector>
@NotYaz
NotYaz / finalTask.cpp
Created May 28, 2012 17:27
Mathematic task
//
// main.cpp
// finalTask
//
// Created by Иван on 28.05.12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#include <iostream>
#include <math.h>
@NotYaz
NotYaz / CRT+SHANKS.cpp
Created May 26, 2012 12:33
Pohlig-Hellman Second edition
//
// main.cpp
// PohligHellman
//
// Created by Иван on 25.05.12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#include <iostream>
#include <vector>
@NotYaz
NotYaz / pohlig_helman.cpp
Created May 17, 2012 15:03
Pohlig Hellman algiruthm
#include<iostream.h>
#include<math.h>
#include<stdio.h>
//typedef __int64 int;
//Êý×Öת»»Îª¶þ½øÖÆÊý
int num_to_bit(int x,int A[]){
int B[20];
int mul=2;
int j=0;
@NotYaz
NotYaz / Java
Created December 22, 2011 19:18
Multi thread int array sort
import java.util.Arrays;
/**
* Created by IntelliJ IDEA.
* User: John
* Date: 22.12.11
* Time: 16:17
* To change this template use File | Settings | File Templates.
*/