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
import Foundation | |
func getData(_ urlString: String) -> Data? { | |
guard let url = URL(string: urlString) else { return nil } | |
return try? Data(contentsOf: url) | |
} | |
struct Result { | |
var comments: Int |
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
import PlaygroundSupport | |
import UIKit | |
func makeLabels(left: String, right: String) -> (UIView, UILabel, UILabel) { | |
let leftLb: UILabel = { | |
let label = UILabel(frame: .zero) | |
label.textAlignment = .left | |
label.backgroundColor = .blue | |
label.text = left | |
return label |
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
import UIKit | |
extension UIImage { | |
class func lettersPhoto(_ input: String, | |
size: CGSize = CGSize(width:100, height:100)) -> UIImage? { | |
// Color generation place | |
let bgColor = UIColor.black | |
let height = size.height/2 | |
let letters:String = { |
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
class SelfsizingTableView: UITableView { | |
override var intrinsicContentSize: CGSize { | |
return CGSize(width: frame.width, | |
height: contentSize.height + contentInset.top + contentInset.bottom) | |
} | |
override var contentSize: CGSize { | |
didSet { | |
if oldValue != contentSize { |
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
import PlaygroundSupport | |
import UIKit | |
extension NSLayoutConstraint { | |
class func equalConstraint(item: UIView, attribute: NSLayoutAttribute, toItem: UIView) -> NSLayoutConstraint{ | |
return NSLayoutConstraint(item: item, | |
attribute: attribute, | |
relatedBy: .equal, | |
toItem: toItem, | |
attribute: attribute, |
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
// ==UserScript== | |
// @name Arenda scanner | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Change transparent blocks by filters | |
// @author ftp27 | |
// @match http://www.arenda-piter.ru/workpage.php* | |
// @grant none | |
// ==/UserScript== |
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 <stdio.h> | |
#include <math.h> | |
int main() | |
{ | |
float x; | |
printf("Please, enter X: "); | |
scanf("%f", &x); | |
float y = pow((sin(x)+(7/3)),2/3); | |
printf("f(%4.2f) = %4.2f\n",x,y); |
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/bash | |
convert -resize 640x960! $1 "3.5-"$1 | |
convert -resize 640x1136! $1 "4-"$1 | |
convert -resize 750x1334! $1 "4.7-"$1 | |
convert -resize 1242x2208! $1 "5.5-"$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
package com.codename1.social; | |
import com.codename1.io.Oauth2; | |
import com.codename1.social.Login; | |
import java.util.Hashtable; | |
public class VkontakteConnect extends Login{ | |
private static String scope = "email"; | |
private static String tokenURL = "https://oauth.vk.com/access_token"; |
NewerOlder