repo_name
stringlengths
5
122
path
stringlengths
3
232
text
stringlengths
6
1.05M
KhunLam/OC-weibo
OC_weibo/OC_weibo/Classes/Module/Discover/Controller/LKDiscoverViewController.h
<reponame>KhunLam/OC-weibo // // LKDiscoverViewController.h // OC_weibo // // Created by lamkhun on 15/10/27. // Copyright © 2015年 lamKhun. All rights reserved. // #import "LKBaseTableViewController.h" @interface LKDiscoverViewController : LKBaseTableViewController @end
KhunLam/OC-weibo
OC_weibo/OC_weibo/Classes/Module/Main/Controller/LKBaseTableViewController.h
// // LKBaseTableViewController.h // OC_weibo // // Created by lamkhun on 15/10/27. // Copyright © 2015年 lamKhun. All rights reserved. // #import <UIKit/UIKit.h> #import "LKVistorView.h" @interface LKBaseTableViewController : UITableViewController @end
KhunLam/OC-weibo
OC_weibo/OC_weibo/Classes/Module/Main/Controller/LKTabBarViewController.h
// // LKTabBarViewController.h // OC_weibo // // Created by lamkhun on 15/10/26. // Copyright © 2015年 lamKhun. All rights reserved. // #import <UIKit/UIKit.h> #import <Foundation/Foundation.h> @interface LKTabBarViewController : UITabBarController @end
KhunLam/OC-weibo
OC_weibo/OC_weibo/Classes/Module/Profile/Controller/LKProfileViewController.h
// // LKProfileViewController.h // OC_weibo // // Created by lamkhun on 15/10/27. // Copyright © 2015年 lamKhun. All rights reserved. // #import "LKBaseTableViewController.h" @interface LKProfileViewController : LKBaseTableViewController @end
RJL22/repetitive-dna
tests/test.c
<gh_stars>0 #include <stdio.h> #include "../src/sequence_repetition.h" #include "../src/sequence_repetition.h" //Compile code: gcc test.c ../src/sequence_repetition.c ../src/integer_array.c int main() { int index = findDNARepetition("ABAABABBABABA", "BBAB"); printf("Index of Repetition: %d\n", index); struct...
RJL22/repetitive-dna
src/sequence_repetition.h
#ifndef SEQUENCE_REPETITION_H #define SEQUENCE_REPETITION_H #include <math.h> #include <string.h> #include <stdio.h> #include "integer_array.h" #define PRIME_MODULUS 101 //Returns the index of the first repetition int findDNARepetition(const char* sequence, const char* motif); //Returns indices of all repetitions...
RJL22/repetitive-dna
src/integer_array.h
<reponame>RJL22/repetitive-dna<filename>src/integer_array.h #ifndef INTEGER_ARRAY_H #define INTEGER_ARRAY_H #include <stdlib.h> struct Node { int value; struct Node* next_node; }; struct IntegerArray { int count; struct Node* root; struct Node* end; }; void addItem(struct IntegerArray* integerArray, int newVa...
RJL22/repetitive-dna
src/sequence_repetition.c
#include "sequence_repetition.h" static int getSequenceHash(const char* sequence) { int hash = sequence[0]; for (int i = 1; i < strlen(sequence); i++) { hash = (hash * 256) % PRIME_MODULUS; hash += sequence[i]; } hash = hash % PRIME_MODULUS; return hash; } int findDNARepetition(const char* sequence, const c...
RJL22/repetitive-dna
src/integer_array.c
#include "integer_array.h" void addItem(struct IntegerArray* integerArray, int newValue) { if (integerArray->count == 0) { struct Node* new_node = malloc(sizeof(struct Node)); new_node->value = newValue; new_node->next_node = NULL; integerArray->root = new_node; integerArray->end = new_node; } else { ...
RJL22/repetitive-dna
src/repetitive_dna.h
#ifndef REPETITIVE_DNA_H #define REPETITIVE_DNA_H #include "integer_array.h" #include "sequence_repetition.h" #endif
markcaudill/mwc6502
Bus_Monitor/65C02S_Mnemonics.h
<gh_stars>0 #ifndef _65C02S_MNEMONICS_H #define _65C02S_MNEMONICS_H const char *mnemonic[0xFF + 1] = { "BRK", // 00 "ORA", // 01 "", // 02 "", // 03 "TSB", // 04 "ORA", // 05 "ASL", // 06 "RMV0", // 07 "PHP", // 08 "ORA", // 09 "ASL", // 0a "", // 0b "TSP", // 0c "ORA",...
gabrielganzer/ARM
shop_list/sample.c
<filename>shop_list/sample.c /*---------------------------------------------------------------------------- * Name: sample.c * * This software is supplied "AS IS" without warranties of any kind. * * Copyright (c) 2019 Politecnico di Torino. All rights reserved. *------------------------------------------...
gabrielganzer/ARM
shop_list/IRQ_button.c
#include "button.h" #include "lpc17xx.h" extern unsigned int key1, key2; void EINT0_IRQHandler (void) { LPC_SC->EXTINT |= (1 << 0); /* clear pending interrupt */ } void EINT1_IRQHandler (void) { key1 = 1; LPC_SC->EXTINT |= (1 << 1); /* clear pending interrupt */ } ...
gabrielganzer/ARM
slot_machine/main/sample.c
<reponame>gabrielganzer/ARM /*---------------------------------------------------------------------------- * Name: sample.c * Purpose: to control led through EINT buttons * Note(s): *---------------------------------------------------------------------------- * * This software is supplied "AS IS" without...
gabrielganzer/ARM
shop_list/IRQ_timer.c
/********************************************************************************************************* **--------------File Info--------------------------------------------------------------------------------- ** File name: IRQ_timer.c ** Descriptions: interrupt handlers of Timer/Counter 0 and 1...
gabrielganzer/ARM
slot_machine/button/button.h
<gh_stars>1-10 void BUTTON_init(void); void BUTTON_debounce(void); void EINT1_IRQHandler(void); void EINT2_IRQHandler(void); void EINT3_IRQHandler(void); void random(void);
gabrielganzer/ARM
simon_game/button/IRQ_button.c
#include "button.h" #include "lpc17xx.h" #include "../led/led.h" unsigned int button, pressed; void EINT0_IRQHandler (void) { button = 0; pressed = 1; LPC_SC->EXTINT |= (1 << 0); /* clear pending interrupt */ } void EINT1_IRQHandler (void) { button = 1; pressed = 1; LPC_SC-...
gabrielganzer/ARM
arm_c/led.c
<gh_stars>1-10 /********************************************************************************************************* **--------------File Info--------------------------------------------------------------------------------- ** File name: lib_led.c ** Last modified Date: 2019-11-26 ** Last Version: ...
gabrielganzer/ARM
arm_c/sample.c
/*---------------------------------------------------------------------------- * Name: sample.c * Purpose: to control led through EINT buttons * Note(s): *---------------------------------------------------------------------------- * * This software is supplied "AS IS" without warranties of any kind. *...
gabrielganzer/ARM
slot_machine/button/IRQ_button.c
/********************************************************************************************************* **--------------File Info--------------------------------------------------------------------------------- ** File name: IRQ_button.c ** Last modified Date: 2019-12-05 ** Last Version: V1.00 ...
gabrielganzer/ARM
slot_machine/LED/led.h
<reponame>gabrielganzer/ARM /********************************************************************************************************* **--------------File Info--------------------------------------------------------------------------------- ** File name: led.h ** Last modified Date: 2019-12-05 ** Last V...
gabrielganzer/ARM
shop_list/lib_timer.c
/********************************************************************************************************* **--------------File Info--------------------------------------------------------------------------------- ** File name: lib_timer.h ** Descriptions: atomic functions to be used by higher sw le...
gabrielganzer/ARM
shop_list/IRQ_adc.c
<filename>shop_list/IRQ_adc.c /********************************************************************************************************* **--------------File Info--------------------------------------------------------------------------------- ** File name: IRQ_adc.c ** Descriptions: functions to ma...
gabrielganzer/ARM
proc_subroutine/c_functions.c
// --------------------------------------- EX 5 --------------------------------------- //extern int myUADD8(int, int); //int main(void) { // int var1, var2, sum; // // var1 = 2049983885; // var2 = 3272973994; // sum = myUADD8(var1, var2); //} // --------------------------------------- EX 6 ----------...
gabrielganzer/ARM
arm_c/funct_led.c
<filename>arm_c/funct_led.c<gh_stars>1-10 /********************************************************************************************************* **--------------File Info--------------------------------------------------------------------------------- ** File name: lib_led.c ** Last modified Date: 201...
gabrielganzer/ARM
simon_game/sample.c
/*---------------------------------------------------------------------------- * Name: sample.c * * This software is supplied "AS IS" without warranties of any kind. * * Copyright (c) 2019 Politecn<NAME>. All rights reserved. *----------------------------------------------------------------------------*/...
gabrielganzer/ARM
slot_machine/LED/led.c
/********************************************************************************************************* **--------------File Info--------------------------------------------------------------------------------- ** File name: lib_led.c ** Last modified Date: 2019-12-05 ** Last Version: V1.00 **...
gabrielganzer/ARM
arm_c/led.h
/********************************************************************************************************* **--------------File Info--------------------------------------------------------------------------------- ** File name: led.h ** Last modified Date: 2019-11-26 ** Last Version: V1.00 ** Des...
gabrielganzer/ARM
shop_list/lib_adc_dac.c
#include "lpc17xx.h" #include "adc_dac.h" /*---------------------------------------------------------------------------- Function that initializes ADC *----------------------------------------------------------------------------*/ void ADC_init (void) { LPC_PINCON->PINSEL3 |= (3UL<<30); /* P1.31 is AD...
gabrielganzer/ARM
slot_machine/timer/IRQ_timer.c
/********************************************************************************************************* **--------------File Info--------------------------------------------------------------------------------- ** File name: IRQ_timer.c ** Descriptions: interrupt handlers of Timer/Counter 0 and 1...
cclaypool/machine-learning-algorithm-comparison
src/GradMatrix.h
<gh_stars>0 #pragma once #include "Matrix.h" namespace MLComparison { // class template for a matrix with a given type and dimensions which also // stores the gradients of some function with respect to its elements template<typename T, size_t n_rows, size_t n_cols> class GradMatrix : public Matrix<T, n...
cclaypool/machine-learning-algorithm-comparison
src/Linear.h
<gh_stars>0 #pragma once #include <random> #include <cmath> #include "base_layers.h" namespace MLComparison { // class template for a standard linear neural network layer // with a given number of inputs and units (neurons) template<typename T, int n_inputs, int n_units> class Linear : public Train...
cclaypool/machine-learning-algorithm-comparison
src/test_decision_tree.h
<reponame>cclaypool/machine-learning-algorithm-comparison #pragma once #include <string> #include <fstream> #include "DecisionTreeModel.h" namespace MLComparison { // function to record the training time of the decision tree algorithm using // different numbers of training samples and independent varia...
cclaypool/machine-learning-algorithm-comparison
src/Sigmoid.h
<reponame>cclaypool/machine-learning-algorithm-comparison #pragma once #include <cmath> #include "base_layers.h" namespace MLComparison { // class template for a sigmoid activation function layer whose inputs are of the given dimensions template<typename T, int cols> class Sigmoid : public Layer<T, co...
cclaypool/machine-learning-algorithm-comparison
src/DecisionTreeNode.h
#pragma once #include <vector> #include <array> #include <memory> #include <iterator> #include <iostream> #include <algorithm> #include "DecisionTreeDataset.h" namespace MLComparison { // class template for a binary classification decision tree node which deals with data samples of a certain type and...
cclaypool/machine-learning-algorithm-comparison
src/Relu.h
<gh_stars>0 #pragma once #include "base_layers.h" namespace MLComparison { // class template for a ReLU activation function layer whose inputs are of the given dimensions template<typename T, int cols> class Relu : public Layer<T, cols, cols> { public: // default constructor Relu() { } ...
cclaypool/machine-learning-algorithm-comparison
src/calculate_rows_to_use.h
<reponame>cclaypool/machine-learning-algorithm-comparison<filename>src/calculate_rows_to_use.h #pragma once #include <cmath> namespace MLComparison { // function to calculate a number of samples to use based on a number // of divisions, a number of these to use, and the total number of rows size_t calcu...
cclaypool/machine-learning-algorithm-comparison
src/test_neural_network.h
<reponame>cclaypool/machine-learning-algorithm-comparison #pragma once #include <string> #include <fstream> #include "NeuralNetModel.h" namespace MLComparison { // function template which generates a neural network model which uses a given // number of the independent variables in the banknote authenti...
cclaypool/machine-learning-algorithm-comparison
src/NeuralNet.h
#pragma once #include "base_layers.h" #include "Linear.h" #include "Relu.h" #include "Sigmoid.h" namespace MLComparison { // class template for a simple artificial neural network suitable for binary classification template<typename T, size_t input_cols> class NeuralNet : public TrainableLayer<T, input...
cclaypool/machine-learning-algorithm-comparison
src/base_layers.h
#pragma once #include "GradMatrix.h" namespace MLComparison { // abstract class template for a neural network layer template<typename T, size_t input_size, size_t output_size> class Layer { public: // pure virtual function which takes a pointer to an input matrix, // calculates an output mat...
cclaypool/machine-learning-algorithm-comparison
src/NeuralNetModel.h
<reponame>cclaypool/machine-learning-algorithm-comparison #pragma once #include <chrono> #include <string> #include <cmath> #include "NeuralNetDataset.h" #include "NeuralNet.h" #include "MSELoss.h" #include "calculate_rows_to_use.h" namespace MLComparison { // class template for a neural network pred...
cclaypool/machine-learning-algorithm-comparison
src/MSELoss.h
#pragma once #include <cmath> #include "base_layers.h" namespace MLComparison { // class template for mean squared error (MSE) loss function layer template<typename T> class MSELoss : public LossLayer<T> { public: // forward pass which calculates and returns the mean squared error virtual ...
cclaypool/machine-learning-algorithm-comparison
src/DecisionTreeDataset.h
<gh_stars>0 #pragma once #include <string> #include <iterator> #include <fstream> #include <sstream> #include <vector> #include <array> #include <iostream> namespace MLComparison { // class template for a tabular dataset suitable for a decision tree model template<typename T, int x_vars, bool include...
cclaypool/machine-learning-algorithm-comparison
src/DecisionTreeModel.h
<reponame>cclaypool/machine-learning-algorithm-comparison #pragma once #include <chrono> #include <string> #include <cmath> #include <memory> #include <iterator> #include "DecisionTreeDataset.h" #include "DecisionTreeNode.h" #include "calculate_rows_to_use.h" namespace MLComparison { // class templa...
cclaypool/machine-learning-algorithm-comparison
src/Matrix.h
<reponame>cclaypool/machine-learning-algorithm-comparison #pragma once #include <array> #include <iostream> namespace MLComparison { // forward declaration of GradMatrix class template template<typename T, size_t n_rows, size_t n_cols> class GradMatrix; // class template for a matrix of a given ty...
cclaypool/machine-learning-algorithm-comparison
src/NeuralNetDataset.h
<filename>src/NeuralNetDataset.h #pragma once #include <vector> #include <string> #include <sstream> #include <fstream> #include <iterator> #include "Matrix.h" namespace MLComparison { // class template for a dataset suitable for a neural network model // i.e each row is composed of a Matrix of inde...
harshavardhana/radhat-trie
src/hat-trie/ahtable.h
<filename>src/hat-trie/ahtable.h<gh_stars>1-10 /* Copyright (c) 2013 Harshavardhana 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 re...
harshavardhana/radhat-trie
src/hat-trie/hat-trie.h
<filename>src/hat-trie/hat-trie.h /* Copyright (c) 2013 Harshavardhana 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 app...
harshavardhana/radhat-trie
src/trie/trie.h
/* trie.h: Trie data structure. Copyright (c) 2013 Harshavardhana 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 appli...
sindresorhus/win-term-size
term-size.c
#include <stdio.h> #include <windows.h> int wmain() { CONSOLE_SCREEN_BUFFER_INFO info; HANDLE tmpConsole = CreateConsoleScreenBuffer(GENERIC_READ, 0, NULL, CONSOLE_TEXTMODE_BUFFER, NULL); // can't use `GetStdHandle(STD_OUTPUT_HANDLE)` as it doesn't work when output is redirected GetConsoleScreenBufferInfo(tmpCon...
k-tomoyasu/MPPSample
ios/MPPSample/common.framework/Headers/common.h
<gh_stars>0 #import <Foundation/NSArray.h> #import <Foundation/NSDictionary.h> #import <Foundation/NSError.h> #import <Foundation/NSObject.h> #import <Foundation/NSSet.h> #import <Foundation/NSString.h> #import <Foundation/NSValue.h> @class CommonRepositoryList, CommonKotlinException, CommonRepository, CommonKotlinArr...
bensengupta/search
include/datasource.h
<filename>include/datasource.h #ifndef DATASOURCE_H #define DATASOURCE_H #include "document.h" class DataSource { public: virtual std::vector<Document> getDocuments(); }; class FileDataSource : public DataSource { public: FileDataSource(std::string filename); std::vector<Document> getDocuments(); private: s...
bensengupta/search
include/query.h
#ifndef QUERY_H #define QUERY_H #include "document.h" #include <map> #include <string> #include <tuple> #include <unordered_map> #include <vector> class QueryNodeResult { public: bool endReached; int docId; int posStart; int posEnd; static QueryNodeResult EndNode(); static QueryNodeResult Node(int docId, ...
bensengupta/search
include/index.h
#ifndef INDEX_H #define INDEX_H #include "document.h" #include "query.h" #include <map> #include <string> #include <tuple> #include <unordered_map> #include <vector> class Index { public: void indexDocuments(std::vector<Document> documents, std::string delims, std::string charsToSkip); std::...
bensengupta/search
include/timer.h
<reponame>bensengupta/search #include <chrono> class Timer { public: void start(); void end(); private: std::chrono::high_resolution_clock::time_point start_time; };
bensengupta/search
include/document.h
#ifndef DOCUMENT_H #define DOCUMENT_H #include <map> #include <string> #include <tuple> #include <vector> class Document { public: int id; std::string text; Document(int id, std::string text); std::vector<std::string> getTerms(std::string delims, std::string charsToSkip); }...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/DTWebArchive/UIPasteboard+DTWebArchive.h
// // UIPasteboard+DTWebArchive.h // DTWebArchive // // Created by <NAME> on 9/2/11. // Copyright (c) 2011 Cocoanetics. All rights reserved. // #import <UIKit/UIKit.h> @class DTWebArchive; @interface UIPasteboard (DTWebArchive) @property(nonatomic,copy) DTWebArchive *webArchive; @end
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/Classes/DTCache.h
// // DTCache.h // CoreTextExtensions // // Created by <NAME> on 7/30/11. // Copyright 2011 <EMAIL>. All rights reserved. // #import <Foundation/Foundation.h> // if we don't support 3.2 then we use NSCache directly #if __IPHONE_OS_VERSION_MIN_REQUIRED > __IPHONE_3_2 #define DTCache NSCache #else typedef enum ...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/Classes/NSURL+HTML.h
<filename>StreamGlider App/NSAttributedString-HTML/Classes/NSURL+HTML.h // // NSURL+HTML.h // PagingTextScroller // // Created by <NAME> on 24.03.11. // Copyright 2011 Cocoanetics. All rights reserved. // #import <Foundation/Foundation.h> @interface NSURL (HTML) - (NSURL *)derivedBaseURL; @end
streamglider/streamglider
StreamGlider App/Classes/StreamTitleViewController.h
// // StreamTitleViewController.h // StreamCast // // Created by <NAME> on 05/11/2010. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // ...
streamglider/streamglider
StreamGlider App/Classes/TwitterPreviewViewController.h
<filename>StreamGlider App/Classes/TwitterPreviewViewController.h<gh_stars>1-10 // // TwitterPreviewViewController.h // StreamCast // // Created by <NAME> on 26/10/2010. // Copyright 2010 SemantiStar, Inc. All rights reserved. // #import <UIKit/UIKit.h> #import "PreviewViewController.h" @class LocalLinksWebView; ...
streamglider/streamglider
StreamGlider App/Classes/OtherStreamTableViewCell.h
<reponame>streamglider/streamglider<gh_stars>1-10 // // OtherStreamTableViewCell.h // StreamCast // // Created by <NAME> on 13/09/2010. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the term...
streamglider/streamglider
StreamGlider App/Classes/APIReader.h
<reponame>streamglider/streamglider // // FeedsReader.h // StreamGlider // // Created by <NAME> on 17/08/2011. // Copyright 2011 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause Lic...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/Classes/CGUtils.h
<reponame>streamglider/streamglider<gh_stars>1-10 // // CGUtils.h // CoreTextExtensions // // Created by <NAME> on 1/16/11. // Copyright 2011 D<EMAIL>. All rights reserved. // //CGPathRef newPathForRoundedRect(CGRect rect, CGFloat cornerRadius, BOOL roundTopCorners, BOOL roundBottomCorners); CGSize sizeThatFitsKee...
streamglider/streamglider
StreamGlider App/Classes/RSSFeed.h
// // RSSFeed.h // StreamCast // // Created by <NAME> on 12/08/2010. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // the Free Software...
streamglider/streamglider
StreamGlider App/Classes/SlideShowViewController.h
// // SlideShowViewController.h // StreamCast // // Created by <NAME> on 20/10/2010. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // t...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/DTWebArchive/DTWebArchive.h
<reponame>streamglider/streamglider // // DTWebArchive.h // DTWebArchive // // Created by <NAME> on 9/2/11. // Copyright 2011 Cocoanetics. All rights reserved. // #import <Foundation/Foundation.h> #import "DTWebResource.h" extern NSString * WebArchivePboardType; @interface DTWebArchive : NSObject { DTWebResour...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/Classes/DTLazyImageView.h
<reponame>streamglider/streamglider // // DTLazyImageView.h // PagingTextScroller // // Created by <NAME> on 5/20/11. // Copyright 2011 . All rights reserved. // #import <Foundation/Foundation.h> #import <ImageIO/ImageIO.h> @class DTLazyImageView; @protocol DTLazyImageViewDelegate <NSObject> @optional - (void)la...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/Classes/DTRangedAttribute.h
// // DTRangedAttributes.h // CoreTextExtensions // // Created by <NAME> on 7/31/11. // Copyright 2011 <EMAIL>. All rights reserved. // #import <Foundation/Foundation.h> @interface DTRangedAttribute : NSObject { NSRange _range; id _key; id _value; } + (DTRangedAttribute *)rangedAttribute:(id)key value:(id)val...
streamglider/streamglider
StreamGlider App/Classes/StreamCastViewController.h
<reponame>streamglider/streamglider // // StreamCastViewController.h // StreamCast // // Created by <NAME> on 7/15/10. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Cl...
streamglider/streamglider
StreamGlider App/Classes/Stream.h
<filename>StreamGlider App/Classes/Stream.h // // Stream.h // StreamCast // // Created by <NAME> on 7/15/10. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause Licen...
streamglider/streamglider
StreamGlider App/Classes/Frame.h
<reponame>streamglider/streamglider<gh_stars>1-10 // // Frame.h // StreamCast // // Created by <NAME> on 7/15/10. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause ...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/Classes/NSAttributedString+DTWebArchive.h
// // NSAttributedString+DTWebArchive.h // CoreTextExtensions // // Created by <NAME> on 9/6/11. // Copyright 2011 <EMAIL>. All rights reserved. // #import <Foundation/Foundation.h> @class DTWebArchive; @interface NSAttributedString (DTWebArchive) - (id)initWithWebArchive:(DTWebArchive *)webArchive options:(NSD...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/Classes/NSMutableAttributedString+HTML.h
// // NSMutableAttributedString+HTML.h // CoreTextExtensions // // Created by <NAME> on 4/14/11. // Copyright 2011 <EMAIL>. All rights reserved. // #import <Foundation/Foundation.h> @class DTCoreTextParagraphStyle; @interface NSMutableAttributedString (HTML) // appends a string with the same attributes as the s...
streamglider/streamglider
StreamGlider App/Config.h
<filename>StreamGlider App/Config.h // // Config.h // StreamCast // // Created by <NAME> on 10/02/2011. // Copyright 2011 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as...
streamglider/streamglider
StreamGlider App/Classes/Core.h
<filename>StreamGlider App/Classes/Core.h // // Core.h // StreamCast // // Created by <NAME> on 7/16/10. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License a...
streamglider/streamglider
StreamGlider App/Classes/SettingsTableViewController.h
// // SettingsViewController.h // StreamGlider // // Created by <NAME> on 05/05/2011. // Copyright 2011 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // ...
streamglider/streamglider
StreamGlider App/Classes/BaseCacheController.h
// // BaseCacheController.h // StreamGlider // // Created by <NAME> on 13/10/2010. // Refactoring by <NAME> on 11-07-12. // Copyright 2011 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/DTWebArchive/NSDictionary+Data.h
// // NSDictionary+Data.h // DTWebArchive // // Created by <NAME> on 9/2/11. // Copyright 2011 Cocoanetics. All rights reserved. // #import <Foundation/Foundation.h> @interface NSDictionary (Data) + (NSDictionary *)dictionaryWithData:(NSData *)data; - (id)initWithData:(NSData *)data; - (NSData *)dataRepresenta...
streamglider/streamglider
StreamGlider App/Classes/StreamDelegate.h
// // StreamDelegate.h // StreamCast // // Created by <NAME> on 7/16/10. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // the Free Soft...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/Classes/DTCSSStylesheet.h
<gh_stars>1-10 // // DTCSSStylesheet.h // CoreTextExtensions // // Created by <NAME> on 9/5/11. // Copyright (c) 2011 <EMAIL>. All rights reserved. // #import <Foundation/Foundation.h> @class DTHTMLElement; @interface DTCSSStylesheet : NSObject { NSMutableDictionary *_styles; } - (id)initWithStyleBlock:(NSSt...
streamglider/streamglider
StreamGlider App/Classes/OAuthCore.h
// // OAuthCore.h // StreamCast // // Created by <NAME> on 03/08/2010. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // the Free Softwa...
streamglider/streamglider
StreamGlider App/Classes/SettingsController.h
// // SettingsController.h // StreamGlider // // Created by <NAME> on 05/05/2011. // Copyright 2011 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // the ...
streamglider/streamglider
StreamGlider App/Classes/SourceTableViewController.h
// // SourceTableViewController.h // StreamCast // // Created by <NAME> on 25/09/2010. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // ...
streamglider/streamglider
StreamGlider App/Classes/CoreDelegate.h
// // CoreDelegate.h // StreamCast // // Created by <NAME> on 7/19/10. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // the Free Softwa...
streamglider/streamglider
StreamGlider App/Classes/YTPreviewViewController.h
<reponame>streamglider/streamglider // // YTPreviewViewController.h // StreamCast // // Created by <NAME> on 27/10/2010. // Copyright 2010 SemantiStar, Inc. All rights reserved. // #import <UIKit/UIKit.h> #import "PreviewViewController.h" @class LocalLinksWebView; @interface YTPreviewViewController : PreviewView...
streamglider/streamglider
StreamGlider App/Classes/OAuth2.h
<reponame>streamglider/streamglider // // OAuth2.h // StreamCast // // Created by <NAME> on 25/09/2010. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as...
streamglider/streamglider
StreamGlider App/Classes/Feed.h
<filename>StreamGlider App/Classes/Feed.h // // Feed.h // StreamCast // // Created by <NAME> on 7/16/10. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License a...
streamglider/streamglider
StreamGlider App/Classes/SEMArticleExtractor.h
// // SEMArticleExtractor.h // Article Retriever // // Created by <NAME> on 11-12-03. // Copyright 2011 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // ...
streamglider/streamglider
StreamGlider App/Classes/StreamCastConstants.h
// // StreamCastConstants.h // StreamGlider // // Created by <NAME> on 11-07-11. // Copyright 2011 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // the F...
streamglider/streamglider
StreamGlider App/Classes/MagPage.h
<filename>StreamGlider App/Classes/MagPage.h // // MagPage.h // StreamGlider // // Created by <NAME> on 31/10/2011. // Copyright 2011 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Claus...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/Classes/DTTextAttachment.h
// // DTTextAttachment.h // CoreTextExtensions // // Created by Oliver on 14.01.11. // Copyright 2011 Drobnik.<EMAIL>. All rights reserved. // #import <Foundation/Foundation.h> @class DTHTMLElement; typedef enum { DTTextAttachmentTypeImage, DTTextAttachmentTypeVideoURL, DTTextAttachmentTypeIframe, DTTe...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/Classes/DTRangedAttributesOptimizer.h
<gh_stars>1-10 // // DTRangedAttributesOptimizer.h // CoreTextExtensions // // Created by <NAME> on 7/31/11. // Copyright 2011 <EMAIL>. All rights reserved. // #import <Foundation/Foundation.h> #import "DTRangedAttribute.h" @interface DTRangedAttributesOptimizer : NSObject { NSMutableDictionary *_attributeIndex...
streamglider/streamglider
StreamGlider App/Classes/FeedFactory.h
// // FeedFactory.h // StreamGlider // // Created by <NAME> on 18/08/2011. // Copyright 2011 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // the Free So...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/DTWebArchive/DTWebResource.h
// // DTWebResource.h // DTWebArchive // // Created by <NAME> on 9/2/11. // Copyright 2011 Cocoanetics. All rights reserved. // #import <Foundation/Foundation.h> @interface DTWebResource : NSObject <NSKeyedUnarchiverDelegate> { NSData *_data; NSString *_frameName; NSString *_mimeType; NSURL *_url; NSString *...
streamglider/streamglider
StreamGlider App/Classes/IncomingViewController.h
// // IncomingViewController.h // StreamGlider // // Created by <NAME> on 31/08/2011. // Copyright 2011 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // ...
streamglider/streamglider
StreamGlider App/Classes/GReaderLoader.h
// // GReaderLoader.h // StreamGlider // // Created by <NAME> on 03/05/2011. // Copyright 2011 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // the Free ...
streamglider/streamglider
StreamGlider App/Classes/AuthorizeViewController.h
// // AuthorizeViewController.h // StreamCast // // Created by <NAME> on 05/08/2010. // Copyright 2010 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify // it under the terms of the BSD 4 Clause License as published by // t...
streamglider/streamglider
StreamGlider App/NSAttributedString-HTML/Classes/DTAttributedTextCell.h
<reponame>streamglider/streamglider // // DTAttributedTextCell.h // CoreTextExtensions // // Created by <NAME> on 8/4/11. // Copyright 2011 <EMAIL>. All rights reserved. // #import <UIKit/UIKit.h> @class DTAttributedTextContentView; @interface DTAttributedTextCell : UITableViewCell { NSAttributedString *_attrib...
streamglider/streamglider
StreamGlider App/Classes/IncomingStreamsController.h
<filename>StreamGlider App/Classes/IncomingStreamsController.h // // IncomingStreamsController.h // StreamGlider // // Created by <NAME> on 08/02/2012. // Copyright (c) 2012 StreamGlider, Inc. All rights reserved. // // This program is free software if used non-commercially: you can redistribute it and/or modify /...