A Pen by Eugene Andruszczenko on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
** in your header, define a reference | |
*/ | |
- (void)switchViewController:(UIViewController*)view :(NSString*)segue; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var color_utils = (function(){ | |
function getLong(color) | |
{ | |
return color[0] << 16 | color[1] << 8 | color[2]; | |
} | |
function getRGB(color) | |
{ | |
if(color.indexOf("#") == -1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Colorsublime - Themes/dimmed.tmTheme", | |
"theme": "Material-Theme-Lighter.sublime-theme", | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"indent_guide_options": |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Utf8ArrayToStr(array) { | |
var out, i, len, c; | |
var char2, char3; | |
out = ""; | |
len = array.length; | |
i = 0; | |
while(i < len) { | |
c = array[i++]; | |
switch(c >> 4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
export NC='\e[0m' # No Color | |
export WHITE='\e[1;37m' | |
export BLUE='\e[1;34m' | |
export GREEN='\e[0;32m' | |
export YELLOW='\e[1;33m' | |
export TODAY=`date +%A\ %B\ %Y\ %T` | |
export NOTIFIER=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh | |
export NC='\e[0m' # No Color | |
export WHITE='\e[1;37m' | |
export BLUE='\e[1;34m' | |
export GREEN='\e[0;32m' | |
export YELLOW='\e[1;33m' | |
export TODAY=`date +%A\ %B\ %Y\ %T` | |
export NOTIFIER=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
struct dirent | |
``` | |
``` | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <dirent.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <rom/crc.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <dirent.h> | |
#include <stdlib.h> | |
#include <unistd.h> | |
#include <sys/stat.h> | |
#include "gui.h" | |
#include "odroid_display.h" |
OlderNewer