Moozonian
Web Images Developer News Books Maps Shopping Moo-AI Generate Art
Showing results for 299-7=
GitHub Repo https://github.com/dflealc/TMshutdowns

dflealc/TMshutdowns

The code to replicate the analysis of my paper Leal, Diego F. 2020. “Mass Transit Shutdowns as a Tactical Innovation in Bogotá, Colombia,” Social Currents 7(4): 299-309 can be found here: https://www.dropbox.com/s/3l3xorqvlvnbsrf/logfile.pdf?dl=0
GitHub Repo https://github.com/brunomatt/ProjectEulerNum67

brunomatt/ProjectEulerNum67

From projecteuler.net problem 67: "By starting at the top of the triangle below and moving to adjacent numbers on the row below, the maximum total from top to bottom is 23. 3 7 4 2 4 6 8 5 9 3 That is, 3 + 7 + 4 + 9 = 23. Find the maximum total from top to bottom in triangle.txt (right click and 'Save Link/Target As...'), a 15K text file containing a triangle with one-hundred rows. NOTE: This is a much more difficult version of Problem 18. It is not possible to try every route to solve this problem, as there are 299 altogether! If you could check one trillion (1012) routes every second it would take over twenty billion years to check them all. There is an efficient algorithm to solve it. ;o)"
GitHub Repo https://github.com/muthhus/multi_table_prime_numbers

muthhus/multi_table_prime_numbers

Write a program that prints a multiplication table of primes numbers. The program should take an argument from the command line that specifies the amount of prime numbers to generate and print out a multiplication table for these prime numbers. An example of the way the application may run: <executable_script_name> ­­count 10 An example of the output: | 2 3 5 7 11 13 17 19 23 29 ­­­+­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­ 2 | 4 6 10 14 22 26 34 38 46 58 3 | 6 9 15 21 33 39 51 57 69 87 5 | 10 15 25 35 55 65 85 95 115 145 7 | 14 21 35 49 77 91 119 133 161 203 11 | 22 33 55 77 121 143 187 209 253 319 13 | 26 39 65 91 143 169 221 247 299 377 17 | 34 51 85 119 187 221 289 323 391 493 19 | 38 57 95 133 209 247 323 361 437 551 23 | 46 69 115 161 253 299 391 437 529 667 29 | 58 87 145 203 319 377 493 551 667 841
GitHub Repo https://github.com/beattiecolin/temp

beattiecolin/temp

DAC 299 (10/7)
GitHub Repo https://github.com/diegoFLeal/TMShutdowns

diegoFLeal/TMShutdowns

Replication materials for my paper: Leal, Diego F. 2020. “Mass Transit Shutdowns as a Tactical Innovation in Bogotá, Colombia,” Social Currents 7(4): 299-309.
GitHub Repo https://github.com/cs299-wayfinders/cs299-wayfinders.github.io

cs299-wayfinders/cs299-wayfinders.github.io

CS-299 Fall 2023 Project - Group 7
GitHub Repo https://github.com/Vishalport/Student-Grades-System

Vishalport/Student-Grades-System

Algorithm… Step 1. start Step 2. read marks or Percentage Step 3. if marks between 450 -500 then grade =A Step 4. if marks between 400 -449 then grade= B Step 5. if marks between 350 -399 then grade= C Step 6. if marks between 300 -349 then grade = D Step 7. if marks between 200 -299 then grade = E Step 8. if marks below 200 greater then equal then 0 then grade =F Step 9. if display grade. Step 10. stop
GitHub Repo https://github.com/SABERiyan/Barrons333.github.io

SABERiyan/Barrons333.github.io

**Barron's SAT Vocab eBook** — 299 power words with English & বাংলা meanings, example sentences, 7 themes, A–Z filter, instant search, flashcards with shuffle, starred bookmarks, and a 20-question adaptive quiz. Study smarter. No login required.
GitHub Repo https://github.com/buschmais/testbeans

buschmais/testbeans

TestBeans aims to integrate JUnit 4.7 and later with Contexts and Dependency Injection (JSR-299) using the reference implementation Weld. Refer to the wiki for more details.
GitHub Repo https://github.com/Ririefikroiani/BrightnessDifference

Ririefikroiani/BrightnessDifference

ConsoleWrite('Brightness difference: ' & _Color_BrightnessDifference(0xFF000000, 0xFFFFFFFF) & @CRLF) ; Black and white: 255 or maximum contrast. ConsoleWrite('Brightness difference: ' & _Color_BrightnessDifference(0xFF54123D, 0xFF134253) & @CRLF) ; 11.249, not so good. ; #FUNCTION# =================================================================== ; Name ..........: _Color_BrightnessDifference ; Description ...: Calculate brightness difference between two colors. ; Syntax ........: _Color_BrightnessDifference($vARGB1, $vARGB2) ; Parameters ....: $vARGB1 - Variant: A Hex, Integer or Binary color value. ; $vARGB2 - Variant: A Hex, Integer or Binary color value. ; Return values .: Success - Float: Brightness difference. ; Failure - Int: Returns 0 and sets @error: ; |1 First parameter isn't a Hex string. ; |2 Second parameter isn't a Hex string. ; Author ........: dany ; Modified ......: ; Remarks .......: A value of 125 or higher is recommended for good contrast. ; Link ..........: http://www.w3.org/TR/2000/WD-AERT-20000426#color-contrast ; ============================================================================== Func _Color_BrightnessDifference($vARGB1, $vARGB2) If IsInt($vARGB1) Or IsBinary($vARGB1) Then $vARGB1 = Hex($vARGB1) If IsInt($vARGB2) Or IsBinary($vARGB1) Then $vARGB2 = Hex($vARGB2) If Not StringIsXDigit($vARGB1) Then Return SetError(1, 0, 0) If Not StringIsXDigit($vARGB2) Then Return SetError(2, 0, 0) If 7 > StringLen($vARGB1) Then $vARGB1 = 'FF' & $vARGB1 If 7 > StringLen($vARGB2) Then $vARGB1 = 'FF' & $vARGB2 Local $iRed, $iGreen, $iBlue, $iBrightness1, $iBrightness2 $iRed = Dec(StringMid($vARGB1, 3, 2)) $iGreen = Dec(StringMid($vARGB1, 5, 2)) $iBlue = Dec(StringMid($vARGB1, 7, 2)) $iBrightness1 = ((299 * $iRed) + (587 * $iGreen) + (114 * $iBlue)) / 1000; $iRed = Dec(StringMid($vARGB2, 3, 2)) $iGreen = Dec(StringMid($vARGB2, 5, 2)) $iBlue = Dec(StringMid($vARGB2, 7, 2)) $iBrightness2 = ((299 * $iRed) + (587 * $iGreen) + (114 * $iBlue)) / 1000; Return Abs($iBrightness1 - $iBrightness2) EndFunc ;==>_Color_BrightnessDifference