I hereby claim:
- I am Behinder on github.
- I am behinder (https://keybase.io/behinder) on keybase.
- I have a public key whose fingerprint is 6E46 A04D 069B 1BB4 1B20 3ED0 0EEB 4A82 564D A581
To claim this, I am signing this object:
self.title = @"Your TiTle Text"; | |
UILabel* tlabel=[[UILabel alloc] initWithFrame:CGRectMake(0,0, 200, 40)]; | |
tlabel.text=self.navigationItem.title; | |
tlabel.textColor=[UIColor whiteColor]; | |
tlabel.font = [UIFont fontWithName:@"Helvetica-Bold" size: 30.0]; | |
tlabel.backgroundColor =[UIColor clearColor]; | |
tlabel.adjustsFontSizeToFitWidth=YES; | |
self.navigationItem.titleView=tlabel; |
I hereby claim:
To claim this, I am signing this object:
function convertNumberToEmoji($cyfra) | |
{ | |
switch ($cyfra) { | |
case '0': | |
return "\u{30}\u{FE0F}\u{20E3}"; | |
break; | |
case '1': | |
return "\u{31}\u{FE0F}\u{20E3}"; |
<?xml version="1.0" encoding="UTF-8"?> | |
<rss version="2.0" | |
xmlns:admin="http://webns.net/mvcb/" | |
xmlns:content="http://purl.org/rss/1.0/modules/content/" | |
xmlns:dc="http://purl.org/dc/elements/1.1/" | |
xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" | |
xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" | |
> |
set tekst to (get the clipboard) | |
set lns to paragraphs of tekst | |
set bodytekst to "" | |
set tytul to item 1 of lns | |
repeat with ln from 2 to length of lns | |
set linia to item ln of lns | |
set bodytekst to bodytekst & linia & " | |
" |
require 'combine_pdf' | |
pdf = CombinePDF.new | |
Dir.glob("*.pdf") do |file| | |
pdf << CombinePDF.load(file) | |
end | |
pdf.save "KukBuk.pdf" |
<?php | |
/** | |
* Class for dealing with Trakt API | |
*/ | |
class Trakt | |
{ | |
public $clientid; | |
public $content_type; | |
public $apiurl; | |
public $ch; |
<?php | |
$jsonfile = "https://www.cwseed.com/shows/linear-schedule/cwseed/2"; | |
$decodedguide = json_decode(file_get_contents($jsonfile),true); | |
$guidefile = fopen("cwseed.xml","w") or die("Unable to open file"); | |
$tv = new SimpleXMLElement('<tv> </tv>'); | |
$channel = $tv->addChild("channel"); | |
$channel->addAttribute("id","cw-seed"); | |
$channel->addChild("display-name","CW SEED"); |
function incrementFLoat($float){ | |
echo $float."\n"; | |
$decimal = strlen(strrchr($float, '.')) -1; | |
$factor = pow(10,$decimal); | |
$incremented = (($factor * $float) + 1) / $factor; | |
return $incremented; | |
} | |
function decrementFLoat($float){ | |
// get amount of decimals |
#!/usr/bin/env bash | |
NAZWA="$(basename "$1" | sed 's/\(.*\)\..*/\1/')" | |
echo "Generating split command\n" | |
KOMENDA="tr -d '\n' < \"$NAZWA.ffsplit\"" | |
STRING=`eval $KOMENDA` | |
echo $STRING | |
#echo "ffmpeg -i \"$1\"" | |
eval "ffmpeg -i \"$1\" $STRING" |