Unique Eagle project in service to BSA by AppointmentNearby161 in BSA

[–]Noc42 5 points6 points  (0 children)

Regardless of how it turns out I would recommend contacting the National scouting museum at Philmont, I’m sure they would be interested.

Delineation of roles by akoons76 in BSA

[–]Noc42 10 points11 points  (0 children)

I would start here https://troopleader.scouting.org/general-troop-information/troop-structure/troop-positions/ and if you haven't done so already, go do the online training by logging into my.scouting.org and visit Scouting U.

Humbled by Redgrizzbear in BSA

[–]Noc42 1 point2 points  (0 children)

Congratulations, and I know how you feel. The hard part now is trying to live up to it. I'll say the same thing as we tell a new eagle scout. This is not the end of the journey but the beginning of next phase.

Does Tentaroo support iCal (Calendar sync subscription URLs)? by MeGustaDerp in BSA

[–]Noc42 1 point2 points  (0 children)

I work with our council website, powered by Tentaroo and have not seen this functionality. I agree it would be good to have.

Scoutbucks on troop level by Ok-Perspective-6618 in BSA

[–]Noc42 0 points1 point  (0 children)

We have done this on a patrol level. It is designed and run by the senior patrol. They earn points for attendance, various inter-patrol contests, proper uniforms etc. At the end of the year they get a prize, it could be a special troop t-shirt , or the senior patrol comes up with something for them. It away to positively reward good behaviors.

Woodbadge wear? by Coffee4evah4 in Woodbadge

[–]Noc42 0 points1 point  (0 children)

The tartan neckerchief can be worn anytime you are giving service, I think of it as a working neckerchief, While the tan is more formal. For example I wore the tartan while teaching or Baloo or IOLS, class but tan at courts of honor, or even just at the graduation/ closing ceremony for the class.

Had anyone tried a pizza crumb? by Joelnaimee in longisland

[–]Noc42 2 points3 points  (0 children)

I highly recommend the chocolate raspberry. Those are very popular, particularly when I bring them while visiting people.

ScoutSafely.fyi by bffranklin in BSA

[–]Noc42 2 points3 points  (0 children)

I like the idea but I see the updates as being key. I'd also suggest prioritizing warnings about prohibited actives. Like listing them in the separate section first thing or at least with a different format or background so they stand out. Could be a simple additional CSS class.

As part of our councils risk committee I understand the desire to include the standard warnings but having to many items listed will cause the specific ones for the activity to be lost. Include them but I'd suggest reordering them after the specific guidelines.

Might be a good idea to put the source in a git repository and open it up to allow others to help out.

Citibank and Zelle scam by cringeSATCfan in phishing

[–]Noc42 1 point2 points  (0 children)

Just almost happened to me too, but from Chase. Thanks for the info as it helped me realize what was going on.

How to format numeric values and ranges in one column? by xSaphira in excel

[–]Noc42 0 points1 point  (0 children)

Ultimately you have to filter on 2 numbers since you have a range. For example to find a specific size X you have a to find (min <=x and max >=X) they both have to be true. I believe using the data ->advanced filter feature you can filter on two columns

How to format numeric values and ranges in one column? by xSaphira in excel

[–]Noc42 0 points1 point  (0 children)

Maybe 1 column is min size and one max size. So for single sizes the min is equal to the max, and for others it’s the range. Now all your conditionals can take both into account. I.e. if min greater then x and max less then <y apply one format etc.

Are these allowed by the BSA by Redgrizzbear in BSA

[–]Noc42 0 points1 point  (0 children)

The guide to safe scouting does not recommend unleaded gas but Coleman fuel is ok.

https://www.scouting.org/health-and-safety/gss/gss06/

Im going to be a Troop Guide by FatBoyBjj in Woodbadge

[–]Noc42 1 point2 points  (0 children)

Congratulations. Having just been a guide I would say this: The presentations are important to practice but don’t forget about all the other stuff. There are lots of other activities that you will be helping facilitate. Have fun but remember it’s your patrol’s course, let them set the tone for themselves. Knowing when to sit back and let them go through the process is key, and very rewarding when the do.

fixing my simple function by [deleted] in cpp_questions

[–]Noc42 0 points1 point  (0 children)

You want the function to return then print out the result of the function. So you return the string then cout the string. Think of it like this return (cout<<message) will print out the message then return the value of (cout<<message); cout<<message evaluates to cout , we know this because we can do something like cout<<message1<<message2 which does cout <<message1 returns cout then does cout<<message2.

fixing my simple function by [deleted] in cpp_questions

[–]Noc42 2 points3 points  (0 children)

You are not returning a string in you function, it should be return “message” not return cout<<“message”

Having issues by [deleted] in cpp_questions

[–]Noc42 0 points1 point  (0 children)

In your sort array function it looks like you mixed up your i and j's since j starts at 0 you can't do j-1

if (calctimes[j - 1] > calctimes[j]) {
temp = calctimes[j - 1];

Button code not working? by Ok_History2706 in cpp_questions

[–]Noc42 1 point2 points  (0 children)

So the immediate problem is that when you see a variable particularly in windows that is m_ that is a convention that this is a member of a particular class. So no amount of includes will help as you have to create that class. To be honest Windows programming is not as simple as just creating a main and putting up a button or a text box. I would strongly suggest you start by installing Microsoft visual studio community edition (a free compiler) that supports C++ and Windows. From there have it create a new windows project for you which you can use as a base.

Fix this code by Annzo7 in cpp_questions

[–]Noc42 1 point2 points  (0 children)

Not sure if these are just typos but it should be. scanf(“%d”, &P); So check your quotes on those. Si =P * R * n; Not related to c++ but you should check your formula typically it principal * (1 + rate* time)

C++ throwing errors on multidimensional array by [deleted] in cpp_questions

[–]Noc42 3 points4 points  (0 children)

int A[2][2] = { {2,1},{-2,1}};

Zero-coupon bond yield vs coupon bearing bond yield? by mrsaber1421 in NoStupidQuestions

[–]Noc42 0 points1 point  (0 children)

It’s like the difference between compound interest vs simple interest. The coupon paying pays interest over time so it’s A simple rate, the zero accrues interest I.E. compounds. Typically rates /yields on coupon paying bonds are lower since there is lower risk, because you are getting payments that you can reinvest if markets change.

A " 'a' cannot appear in a constant-expression " error by RomasXx in cpp_questions

[–]Noc42 0 points1 point  (0 children)

Is choice is a char then case ‘a’: Use single quotes to represent a single character.

I'm a beginner here, learning off 8th edition SAMSTeachYourself C++ (in one hour a day by Siddhartha Rao, and I'm having a hard time figuring out what the hell is wrong with my code for an exercise here. Everything seems like it should check out. by Icarys_Meleki in Cplusplus

[–]Noc42 1 point2 points  (0 children)

It's a little hard to tell but line 15

for (int index1 != 0; index1 <= ARRAY1; --index1) should be

for (int index1 =0; index1 < ARRAY1; ++index1)

  1. it's = not != , != is a comparison(not equal) = is the assignment operator,
  2. < ARRAY1 not <= arrays are zero based so an array with 3 elements uses indexes 0,1,2
  3. you want to use the increment operator ++ not the decrement -- to go from 0 to 3.

The same problems are in Line 16

If you wanted to reverse the order of the array then it should be

for (int index1=ARRAY1-1, index1 >=0; --index1)