This file contains hidden or 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
| iamutkarsh@Kickass:~/SUGARLABS/Make-Them-Fall$ python setup.py genpotTraceback (most recent call last): | |
| File "setup.py", line 4, in <module> | |
| from sugar.activity import bundlebuilder | |
| ImportError: No module named sugar.activity |
This file contains hidden or 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
| Utkarshs-MacBook-Air:gcli utkarshtiwari$ ./node_modules/webpack/bin/webpack | |
| -bash: ./node_modules/webpack/bin/webpack: No such file or directory | |
| Utkarshs-MacBook-Air:gcli utkarshtiwari$ |
This file contains hidden or 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
| /*You are required to complete this method */ | |
| class GfG | |
| { | |
| int atoi(String str) | |
| { | |
| int number = 0; | |
| if (str.length() == 0) | |
| return -1; | |
| for (int i = 0; i< str.length() ; i++ ) { |
This file contains hidden or 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
| [ 90%] Built target rcc_traffic | |
| [ 90%] Generate watercycle RCC | |
| [ 90%] Built target rcc_watercycle | |
| [ 90%] Generate wordsgame RCC | |
| [ 91%] Built target rcc_wordsgame | |
| [ 91%] Generate core RCC | |
| [ 91%] Built target rcc_core | |
| [100%] Built target gcompris-qt | |
| Run CPack packaging tool... | |
| CPack: Create package using DragNDrop |
This file contains hidden or 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
| /*Complete the given Function | |
| Node is as follows | |
| class Node{ | |
| int data; | |
| Node next; | |
| Node(int d){ | |
| data=d; | |
| next=null; | |
| } | |
| }*/ |
This file contains hidden or 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
| model: 4 | |
| Flickable { | |
| x: 2 | |
| y: (background.height / 4.7) + (index * (background.height / 6.5)) | |
| height: background.height / 7.5 | |
| width: background.width | |
| contentWidth: items.rowWidth[index] //(background.width > background.height ? background.width : background.height) * Activity.rowWidth[index] | |
| contentHeight: railCarriages.height | |
| flickableDirection: Flickable.HorizontalFlick | |
| // boundsBehavior: Flickable.StopAtBounds |
This file contains hidden or 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
| // Lower Sample Wagon Display Area | |
| Rectangle { | |
| id: railCollection | |
| color: "transparent" | |
| visible: false | |
| Repeater { | |
| id: sampleList | |
| model: 4 | |
| Flickable { | |
| x: 2 |
This file contains hidden or 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
| Last login: Thu Feb 2 14:29:45 on ttys011 | |
| Utkarshs-MacBook-Air:~ utkarshtiwari$ cd ringleader | |
| Utkarshs-MacBook-Air:ringleader utkarshtiwari$ jpm run -b /Applications/FirefoxDeveloperEdition.app/Contents/MacOS/firefox-bin --profile "TEST" --no-copy | |
| ^Z | |
| [1]+ Stopped jpm run -b /Applications/FirefoxDeveloperEdition.app/Contents/MacOS/firefox-bin --profile "TEST" --no-copy | |
| Utkarshs-MacBook-Air:ringleader utkarshtiwari$ jpm run -b /Applications/FirefoxNightly.app/Contents/MacOS/firefox-bin --profile "TEST" --no-copy | |
| JPM [info] Starting jpm run on fx_pnh | |
| JPM [warning] The `version` entry must be specified, and it should follow semantic | |
| versioning rules. For example, it must be a string containing three | |
| values indicating major, minor, and patch versions. For example: |
This file contains hidden or 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
| Utkarshs-Air:ringleader utkarshtiwari$ npm test | |
| > fx_pnh@ test /Users/utkarshtiwari/ringleader | |
| > wdio wdio.conf.js | |
| ERROR: Couldn't initialise service "firefox-profile". | |
| Error: Cannot find module 'wdio-firefox-profile-service' | |
| at Function.Module._resolveFilename (module.js:455:15) | |
| at Function.Module._load (module.js:403:25) |
This file contains hidden or 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
| exports.config = { | |
| // | |
| // ================== | |
| // Specify Test Files | |
| // ================== | |
| // Define which test specs should run. The pattern is relative to the directory | |
| // from which `wdio` was called. Notice that, if you are calling `wdio` from an | |
| // NPM script (see https://docs.npmjs.com/cli/run-script) then the current working | |
| // directory is where your package.json resides, so `wdio` will be called from there. |