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
# features/log-in.feature | |
Feature: Create a page | |
As an site owner | |
I want to access to the CMS to be secure | |
So that only my team can make content changes | |
Scenario: Bad login | |
When I log in with "[email protected]" and "badpassword" | |
Then I will see a bad log-in message | |
And if I visit admin |
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
<!DOCTYPE html><html><head> | |
<title>My Music - Credits</title> | |
</head> | |
<body> | |
<p></p> | |
</body></html> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<base href="https://popcorn.webmaker.org/templates/basic/"> | |
<title>Popcorn Maker</title> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width"> | |
<link rel="stylesheet" href="style.css"> |
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
# Adapted from https://gist.github.com/henriquemoody/3288681 | |
#!/bin/sh | |
SHORTCUT="[Desktop Entry] | |
Name=Sublime Text 2 | |
Comment=Edit text files | |
Exec=/usr/local/sublime-text-2/sublime_text | |
Icon=/usr/local/sublime-text-2/Icon/128x128/sublime_text.png | |
Terminal=false | |
Type=Application |
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
<!DOCTYPE html><html><head> | |
<title>Remix of Sayak: Super Super Mentor!</title> | |
<style> | |
@font-face { | |
font-family: 'Open Sans'; | |
font-style: normal; | |
font-weight: 400; | |
src: local('Open Sans'), local('OpenSans'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vvxL-qU.woff) format('woff'); | |
} | |
@font-face { |
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
<!DOCTYPE html><html><head> | |
<title>Remix of Sayak: Super Super Mentor!</title> | |
<style> | |
@font-face { | |
font-family: 'Open Sans'; | |
font-style: normal; | |
font-weight: 400; | |
src: local('Open Sans'), local('OpenSans'), url(http://themes.googleusercontent.com/static/fonts/opensans/v6/cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vvxL-qU.woff) format('woff'); | |
} | |
@font-face { |
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
Tutorials | |
========== | |
Daily JS:- | |
----------- | |
* http://dailyjs.com/2012/09/20/enyo-1/ | |
* http://dailyjs.com/2012/10/04/enyo-2/ | |
Is Good Stuff:- | |
--------------- |
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
if (xhr.status == 200) { | |
var responseTest = xhr.responseText; | |
var parser = new XMLRPCParser(responseTest); | |
this.response = parser.toObject(); | |
this.fault = parser.fault; | |
} | |
else if(xhr.status == 0) { | |
this.fault = true; | |
this.faultMessage = "No Response from the Server"; | |
this.faultCode = 0; |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width" /> | |
<title>Sayak Sarkar | Just Another Geek's Blog</title> | |
<link rel="profile" href="http://gmpg.org/xfn/11" /> | |
<link rel="pingback" href="http://sayaksarkar.wordpress.com/xmlrpc.php" /> | |
<link rel="alternate" type="application/rss+xml" title="Sayak Sarkar » Feed" href="http://sayaksarkar.wordpress.com/feed/" /> | |
<link rel="alternate" type="application/rss+xml" title="Sayak Sarkar » Comments Feed" href="http://sayaksarkar.wordpress.com/comments/feed/" /> |
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
1. Work and improve upon the existing Mozilla India Developer Leaderboard. | |
2. Implement similar leaderboard for other project areas such as Support[based on SUMO stats like queries answered, etc], Webmaker[number of makes created, etc.] | |
3. Develop and create a Portal for Mozilla India: The idea is that the Mozilla India community has grown by leaps and bounds and as such needs a home portal which would list all Mozillians/Reps from Mozilla India by using APIs from mozillians.org & reps.mozilla.org. A possible point of reference for how it may look might be the ReMo People's page - reps.mozilla.org/people. This portal should be integrated into mozillaindia.org. | |
Bonus: Allow profile creation for Vouched Mozillians from India. It should use Persona and these profiles should be usable across all Mozilla India properties on the Web such as the Mozilla India Blog. | |
4. Create a Mozilla India Events portal: It would basically be an aggregator which would aggregate and show various Mozilla India events from various |
OlderNewer