Title: Foreign Function Interface Author: Charles Oliver Nutter Organization: Red Hat Owner: Charles Oliver Nutter Created: 2014/01/28 Type: Feature State: Draft Exposure: Open Component: --/-- Scope: JDK
A lot of these are outright stolen from Edward O'Campo-Gooding's list of questions. I really like his list.
I'm having some trouble paring this down to a manageable list of questions -- I realistically want to know all of these things before starting to work at a company, but it's a lot to ask all at once. My current game plan is to pick 6 before an interview and ask those.
I'd love comments and suggestions about any of these.
I've found questions like "do you have smart people? Can I learn a lot at your company?" to be basically totally useless -- everybody will say "yeah, definitely!" and it's hard to learn anything from them. So I'm trying to make all of these questions pretty concrete -- if a team doesn't have an issue tracker, they don't have an issue tracker.
I'm also mostly not asking about principles, but the way things are -- not "do you think code review is important?", but "Does all code get reviewed?".
Múltkor irc-en merült fel ennek a posztnak a kapcsán, hogy jó lenne egy erőteljesebb FB jelenlét a kör részéről. Ennek egyik eszköze lehetne, ha értelmes dolgokat osztanánk meg, mint ahogy ez a fenti linken is történt. Balo is és én is (és gondolom mindenki más is) végtelen szemetet nyálaz át minden nap az internet információrengetegéből. Ebből heti 3-4-5 tényleg érdekes cikk simán kipottyanhat.
Az ötlet tehát egyszerű: ki kellene jelölni pár témakört, lehetőleg elég bővet, hogy a heti termésből keveset zárjunk ki, és ezekbe gyűjteni cikkeket, projekteket, stb. A jelölt linkek közül közös döntés alapján kiválaszunk egyet és azt a megadott napon posztoljuk. Kell mellé egy 1-2 mondatos, rövid, velős összefoglalás/ajánló.
Gondolom nem kell ecsetelnem, hogy miért is lenne jó, ha nagyobb publicitást kapnánk. :)
Az eszköz
Lényegében RBAC, csak nem a Membernek (~User) vannak szerepei, hanem a kör tagságoknak (Membership). A szerepeket esetünkben posztoknak hívják és ezeknek vannak jogaik vagyis engedélyeik. A jogok egy előre jól definiált halmazból kerülnek ki. Dinamikusan nem hozhatóak újak létre. Ezekhez a kód változtatása kell. Hátránya ennek, hogy nagyjából minden tevékenységre kénytelenek vagyunk egy-egy jogosultságot létrehozni. És ráadásul a felületen is megjelenik egy felesleges komplexitás a jogosultságok nagy számával.
| <!DOCTYPE html> | |
| <! -- | |
| A very basic example in Javascript of how to attach a file to a CouchDB document. This will work wether or not the Document ID you define exists. | |
| Log in at /_utils, upload this file to a document, and then view it for your own uploader. See the code for comments. ajaxSubmit() is the magic that attaches | |
| as long as the Couch Doc exists because you can't submit a new Couch Document with an attachment. | |
| by @rjsteinert http://rjsteinert.com | |
| --> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> |
Web Performance Power Tool: HTTP Archive (HAR) - blog post with video and details about the projects we covered.
The HAR Show GDL episode on YouTube
-
HTTP Archive (powered by HAR files): www.httparchive.org
-
HAR Viewer: http://code.google.com/p/harviewer/
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |