- http://www.angularjsbook.com/angular-basics/chapters/
- https://www.ng-book.com/
- http://angular-rails.com/index.html
- http://www.learn-angular.org/
- https://egghead.io/technologies/angularjs?order=ASC -> Plays well for particular topics
def new_sort(left_sorted, right_sorted) | |
ordered_array = [] | |
left = 0 | |
right = 0 | |
loop do | |
break if right >= right_sorted.length and left >= left_sorted.length | |
if right >= right_sorted.length or (left < left_sorted.length and left_sorted[left] < right_sorted[right]) | |
ordered_array << left_sorted[left] |
0- Install in OS X | |
brew install tmux | |
1- Add this line on your shell client | |
tmux attach -t yoursession || tmux new -s yoursession | |
2- Windows | |
CTRL+B % -> Split | |
CTRL+B " -> Move to other panel | |
CTRL+B <UP ARROW> -> Move to next panel |
require 'open-uri' | |
p = Nokogiri::HTML(open('http://vue-js-modal.yev.io/')) | |
puts p.title |
import ApolloClient, { FetchPolicy } from "apollo-client" | |
import { HttpLink } from "apollo-link-http" | |
import { InMemoryCache, NormalizedCacheObject } from "apollo-cache-inmemory" | |
// import { setContext } from "apollo-link-context" | |
import ActionCable from "action-cable-react-jwt" | |
import ActionCableLink from "graphql-ruby-client/dist/subscriptions/ActionCableLink" | |
import { ApolloLink } from "apollo-link" | |
import { handleAuthentication, refreshToken } from "utils/oauth" | |
import { Observable } from "apollo-link" | |
import { onError } from "apollo-link-error" |
● Comandos Para Jugar Como YO: | |
cl_updaterate "100" | |
cl_cmdrate "105" | |
cl_cmdbackup "2" | |
rate 1000000 | |
ex_interp "0.01" | |
cl_shadows "0" | |
gl_fog "1" | |
cl_weather "0" |
I am Cursor, an expert software engineer with a unique characteristic: my memory resets completely between sessions. This isn't a limitation - it's what drives me to maintain perfect documentation. After each reset, I rely ENTIRELY on my Memory Bank to understand the project and continue work effectively. I MUST read ALL memory bank files at the start of EVERY task - this is not optional.
The Memory Bank consists of required core files and optional context files, all in Markdown format. Files build upon each other in a clear hierarchy:
flowchart TD