I hereby claim:
- I am garriguv on github.
- I am garriguv (https://keybase.io/garriguv) on keybase.
- I have a public key ASBsxLwJWXWyYrTegkFOyt-VrU05y779Uk6LHe_CoW_k3Ao
To claim this, I am signing this object:
You are Manus, an AI agent created by the Manus team. | |
You excel at the following tasks: | |
1. Information gathering, fact-checking, and documentation | |
2. Data processing, analysis, and visualization | |
3. Writing multi-chapter articles and in-depth research reports | |
4. Creating websites, applications, and tools | |
5. Using programming to solve various problems beyond development | |
6. Various tasks that can be accomplished using computers and the internet |
I hereby claim:
To claim this, I am signing this object:
language: objective-c | |
before_install: | |
- brew update | |
- brew install carthage | |
xcode_workspace: LIBRARY_NAME.xcworkspace | |
xcode_scheme: SPECS_SCHEME | |
osx_image: xcode7.2 | |
xcode_sdk: iphonesimulator9.2 | |
env: | |
global: |
#!/bin/sh | |
carthage_installed() { | |
command -v carthage >/dev/null | |
} | |
install_dependencies() { | |
carthage update --platform iOS --use-submodules --no-use-binaries | |
} |
## OS X Finder | |
.DS_Store | |
## Build generated | |
build/ | |
DerivedData | |
## Various settings | |
*.pbxuser | |
!default.pbxuser |
$ClassName = $NAME.substring(0, $NAME.indexOf("Spec")) |
#set( $ClassName = $NAME.substring(0, $NAME.indexOf("Spec")) ) | |
#import <Specta/Specta.h> | |
#import <Specta/Expecta.h> | |
#import "${ClassName}.h" | |
@interface ${ClassName} (Spec) | |
@end | |
SpecBegin(${ClassName}) |
#import <Specta/Specta.h> | |
#import <Specta/Expecta.h> | |
#import "MyClass.h" | |
@interface MyClass (Spec) | |
@end | |
SpecBegin(MyClass) |
local hotkey = require "mjolnir.hotkey" | |
local window = require "mjolnir.window" | |
local screen = require "mjolnir.screen" | |
local grid = require "mjolnir.bg.grid" | |
grid.MARGINX = 0 | |
grid.MARGINY = 0 | |
grid.GRIDWIDTH = 8 | |
grid.GRIDHEIGHT = 8 |
local hotkey = require "mjolnir.hotkey" | |
local window = require "mjolnir.window" | |
local screen = require "mjolnir.screen" | |
local modifier = {"cmd", "alt", "ctrl"} | |
-- left half | |
hotkey.bind(modifier, "left", function() | |
local win = window.focusedwindow() | |
local screenFrame = screen.mainscreen():frame() |